Home
last modified time | relevance | path

Searched refs:primary_opcode (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp112 uint8_t primary_opcode; member
131 uint8_t opcode = opcode_and_modrm.primary_opcode; in MapOpcodeIntoControlFlowKind()
277 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
278 switch (ret.primary_opcode) { in InstructionLengthDecode()
358 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
363 if (ret.primary_opcode == 0x0F) { in InstructionLengthDecode()
366 if (ret.primary_opcode == 0x38) { in InstructionLengthDecode()
370 } else if (ret.primary_opcode == 0x3A) { in InstructionLengthDecode()
372 ret.primary_opcode = inst_bytes[++op_idx]; in InstructionLengthDecode()
376 ret.primary_opcode = inst_bytes[++op_idx]; in InstructionLengthDecode()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp388 uint8_t primary_opcode = inst & 0xC0; in ParseCIE() local
391 if (!HandleCommonDwarfOpcode(primary_opcode, extended_opcode, in ParseCIE()
640 uint8_t primary_opcode = inst & 0xC0; in FDEToUnwindPlan() local
643 if (!HandleCommonDwarfOpcode(primary_opcode, extended_opcode, data_align, in FDEToUnwindPlan()
645 if (primary_opcode) { in FDEToUnwindPlan()
646 switch (primary_opcode) { in FDEToUnwindPlan()
821 bool DWARFCallFrameInfo::HandleCommonDwarfOpcode(uint8_t primary_opcode, in HandleCommonDwarfOpcode() argument
828 if (primary_opcode) { in HandleCommonDwarfOpcode()
829 switch (primary_opcode) { in HandleCommonDwarfOpcode()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h143 bool HandleCommonDwarfOpcode(uint8_t primary_opcode, uint8_t extended_opcode,