Searched refs:tmp_cpsr (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM/ |
| H A D | EmulateInstructionARM.cpp | 14027 uint32_t tmp_cpsr = Bits32(m_opcode_cpsr, 23, 20) << 20; in CPSRWriteByInstr() local 14030 tmp_cpsr = tmp_cpsr | (Bits32(value, 31, 27) << 27); in CPSRWriteByInstr() 14032 tmp_cpsr = tmp_cpsr | (Bits32(value, 26, 24) << 24); in CPSRWriteByInstr() 14036 tmp_cpsr = tmp_cpsr | (Bits32(value, 19, 16) << 16); in CPSRWriteByInstr() 14041 tmp_cpsr = tmp_cpsr | (Bits32(value, 15, 10) << 10); in CPSRWriteByInstr() 14042 tmp_cpsr = tmp_cpsr | (Bit32(value, 9) << 9); in CPSRWriteByInstr() 14044 tmp_cpsr = tmp_cpsr | (Bit32(value, 8) << 8); in CPSRWriteByInstr() 14049 tmp_cpsr = tmp_cpsr | (Bits32(value, 7, 6) << 6); in CPSRWriteByInstr() 14051 tmp_cpsr = tmp_cpsr | (Bit32(value, 5) << 5); in CPSRWriteByInstr() 14053 tmp_cpsr = tmp_cpsr | Bits32(value, 4, 0); in CPSRWriteByInstr() [all …]
|