in the arch/alpha directory we should use arch/alpha, not

targetarch.

arch/alpha/alpha_memory.cc:
arch/alpha/arguments.cc:
arch/alpha/arguments.hh:
arch/alpha/faults.cc:
arch/alpha/isa_traits.hh:
arch/alpha/osfpal.cc:
arch/alpha/vtophys.cc:
arch/alpha/vtophys.hh:
    in the arch/alpha directory we should use arch/alpha, not
    targetarch.  sort includes while we're here.

--HG--
extra : convert_revision : 99a71540e2997173db5c1072cef910a26acc75b2
This commit is contained in:
Nathan Binkert 2004-10-23 00:39:15 -04:00
parent f834289a51
commit 3ab83348d2
8 changed files with 16 additions and 17 deletions

View file

@ -30,13 +30,13 @@
#include <string>
#include <vector>
#include "arch/alpha/alpha_memory.hh"
#include "arch/alpha/ev5.hh"
#include "base/inifile.hh"
#include "base/str.hh"
#include "base/trace.hh"
#include "cpu/exec_context.hh"
#include "sim/builder.hh"
#include "targetarch/alpha_memory.hh"
#include "targetarch/ev5.hh"
using namespace std;

View file

@ -26,10 +26,10 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "arch/alpha/arguments.hh"
#include "arch/alpha/vtophys.hh"
#include "cpu/exec_context.hh"
#include "mem/functional_mem/physical_memory.hh"
#include "targetarch/arguments.hh"
#include "targetarch/vtophys.hh"
AlphaArguments::Data::~Data()
{

View file

@ -31,9 +31,9 @@
#include <assert.h>
#include "arch/alpha/vtophys.hh"
#include "base/refcnt.hh"
#include "sim/host.hh"
#include "targetarch/vtophys.hh"
class ExecContext;

View file

@ -26,7 +26,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "targetarch/faults.hh"
#include "arch/alpha/faults.hh"
namespace {
const char *

View file

@ -29,9 +29,9 @@
#ifndef __ISA_TRAITS_HH__
#define __ISA_TRAITS_HH__
#include "sim/host.hh"
#include "targetarch/faults.hh"
#include "arch/alpha/faults.hh"
#include "base/misc.hh"
#include "sim/host.hh"
class FastCPU;
class FullCPU;
@ -125,7 +125,7 @@ class AlphaISA
typedef uint64_t InternalProcReg;
#include "targetarch/isa_fullsys_traits.hh"
#include "arch/alpha/isa_fullsys_traits.hh"
#else
enum {
@ -278,7 +278,7 @@ const int NumInterruptLevels = TheISA::NumInterruptLevels;
// more stuff that should be imported here, but I'm too tired to do it
// right now...
#include "targetarch/ev5.hh"
#include "arch/alpha/ev5.hh"
#endif
#endif // __ALPHA_ISA_H__

View file

@ -26,7 +26,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "targetarch/osfpal.hh"
#include "arch/alpha/osfpal.hh"
namespace {
const char *strings[PAL::NumCodes] = {

View file

@ -28,12 +28,11 @@
#include <string>
#include "targetarch/pmap.h"
#include "arch/alpha/pmap.h"
#include "arch/alpha/vtophys.hh"
#include "base/trace.hh"
#include "cpu/exec_context.hh"
#include "mem/functional_mem/physical_memory.hh"
#include "base/trace.hh"
#include "targetarch/vtophys.hh"
using namespace std;

View file

@ -29,8 +29,8 @@
#ifndef __VTOPHYS_H__
#define __VTOPHYS_H__
#include "targetarch/isa_traits.hh"
#include "targetarch/pmap.h"
#include "arch/alpha/isa_traits.hh"
#include "arch/alpha/pmap.h"
inline bool entry_valid(uint64_t entry)
{ return (entry & ALPHA_PTE_VALID) != 0; }