isa_traits.hh (7651:84a44eb3ccb8) isa_traits.hh (7654:7447a92d1ad5)
1/*
2 * Copyright (c) 2010 ARM Limited
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

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

108 const int MachineBytes = 4;
109 const int WordBytes = 4;
110 const int HalfwordBytes = 2;
111 const int ByteBytes = 1;
112
113 const uint32_t HighVecs = 0xFFFF0000;
114
115 // Memory accesses cannot be unaligned
1/*
2 * Copyright (c) 2010 ARM Limited
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

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

108 const int MachineBytes = 4;
109 const int WordBytes = 4;
110 const int HalfwordBytes = 2;
111 const int ByteBytes = 1;
112
113 const uint32_t HighVecs = 0xFFFF0000;
114
115 // Memory accesses cannot be unaligned
116 const bool HasUnalignedMemAcc = false;
116 const bool HasUnalignedMemAcc = true;
117
118 enum InterruptTypes
119 {
120 INT_RST,
121 INT_ABT,
122 INT_IRQ,
123 INT_FIQ,
124 NumInterruptTypes

--- 13 unchanged lines hidden ---
117
118 enum InterruptTypes
119 {
120 INT_RST,
121 INT_ABT,
122 INT_IRQ,
123 INT_FIQ,
124 NumInterruptTypes

--- 13 unchanged lines hidden ---