Searched refs:FoldOpInit (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/ |
D | Record.cpp | 1222 FoldOpInit *FoldOpInit::get(Init *Start, Init *List, Init *A, Init *B, in get() 1224 static FoldingSet<FoldOpInit> ThePool; in get() 1230 if (FoldOpInit *I = ThePool.FindNodeOrInsertPos(ID, IP)) in get() 1233 FoldOpInit *I = new (Allocator) FoldOpInit(Start, List, A, B, Expr, Type); in get() 1238 void FoldOpInit::Profile(FoldingSetNodeID &ID) const { in Profile() 1242 Init *FoldOpInit::Fold(Record *CurRec) const { in Fold() 1253 return const_cast<FoldOpInit *>(this); in Fold() 1256 Init *FoldOpInit::resolveReferences(Resolver &R) const { in resolveReferences() 1265 return const_cast<FoldOpInit *>(this); in resolveReferences() 1271 Init *FoldOpInit::getBit(unsigned Bit) const { in getBit() [all …]
|
D | TGParser.cpp | 1570 return FoldOpInit::get(Start, List, A, B, Expr, Start->getType()) in ParseOperation()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/ |
D | Record.h | 916 class FoldOpInit : public TypedInit, public FoldingSetNode { 924 FoldOpInit(Init *Start, Init *List, Init *A, Init *B, Init *Expr, RecTy *Type) in FoldOpInit() function 929 FoldOpInit(const FoldOpInit &) = delete; 930 FoldOpInit &operator=(const FoldOpInit &) = delete; 934 static FoldOpInit *get(Init *Start, Init *List, Init *A, Init *B, Init *Expr,
|