Searched refs:m_new_inst_cpsr (Results 1 - 2 of 2) sorted by relevance

/external/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h983 uint32_t m_new_inst_cpsr; // This can get updated by the opcode. member in class:lldb_private::EmulateInstructionARM
H A DEmulateInstructionARM.cpp1022 m_new_inst_cpsr = m_opcode_cpsr;
1023 SetBit32 (m_new_inst_cpsr, CPSR_N_POS, Bit32 (result, 31));
1024 SetBit32 (m_new_inst_cpsr, CPSR_Z_POS, result == 0 ? 1 : 0);
1025 if (m_new_inst_cpsr != m_opcode_cpsr)
1027 if (!WriteRegisterUnsigned (context, eRegisterKindGeneric, LLDB_REGNUM_GENERIC_FLAGS, m_new_inst_cpsr))
13186 if (!WriteRegisterUnsigned (context, eRegisterKindGeneric, LLDB_REGNUM_GENERIC_FLAGS, m_new_inst_cpsr))
13223 // the m_new_inst_cpsr member variable if necessary.
13227 m_new_inst_cpsr = m_opcode_cpsr;
13234 m_new_inst_cpsr &= ~MASK_CPSR_T;
13238 m_new_inst_cpsr |
[all...]

Completed in 542 milliseconds