registers.hh (12109:f29e9c5418aa) registers.hh (13338:c59f7e47e31d)
1/*
2 * Copyright (c) 2010-2011, 2014, 2016 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

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

114const int PCReg = INTREG_PC;
115
116const int ZeroReg = INTREG_ZERO;
117
118const int SyscallNumReg = ReturnValueReg;
119const int SyscallPseudoReturnReg = ReturnValueReg;
120const int SyscallSuccessReg = ReturnValueReg;
121
1/*
2 * Copyright (c) 2010-2011, 2014, 2016 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

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

114const int PCReg = INTREG_PC;
115
116const int ZeroReg = INTREG_ZERO;
117
118const int SyscallNumReg = ReturnValueReg;
119const int SyscallPseudoReturnReg = ReturnValueReg;
120const int SyscallSuccessReg = ReturnValueReg;
121
122typedef union {
123 IntReg intreg;
124 FloatReg fpreg;
125 CCReg ccreg;
126 MiscReg ctrlreg;
127} AnyReg;
128
129} // namespace ArmISA
130
131#endif
122} // namespace ArmISA
123
124#endif