Home
last modified time | relevance | path

Searched refs:Disassemble (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/commands/disassemble/basic/
H A DTestFrameDisassemble.py54 disassembly = frame.Disassemble()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_frame.py28 obj.Disassemble()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBFrame.i202 Disassemble () const;
355 …disassembly = property(Disassemble, None, doc='''A read only property that returns the disassembly…
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dllvm-objdump.rst30 Disassemble all executable sections found in the input files. On some
38 Disassemble all sections found in the input files.
42 Disassemble only the specified symbols. Takes demangled symbol names when
313 Disassemble just the specified symbol's instructions.
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBFrame.h130 const char *Disassemble() const;
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDisassembler.h435 static bool Disassemble(Debugger &debugger, const ArchSpec &arch,
442 static bool Disassemble(Debugger &debugger, const ArchSpec &arch,
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h36 extern bool Disassemble;
H A DObjdumpOpts.td43 HelpText<"Disassemble all executable sections found in the input files">;
47 HelpText<"Disassemble all sections found in the input files">;
H A Dllvm-objdump.cpp185 bool objdump::Disassemble; member in objdump
2596 if (Relocations && !Disassemble) in dumpObject()
2602 if (Disassemble) in dumpObject()
2779 Disassemble = InputArgs.hasArg(OBJDUMP_disassemble); in parseObjdumpOptions()
2957 Disassemble = true; in main()
2959 if (!ArchiveHeaders && !Disassemble && DwarfDumpType == DIDT_Null && in main()
H A DMachODump.cpp1917 if (Disassemble || Relocations || PrivateHeaders || ExportsTrie || Rebase || in ProcessMachO()
1945 if (Disassemble || IndirectSymbols || !FilterSections.empty() || UnwindInfo) in ProcessMachO()
1964 else if (Disassemble) { in ProcessMachO()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DStackFrame.h320 const char *Disassemble();
/llvm-project-15.0.7/lldb/source/Core/
H A DDisassembler.cpp168 bool Disassembler::Disassemble(Debugger &debugger, const ArchSpec &arch, in Disassemble() function in Disassembler
542 bool Disassembler::Disassemble(Debugger &debugger, const ArchSpec &arch, in Disassemble() function in Disassembler
564 return Disassemble(debugger, arch, nullptr, nullptr, frame, in Disassemble()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DMIMGInstructions.td965 bit Disassemble = enable_disasm;
1037 !if(!and(enableDisasm, addr.Disassemble), "AMDGPU", "")>;
1041 !if(!and(enableDisasm, addr.Disassemble), "GFX90A", "")>;
1044 !if(!and(enableDisasm, addr.Disassemble), "AMDGPU", "")>;
1049 !if(!and(enableDisasm, addr.Disassemble), "AMDGPU", "")>;
1059 !if(!and(enableDisasm, addr.Disassemble), "AMDGPU", "")>;
1064 !if(!and(enableDisasm, addr.Disassemble), "AMDGPU", "")>;
/llvm-project-15.0.7/lldb/docs/use/
H A Dmap.rst1489 … <td class="header" colspan="2">Disassemble the current function for the current frame.</td>
1503 <td class="header" colspan="2">Disassemble any functions named <b>main</b>.</td>
1517 <td class="header" colspan="2">Disassemble an address range.</td>
1532 <td class="header" colspan="2">Disassemble 20 instructions from a given address.</td>
1561 …<td class="header" colspan="2">Disassemble the current function for the current frame and show the…
1575 … <td class="header" colspan="2">Disassemble the current source line for the current frame.</td>
/llvm-project-15.0.7/lldb/source/Target/
H A DStackFrame.cpp260 const char *StackFrame::Disassemble() { in Disassemble() function in StackFrame
267 Disassembler::Disassemble(target->GetDebugger(), target->GetArchitecture(), in Disassemble()
1950 Disassembler::Disassemble( in GetStatus()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp524 if (Disassembler::Disassemble( in DoExecute()
H A DOptions.td331 Desc<"Disassemble entire contents of the given function name.">;
333 Desc<"Disassemble from the start of the current frame's function.">;
335 Desc<"Disassemble around the current pc.">;
337 Desc<"Disassemble the current frame's current source line instructions if "
341 Desc<"Disassemble function containing this address.">;
/llvm-project-15.0.7/lldb/source/API/
H A DSBFrame.cpp705 const char *SBFrame::Disassemble() const { in Disassemble() function in SBFrame
720 disassembly = frame->Disassemble(); in Disassemble()