Searched refs:tmp_cpsr (Results 1 – 1 of 1) sorted by relevance
/external/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
D | EmulateInstructionARM.cpp | 14034 uint32_t tmp_cpsr = Bits32(m_opcode_cpsr, 23, 20) << 20; in CPSRWriteByInstr() local 14037 tmp_cpsr = tmp_cpsr | (Bits32(value, 31, 27) << 27); in CPSRWriteByInstr() 14039 tmp_cpsr = tmp_cpsr | (Bits32(value, 26, 24) << 24); in CPSRWriteByInstr() 14043 tmp_cpsr = tmp_cpsr | (Bits32(value, 19, 16) << 16); in CPSRWriteByInstr() 14048 tmp_cpsr = tmp_cpsr | (Bits32(value, 15, 10) << 10); in CPSRWriteByInstr() 14049 tmp_cpsr = tmp_cpsr | (Bit32(value, 9) << 9); in CPSRWriteByInstr() 14051 tmp_cpsr = tmp_cpsr | (Bit32(value, 8) << 8); in CPSRWriteByInstr() 14056 tmp_cpsr = tmp_cpsr | (Bits32(value, 7, 6) << 6); in CPSRWriteByInstr() 14058 tmp_cpsr = tmp_cpsr | (Bit32(value, 5) << 5); in CPSRWriteByInstr() 14060 tmp_cpsr = tmp_cpsr | Bits32(value, 4, 0); in CPSRWriteByInstr() [all …]
|