Searched refs:TypeObjects (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
H A D | GlobalISelMatchTableExecutorEmitter.cpp | 144 raw_ostream &OS, ArrayRef<LLTCodeGen> TypeObjects) { in emitTypeObjects() argument 147 for (const auto &TypeObject : TypeObjects) { in emitTypeObjects() 153 << "const static size_t NumTypeObjects = " << TypeObjects.size() << ";\n" in emitTypeObjects() 155 for (const auto &TypeObject : TypeObjects) { in emitTypeObjects() 176 raw_ostream &OS, const MatchTable &Table, ArrayRef<LLTCodeGen> TypeObjects, in emitExecutorImpl() argument 180 emitTypeObjects(OS, TypeObjects); in emitExecutorImpl()
|
H A D | GlobalISelMatchTableExecutorEmitter.h | 54 void emitTypeObjects(raw_ostream &OS, ArrayRef<gi::LLTCodeGen> TypeObjects); 207 ArrayRef<gi::LLTCodeGen> TypeObjects,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | GIMatchTableExecutor.h | 628 ExecInfoTy(const LLT *TypeObjects, size_t NumTypeObjects, in ExecInfoTy() 632 : TypeObjects(TypeObjects), FeatureBitsets(FeatureBitsets), in ExecInfoTy() 637 TypeIDMap[TypeObjects[I]] = I; in ExecInfoTy() 639 const LLT *TypeObjects; member
|
H A D | GIMatchTableExecutorImpl.h | 98 return ExecInfo.TypeObjects[Idx]; in executeMatchTable() 1251 unsigned Width = ExecInfo.TypeObjects[TypeID].getScalarSizeInBits(); in executeMatchTable()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | GlobalISelCombinerEmitter.cpp | 2659 SmallVector<LLTCodeGen, 16> TypeObjects; in run() local 2660 append_range(TypeObjects, KnownTypes); in run() 2661 llvm::sort(TypeObjects); in run() 2664 if (TypeObjects.empty()) in run() 2665 TypeObjects.push_back(LLT::scalar(1)); in run() 2687 emitExecutorImpl(OS, Table, TypeObjects, Rules, ComplexPredicates, in run()
|
H A D | GlobalISelEmitter.cpp | 2477 std::vector<LLTCodeGen> TypeObjects; in run() local 2478 append_range(TypeObjects, KnownTypes); in run() 2479 llvm::sort(TypeObjects); in run() 2509 emitExecutorImpl(OS, Table, TypeObjects, Rules, ComplexPredicates, in run()
|
H A D | GlobalISelCombinerMatchTableEmitter.cpp |
|