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 181 emitTypeObjects(OS, TypeObjects); in emitExecutorImpl()
|
| H A D | GlobalISelMatchTableExecutorEmitter.h | 54 void emitTypeObjects(raw_ostream &OS, ArrayRef<gi::LLTCodeGen> TypeObjects); 231 ArrayRef<gi::LLTCodeGen> TypeObjects,
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | GIMatchTableExecutor.h | 658 ExecInfoTy(const LLT *TypeObjects, size_t NumTypeObjects, in ExecInfoTy() 662 : TypeObjects(TypeObjects), FeatureBitsets(FeatureBitsets), in ExecInfoTy() 667 TypeIDMap[TypeObjects[I]] = I; in ExecInfoTy() 669 const LLT *TypeObjects; member
|
| H A D | GIMatchTableExecutorImpl.h | 98 return ExecInfo.TypeObjects[Idx]; in executeMatchTable() 1305 unsigned Width = ExecInfo.TypeObjects[TypeID].getScalarSizeInBits(); in executeMatchTable()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | GlobalISelCombinerEmitter.cpp | 2789 SmallVector<LLTCodeGen, 16> TypeObjects; in run() local 2790 append_range(TypeObjects, KnownTypes); in run() 2791 llvm::sort(TypeObjects); in run() 2794 if (TypeObjects.empty()) in run() 2795 TypeObjects.push_back(LLT::scalar(1)); in run() 2817 emitExecutorImpl(OS, Table, TypeObjects, Rules, {}, {}, in run()
|
| H A D | GlobalISelEmitter.cpp | 2492 std::vector<LLTCodeGen> TypeObjects; in run() local 2493 append_range(TypeObjects, KnownTypes); in run() 2494 llvm::sort(TypeObjects); in run() 2524 emitExecutorImpl(OS, Table, TypeObjects, Rules, ComplexPredicates, in run()
|
| H A D | GlobalISelCombinerMatchTableEmitter.cpp | |