isa_traits.hh (7087:fb8d5786ff30) isa_traits.hh (7580:6f77f379a594)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

67
68 const int PageShift = 12;
69 const int PageBytes = 1ULL << PageShift;
70
71 const int BranchPredAddrShiftAmt = 0;
72
73 StaticInstPtr decodeInst(ExtMachInst);
74
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

67
68 const int PageShift = 12;
69 const int PageBytes = 1ULL << PageShift;
70
71 const int BranchPredAddrShiftAmt = 0;
72
73 StaticInstPtr decodeInst(ExtMachInst);
74
75 const Addr LoadAddrMask = ULL(-1);
76
77 // Memory accesses can be unaligned
78 const bool HasUnalignedMemAcc = true;
79};
80
81#endif // __ARCH_X86_ISATRAITS_HH__
75 // Memory accesses can be unaligned
76 const bool HasUnalignedMemAcc = true;
77};
78
79#endif // __ARCH_X86_ISATRAITS_HH__