Home
last modified time | relevance | path

Searched refs:CondOpInit (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DRecord.cpp1986 void CondOpInit::Profile(FoldingSetNodeID &ID) const { in Profile()
1993 CondOpInit *
1994 CondOpInit::get(ArrayRef<Init *> CondRange, in get()
1999 static FoldingSet<CondOpInit> ThePool; in get()
2004 if (CondOpInit *I = ThePool.FindNodeOrInsertPos(ID, IP)) in get()
2009 CondOpInit *I = new(Mem) CondOpInit(CondRange.size(), Ty); in get()
2019 Init *CondOpInit::resolveReferences(Resolver &R) const { in resolveReferences()
2036 return (CondOpInit::get(NewConds, NewVals, in resolveReferences()
2039 return const_cast<CondOpInit *>(this); in resolveReferences()
2042 Init *CondOpInit::Fold(Record *CurRec) const { in Fold()
[all …]
H A DTGParser.cpp2055 return CondOpInit::get(Case, Val, Type)->Fold(CurRec); in ParseOperationCond()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
H A DRecord.h927 class CondOpInit final : public TypedInit, public FoldingSetNode,
928 public TrailingObjects<CondOpInit, Init *> {
932 CondOpInit(unsigned NC, RecTy *Type) in CondOpInit() function
941 CondOpInit(const CondOpInit &) = delete;
942 CondOpInit &operator=(const CondOpInit &) = delete;
948 static CondOpInit *get(ArrayRef<Init*> C, ArrayRef<Init*> V,