| /llvm-project-15.0.7/lldb/test/API/commands/disassemble/basic/ |
| H A D | TestFrameDisassemble.py | 54 disassembly = frame.Disassemble()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_frame.py | 28 obj.Disassemble()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBFrame.i | 202 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 D | llvm-objdump.rst | 30 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 D | SBFrame.h | 130 const char *Disassemble() const;
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | Disassembler.h | 435 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 D | llvm-objdump.h | 36 extern bool Disassemble;
|
| H A D | ObjdumpOpts.td | 43 HelpText<"Disassemble all executable sections found in the input files">; 47 HelpText<"Disassemble all sections found in the input files">;
|
| H A D | llvm-objdump.cpp | 185 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 D | MachODump.cpp | 1917 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 D | StackFrame.h | 320 const char *Disassemble();
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | Disassembler.cpp | 168 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 D | MIMGInstructions.td | 965 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 D | map.rst | 1489 … <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 D | StackFrame.cpp | 260 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 D | CommandObjectDisassemble.cpp | 524 if (Disassembler::Disassemble( in DoExecute()
|
| H A D | Options.td | 331 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 D | SBFrame.cpp | 705 const char *SBFrame::Disassemble() const { in Disassemble() function in SBFrame 720 disassembly = frame->Disassemble(); in Disassemble()
|