Searched refs:_regname (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/target/arm/ |
H A D | cpu.h | 2654 #define A32_BANKED_REG_GET(_env, _regname, _secure) \ 2655 ((_secure) ? (_env)->cp15._regname##_s : (_env)->cp15._regname##_ns) 2657 #define A32_BANKED_REG_SET(_env, _regname, _secure, _val) \ 2660 (_env)->cp15._regname##_s = (_val); \ 2662 (_env)->cp15._regname##_ns = (_val); \ 2671 #define A32_BANKED_CURRENT_REG_GET(_env, _regname) \ 2672 A32_BANKED_REG_GET((_env), _regname, \ 2675 #define A32_BANKED_CURRENT_REG_SET(_env, _regname, _val) \ 2676 A32_BANKED_REG_SET((_env), _regname, \ in arm_highest_el() 2646 A32_BANKED_REG_GET(_env,_regname,_secure) global() argument 2649 A32_BANKED_REG_SET(_env,_regname,_secure,_val) global() argument 2663 A32_BANKED_CURRENT_REG_GET(_env,_regname) global() argument 2667 A32_BANKED_CURRENT_REG_SET(_env,_regname,_val) global() argument [all...] |