Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp107 uint8_t primary_opcode; member
126 uint8_t opcode = opcode_and_modrm.primary_opcode; in MapOpcodeIntoControlFlowKind()
272 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
273 switch (ret.primary_opcode) { in InstructionLengthDecode()
322 ret.primary_opcode = inst_bytes[op_idx + 2]; in InstructionLengthDecode()
332 ret.primary_opcode = inst_bytes[op_idx + 3]; in InstructionLengthDecode()
343 ret.primary_opcode = inst_bytes[op_idx + 4]; in InstructionLengthDecode()
353 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
358 if (ret.primary_opcode == 0x0F) { in InstructionLengthDecode()
359 ret.primary_opcode = inst_bytes[++op_idx]; // get the next byte in InstructionLengthDecode()
[all …]
/openbsd-src/gnu/llvm/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()
816 bool DWARFCallFrameInfo::HandleCommonDwarfOpcode(uint8_t primary_opcode, in HandleCommonDwarfOpcode() argument
823 if (primary_opcode) { in HandleCommonDwarfOpcode()
824 switch (primary_opcode) { in HandleCommonDwarfOpcode()
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h143 bool HandleCommonDwarfOpcode(uint8_t primary_opcode, uint8_t extended_opcode,