mem.cc (7429:af0e80844b14) mem.cc (10037:5cac77888310)
1/*
1/*
2 * Copyright (c) 2010 ARM Limited
2 * Copyright (c) 2010, 2012 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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

152 ss << "supervisor";
153 break;
154 case MODE_MON:
155 ss << "monitor";
156 break;
157 case MODE_ABORT:
158 ss << "abort";
159 break;
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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

152 ss << "supervisor";
153 break;
154 case MODE_MON:
155 ss << "monitor";
156 break;
157 case MODE_ABORT:
158 ss << "abort";
159 break;
160 case MODE_HYP:
161 ss << "hyp";
162 break;
160 case MODE_UNDEFINED:
161 ss << "undefined";
162 break;
163 case MODE_SYSTEM:
164 ss << "system";
165 break;
166 default:
167 ss << "unrecognized";

--- 27 unchanged lines hidden ---
163 case MODE_UNDEFINED:
164 ss << "undefined";
165 break;
166 case MODE_SYSTEM:
167 ss << "system";
168 break;
169 default:
170 ss << "unrecognized";

--- 27 unchanged lines hidden ---