Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp106 uint8_t primary_opcode; member
125 uint8_t opcode = opcode_and_modrm.primary_opcode; in MapOpcodeIntoControlFlowKind()
271 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
272 switch (ret.primary_opcode) { in InstructionLengthDecode()
352 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
357 if (ret.primary_opcode == 0x0F) { in InstructionLengthDecode()
360 if (ret.primary_opcode == 0x38) { in InstructionLengthDecode()
364 } else if (ret.primary_opcode == 0x3A) { in InstructionLengthDecode()
366 ret.primary_opcode = inst_bytes[++op_idx]; in InstructionLengthDecode()
370 ret.primary_opcode = inst_bytes[++op_idx]; in InstructionLengthDecode()
[all …]
/llvm-project-15.0.7/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp387 uint8_t primary_opcode = inst & 0xC0; in ParseCIE() local
390 if (!HandleCommonDwarfOpcode(primary_opcode, extended_opcode, in ParseCIE()
639 uint8_t primary_opcode = inst & 0xC0; in FDEToUnwindPlan() local
642 if (!HandleCommonDwarfOpcode(primary_opcode, extended_opcode, data_align, in FDEToUnwindPlan()
644 if (primary_opcode) { in FDEToUnwindPlan()
645 switch (primary_opcode) { in FDEToUnwindPlan()
815 bool DWARFCallFrameInfo::HandleCommonDwarfOpcode(uint8_t primary_opcode, in HandleCommonDwarfOpcode() argument
822 if (primary_opcode) { in HandleCommonDwarfOpcode()
823 switch (primary_opcode) { in HandleCommonDwarfOpcode()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h142 bool HandleCommonDwarfOpcode(uint8_t primary_opcode, uint8_t extended_opcode,