reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/ArchSpec.h
  411   uint32_t GetMaximumOpcodeByteSize() const;

References

tools/lldb/source/API/SBTarget.cpp
 2038           target_sp->GetArchitecture().GetMaximumOpcodeByteSize() * count, 0);
tools/lldb/source/Commands/CommandObjectMemory.cpp
  139         byte_size_value = target->GetArchitecture().GetMaximumOpcodeByteSize();
tools/lldb/source/Core/Disassembler.cpp
 1228   const addr_t byte_size = num_instructions * m_arch.GetMaximumOpcodeByteSize();
tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  178       const uint32_t max_op_byte_size = arch.GetMaximumOpcodeByteSize();
tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
  892   uint32_t max_op_byte_size = std::min(buffer_remaining_bytes, m_arch.GetMaximumOpcodeByteSize());
tools/lldb/source/Target/StackFrame.cpp
 1323   pc_range.SetByteSize(target_arch.GetMaximumOpcodeByteSize());
 1951                                  target_arch.GetMaximumOpcodeByteSize());
tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
  103         ->GetArchitecture().GetMaximumOpcodeByteSize();