Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/examples/python/
H A Dgdb_disassemble.py15 inst_addr = inst.addr.load_addr
16 inst_offset = inst_addr - start_addr
19 …print("<%s + %-4u> 0x%x %8s %s ; %s" % (name, inst_offset, inst_addr, inst.mnemonic, inst.operand…
21 … print("<%s + %-4u> 0x%x %8s %s" % (name, inst_offset, inst_addr, inst.mnemonic, inst.operands))
/llvm-project-15.0.7/lldb/source/Core/
H A DEmulateInstruction.cpp521 const Address &inst_addr, in SetInstruction() argument
525 if (inst_addr.IsValid()) { in SetInstruction()
527 m_addr = inst_addr.GetLoadAddress(target); in SetInstruction()
529 m_addr = inst_addr.GetFileAddress(); in SetInstruction()
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h74 const lldb_private::Address &inst_addr,
99 uint64_t inst_addr);
H A DEmulateInstructionMIPS.cpp966 uint64_t inst_addr) { in GetSizeOfInstruction() argument
974 mc_insn, next_inst_size, raw_insn, inst_addr, llvm::nulls()); in GetSizeOfInstruction()
977 inst_addr, llvm::nulls()); in GetSizeOfInstruction()
986 const Address &inst_addr, in SetInstruction() argument
990 if (EmulateInstruction::SetInstruction(insn_opcode, inst_addr, target)) { in SetInstruction()
991 if (inst_addr.GetAddressClass() == AddressClass::eCodeAlternateISA) { in SetInstruction()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp656 const auto inst_addr = inst.GetAddress().GetLoadAddress(g_vsc.target); in CreateSource() local
660 if (pc == inst_addr) in CreateSource()
662 const auto inst_offset = inst_addr - low_pc; in CreateSource()
672 line_strm << llvm::formatv("{0:X+}: <{1}> {2} {3,12} {4}", inst_addr, in CreateSource()
685 source.addr_to_line[inst_addr] = i + 1; in CreateSource()
/llvm-project-15.0.7/compiler-rt/lib/xray/
H A Dxray_hexagon.cpp83 : [ inst_addr ] "r"(Addr), [ new_inst ] "r"(NewInstruction) in WriteInstFlushCache()
/llvm-project-15.0.7/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1601 Address inst_addr(base_addr); in DecodeInstructions() local
1609 address_class = inst_addr.GetAddressClass(); in DecodeInstructions()
1612 new InstructionLLVMC(*this, inst_addr, address_class)); in DecodeInstructions()
1624 inst_addr.Slide(inst_size); in DecodeInstructions()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DEmulateInstruction.h378 const Address &inst_addr, Target *target);
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h128 bool SetInstruction(const Opcode &insn_opcode, const Address &inst_addr,
H A DEmulateInstructionARM.cpp13795 const Address &inst_addr, in SetInstruction() argument
13797 if (EmulateInstruction::SetInstruction(insn_opcode, inst_addr, target)) { in SetInstruction()
13802 AddressClass addr_class = inst_addr.GetAddressClass(); in SetInstruction()