Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Instruction/ARM64/
DEmulateInstructionARM64.cpp387 Context read_inst_context; in ReadInstruction() local
388 read_inst_context.type = eContextReadOpcode; in ReadInstruction()
389 read_inst_context.SetNoArgs(); in ReadInstruction()
391 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success), in ReadInstruction()
/external/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
DEmulateInstructionMIPS64.cpp947 Context read_inst_context; in ReadInstruction() local
948 read_inst_context.type = eContextReadOpcode; in ReadInstruction()
949 read_inst_context.SetNoArgs(); in ReadInstruction()
951 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success), in ReadInstruction()
/external/llvm-project/lldb/source/Plugins/Instruction/MIPS/
DEmulateInstructionMIPS.cpp1049 Context read_inst_context; in ReadInstruction() local
1050 read_inst_context.type = eContextReadOpcode; in ReadInstruction()
1051 read_inst_context.SetNoArgs(); in ReadInstruction()
1053 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success), in ReadInstruction()
/external/llvm-project/lldb/source/Plugins/Instruction/ARM/
DEmulateInstructionARM.cpp13837 Context read_inst_context; in ReadInstruction() local
13838 read_inst_context.type = eContextReadOpcode; in ReadInstruction()
13839 read_inst_context.SetNoArgs(); in ReadInstruction()
13843 uint32_t thumb_opcode = MemARead(read_inst_context, pc, 2, 0, &success); in ReadInstruction()
13852 MemARead(read_inst_context, pc + 2, 2, 0, &success), in ReadInstruction()
13858 m_opcode.SetOpcode32(MemARead(read_inst_context, pc, 4, 0, &success), in ReadInstruction()