isa_traits.hh (6735:6437ad24a8a0) isa_traits.hh (6974:4d4903a3e7c5)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
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

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

101 const int BranchPredAddrShiftAmt = 2; // instructions are 4-byte aligned
102
103 const int MachineBytes = 4;
104 const int WordBytes = 4;
105 const int HalfwordBytes = 2;
106 const int ByteBytes = 1;
107
108 const uint32_t HighVecs = 0xFFFF0000;
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
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

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

101 const int BranchPredAddrShiftAmt = 2; // instructions are 4-byte aligned
102
103 const int MachineBytes = 4;
104 const int WordBytes = 4;
105 const int HalfwordBytes = 2;
106 const int ByteBytes = 1;
107
108 const uint32_t HighVecs = 0xFFFF0000;
109
110 // Memory accesses cannot be unaligned
111 const bool HasUnalignedMemAcc = false;
109};
110
111using namespace ArmISA;
112
113#endif // __ARCH_ARM_ISA_TRAITS_HH__
112};
113
114using namespace ArmISA;
115
116#endif // __ARCH_ARM_ISA_TRAITS_HH__