ARM: simplify CPSR handling
Stash a pointer to the CPSR in the "struct arm", to help get rid of the (common) references to its index in the register cache. This removes almost all references to CPSR offsets outside of the toplevel ARM code ... except a pair related to the current ARM11 "simulator" logic (which should be removable soonish). This is a net minor code shrink of a few hundred bytes of object code, and also makes the code more readable. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
@@ -821,7 +821,7 @@ static uint32_t armv4_5_get_cpsr(struct arm_sim_interface *sim, int pos, int bit
|
||||
{
|
||||
struct arm *armv4_5 = (struct arm *)sim->user_data;
|
||||
|
||||
return buf_get_u32(armv4_5->core_cache->reg_list[ARMV4_5_CPSR].value, pos, bits);
|
||||
return buf_get_u32(armv4_5->cpsr->value, pos, bits);
|
||||
}
|
||||
|
||||
static enum armv4_5_state armv4_5_get_state(struct arm_sim_interface *sim)
|
||||
|
||||
Reference in New Issue
Block a user