Deleted Added
sdiff udiff text old ( 7580:6f77f379a594 ) new ( 7811:a8fc35183c10 )
full compact
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 25 unchanged lines hidden (view full) ---

34#ifndef __ARCH_MIPS_ISA_TRAITS_HH__
35#define __ARCH_MIPS_ISA_TRAITS_HH__
36
37#include "arch/mips/types.hh"
38#include "arch/mips/mips_core_specific.hh"
39#include "base/types.hh"
40#include "config/full_system.hh"
41
42namespace LittleEndianGuest {};
43
44class StaticInstPtr;
45
46namespace MipsISA
47{
48
49using namespace LittleEndianGuest;
50

--- 108 unchanged lines hidden (view full) ---

159const int ByteBytes = 1;
160
161const int ANNOTE_NONE = 0;
162const uint32_t ITOUCH_ANNOTE = 0xffffffff;
163
164// Memory accesses cannot be unaligned
165const bool HasUnalignedMemAcc = false;
166
167};
168
169#endif // __ARCH_MIPS_ISA_TRAITS_HH__