Home
last modified time | relevance | path

Searched refs:OpcodeOffset (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp637 uint64_t OpcodeOffset) { in advanceAddrOpIndex() argument
650 LineTableOffset, OpcodeName.data(), OpcodeOffset)); in advanceAddrOpIndex()
664 LineTableOffset, OpcodeName.data(), OpcodeOffset, in advanceAddrOpIndex()
673 LineTableOffset, OpcodeName.data(), OpcodeOffset)); in advanceAddrOpIndex()
703 uint64_t OpcodeOffset) { in advanceForOpcode() argument
715 LineTableOffset, OpcodeName.data(), OpcodeOffset)); in advanceForOpcode()
728 advanceAddrOpIndex(OperationAdvance, Opcode, OpcodeOffset); in advanceForOpcode()
734 uint64_t OpcodeOffset) { in handleSpecialOpcode() argument
767 advanceForOpcode(Opcode, OpcodeOffset); in handleSpecialOpcode()
869 uint64_t OpcodeOffset = *OffsetPtr; in parse() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h388 uint8_t Opcode, uint64_t OpcodeOffset);
399 uint64_t OpcodeOffset);
410 uint64_t OpcodeOffset);
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h522 std::vector<unsigned> OpcodeOffset; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp3305 if (!OpcodeOffset.empty()) { in SelectCodeCommon()
3307 if (N.getOpcode() < OpcodeOffset.size()) in SelectCodeCommon()
3308 MatcherIndex = OpcodeOffset[N.getOpcode()]; in SelectCodeCommon()
3326 if (Opc >= OpcodeOffset.size()) in SelectCodeCommon()
3327 OpcodeOffset.resize((Opc+1)*2); in SelectCodeCommon()
3328 OpcodeOffset[Opc] = Idx; in SelectCodeCommon()
3333 if (N.getOpcode() < OpcodeOffset.size()) in SelectCodeCommon()
3334 MatcherIndex = OpcodeOffset[N.getOpcode()]; in SelectCodeCommon()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp1577 unsigned OpcodeOffset = 0; in encodeInstruction() local
1597 OpcodeOffset = MI.getOperand(NumOps - 1).getImm(); in encodeInstruction()
1598 assert(OpcodeOffset < 16 && "Unexpected opcode offset!"); in encodeInstruction()
1602 emitByte(BaseOpcode + OpcodeOffset, CB); in encodeInstruction()