isa_traits.hh (5121:a5f3cfdc4ee5) isa_traits.hh (5127:478b14ffee54)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

124 //XXX These numbers are bogus
125 const int MaxInstSrcRegs = 10;
126 const int MaxInstDestRegs = 10;
127
128 //4k. This value is not constant on x86.
129 const int LogVMPageSize = 12;
130 const int VMPageSize = (1 << LogVMPageSize);
131
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

124 //XXX These numbers are bogus
125 const int MaxInstSrcRegs = 10;
126 const int MaxInstDestRegs = 10;
127
128 //4k. This value is not constant on x86.
129 const int LogVMPageSize = 12;
130 const int VMPageSize = (1 << LogVMPageSize);
131
132 const int PageShift = 13;
132 const int PageShift = 12;
133 const int PageBytes = 1ULL << PageShift;
134
135 const int BranchPredAddrShiftAmt = 0;
136
137 StaticInstPtr decodeInst(ExtMachInst);
138
139 const Addr LoadAddrMask = ULL(0xffffffffff);
140};
141
142#endif // __ARCH_X86_ISATRAITS_HH__
133 const int PageBytes = 1ULL << PageShift;
134
135 const int BranchPredAddrShiftAmt = 0;
136
137 StaticInstPtr decodeInst(ExtMachInst);
138
139 const Addr LoadAddrMask = ULL(0xffffffffff);
140};
141
142#endif // __ARCH_X86_ISATRAITS_HH__