Deleted Added
sdiff udiff text old ( 12495:9569e57f67f5 ) new ( 12496:e7bc841e521c )
full compact
1/*
2 * Copyright (c) 2010, 2012-2013, 2016-2018 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

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

152
153static inline ExceptionLevel
154currEL(ThreadContext *tc)
155{
156 CPSR cpsr = tc->readMiscReg(MISCREG_CPSR);
157 return (ExceptionLevel) (uint8_t) cpsr.el;
158}
159
160bool ELIs32(ThreadContext *tc, ExceptionLevel el);
161
162bool ELIs64(ThreadContext *tc, ExceptionLevel el);
163
164bool isBigEndian64(ThreadContext *tc);
165
166static inline uint8_t
167itState(CPSR psr)

--- 168 unchanged lines hidden ---