Searched refs:tmp_cpsr (Results 1 – 1 of 1) sorted by relevance
| /trueos/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/ |
| HD | EmulateInstructionARM.cpp | 13125 uint32_t tmp_cpsr = Bits32 (m_opcode_cpsr, 23, 20) << 20; in CPSRWriteByInstr() local 13129 tmp_cpsr = tmp_cpsr | (Bits32 (value, 31, 27) << 27); in CPSRWriteByInstr() 13131 tmp_cpsr = tmp_cpsr | (Bits32 (value, 26, 24) << 24); in CPSRWriteByInstr() 13136 tmp_cpsr = tmp_cpsr | (Bits32 (value, 19, 16) << 16); in CPSRWriteByInstr() 13142 tmp_cpsr = tmp_cpsr | (Bits32 (value, 15, 10) << 10); in CPSRWriteByInstr() 13143 tmp_cpsr = tmp_cpsr | (Bit32 (value, 9) << 9); in CPSRWriteByInstr() 13145 tmp_cpsr = tmp_cpsr | (Bit32 (value, 8) << 8); in CPSRWriteByInstr() 13151 tmp_cpsr = tmp_cpsr | (Bits32 (value, 7, 6) << 6); in CPSRWriteByInstr() 13153 tmp_cpsr = tmp_cpsr | (Bit32 (value, 5) << 5); in CPSRWriteByInstr() 13155 tmp_cpsr = tmp_cpsr | Bits32 (value, 4, 0); in CPSRWriteByInstr() [all …]
|