Searched refs:OpcodeOffset (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h364 /// OpcodeOffset - This is a cache used to dispatch efficiently into isel
366 std::vector<unsigned> OpcodeOffset; member in class:llvm::SelectionDAGISel
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp1413 unsigned OpcodeOffset = 0; local
1429 OpcodeOffset = MI.getOperand(NumOps - 1).getImm();
1430 assert(OpcodeOffset < 16 && "Unexpected opcode offset!");
1434 emitByte(BaseOpcode + OpcodeOffset, CurByte, OS);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2862 // OpcodeOffset table.
2865 if (!OpcodeOffset.empty()) {
2866 // Already computed the OpcodeOffset table, just index into it.
2867 if (N.getOpcode() < OpcodeOffset.size())
2868 MatcherIndex = OpcodeOffset[N.getOpcode()];
2886 if (Opc >= OpcodeOffset.size())
2887 OpcodeOffset.resize((Opc+1)*2);
2888 OpcodeOffset[Opc] = Idx;
2893 if (N.getOpcode() < OpcodeOffset.size())
2894 MatcherIndex = OpcodeOffset[
[all...]

Completed in 68 milliseconds