Home
last modified time | relevance | path

Searched refs:tmp_cpsr (Results 1 – 1 of 1) sorted by relevance

/external/lldb/source/Plugins/Instruction/ARM/
DEmulateInstructionARM.cpp13097 uint32_t tmp_cpsr = Bits32 (m_opcode_cpsr, 23, 20) << 20; in CPSRWriteByInstr() local
13101 tmp_cpsr = tmp_cpsr | (Bits32 (value, 31, 27) << 27); in CPSRWriteByInstr()
13103 tmp_cpsr = tmp_cpsr | (Bits32 (value, 26, 24) << 24); in CPSRWriteByInstr()
13108 tmp_cpsr = tmp_cpsr | (Bits32 (value, 19, 16) << 16); in CPSRWriteByInstr()
13114 tmp_cpsr = tmp_cpsr | (Bits32 (value, 15, 10) << 10); in CPSRWriteByInstr()
13115 tmp_cpsr = tmp_cpsr | (Bit32 (value, 9) << 9); in CPSRWriteByInstr()
13117 tmp_cpsr = tmp_cpsr | (Bit32 (value, 8) << 8); in CPSRWriteByInstr()
13123 tmp_cpsr = tmp_cpsr | (Bits32 (value, 7, 6) << 6); in CPSRWriteByInstr()
13125 tmp_cpsr = tmp_cpsr | (Bit32 (value, 5) << 5); in CPSRWriteByInstr()
13127 tmp_cpsr = tmp_cpsr | Bits32 (value, 4, 0); in CPSRWriteByInstr()
[all …]