isa.cc (7640:5286a8a469c5) isa.cc (7644:62873d5c2bfc)
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

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

134 (0 << 12) | // 13:12
135 (2 << 10) | // 11:10
136 (0 << 8) | // 9:8
137 (3 << 6) | // 7:6
138 (2 << 4) | // 5:4
139 (0 << 2) | // 3:2
140 0; // 1:0
141
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

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

134 (0 << 12) | // 13:12
135 (2 << 10) | // 11:10
136 (0 << 8) | // 9:8
137 (3 << 6) | // 7:6
138 (2 << 4) | // 5:4
139 (0 << 2) | // 3:2
140 0; // 1:0
141
142 miscRegs[MISCREG_CPACR] = 0;
143 miscRegs[MISCREG_FPSID] = 0x410430A0;
142 //XXX We need to initialize the rest of the state.
143}
144
145MiscReg
146ISA::readMiscRegNoEffect(int misc_reg)
147{
148 assert(misc_reg < NumMiscRegs);
149

--- 291 unchanged lines hidden ---
144 //XXX We need to initialize the rest of the state.
145}
146
147MiscReg
148ISA::readMiscRegNoEffect(int misc_reg)
149{
150 assert(misc_reg < NumMiscRegs);
151

--- 291 unchanged lines hidden ---