Searched refs:CondOpInit (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/TableGen/ |
| H A D | Record.cpp | 90 FoldingSet<CondOpInit> TheCondOpInitPool; 2192 void CondOpInit::Profile(FoldingSetNodeID &ID) const { in Profile() 2198 CondOpInit *CondOpInit::get(ArrayRef<Init *> CondRange, in get() 2208 if (CondOpInit *I = RK.TheCondOpInitPool.FindNodeOrInsertPos(ID, IP)) in get() 2213 CondOpInit *I = new(Mem) CondOpInit(CondRange.size(), Ty); in get() 2223 Init *CondOpInit::resolveReferences(Resolver &R) const { in resolveReferences() 2240 return (CondOpInit::get(NewConds, NewVals, in resolveReferences() 2243 return const_cast<CondOpInit *>(this); in resolveReferences() 2246 Init *CondOpInit::Fold(Record *CurRec) const { in Fold() 2257 return const_cast<CondOpInit *>(this); in Fold() [all …]
|
| H A D | TGParser.cpp | 2150 return CondOpInit::get(Case, Val, Type)->Fold(CurRec); in ParseOperationCond()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 980 class CondOpInit final : public TypedInit, public FoldingSetNode, 981 public TrailingObjects<CondOpInit, Init *> { 985 CondOpInit(unsigned NC, RecTy *Type) in CondOpInit() function 994 CondOpInit(const CondOpInit &) = delete; 995 CondOpInit &operator=(const CondOpInit &) = delete; 1001 static CondOpInit *get(ArrayRef<Init*> C, ArrayRef<Init*> V,
|