Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp99 /// primary_opcode
112 uint8_t primary_opcode;
122 /// Contains primary_opcode byte, its length, and ModR/M byte.
131 uint8_t opcode = opcode_and_modrm.primary_opcode; in MapOpcodeIntoControlFlowKind()
259 /// primary_opcode, opcode_len and modrm byte. Refer to the struct definition in InstructionLengthDecode()
269 // In most cases, the primary_opcode is the first byte of the instruction in InstructionLengthDecode()
277 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
278 switch (ret.primary_opcode) { in InstructionLengthDecode()
327 ret.primary_opcode = inst_bytes[op_idx + 2]; in InstructionLengthDecode()
337 ret.primary_opcode in InstructionLengthDecode()
107 uint8_t primary_opcode; global() member
[all...]
/freebsd/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()
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()
820 bool DWARFCallFrameInfo::HandleCommonDwarfOpcode(uint8_t primary_opcode, in HandleCommonDwarfOpcode() argument
827 if (primary_opcode) { in HandleCommonDwarfOpcode()
828 switch (primary_opcode) { in HandleCommonDwarfOpcode()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h143 bool HandleCommonDwarfOpcode(uint8_t primary_opcode, uint8_t extended_opcode,