Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
HDRecord.cpp1374 IsAOpInit *IsAOpInit::get(RecTy *CheckType, Init *Expr) { in get()
1375 static FoldingSet<IsAOpInit> ThePool; in get()
1381 if (IsAOpInit *I = ThePool.FindNodeOrInsertPos(ID, IP)) in get()
1384 IsAOpInit *I = new (Allocator) IsAOpInit(CheckType, Expr); in get()
1389 void IsAOpInit::Profile(FoldingSetNodeID &ID) const { in Profile()
1393 Init *IsAOpInit::Fold() const { in Fold()
1410 return const_cast<IsAOpInit *>(this); in Fold()
1413 Init *IsAOpInit::resolveReferences(Resolver &R) const { in resolveReferences()
1417 return const_cast<IsAOpInit *>(this); in resolveReferences()
1420 Init *IsAOpInit::getBit(unsigned Bit) const { in getBit()
[all …]
HDTGParser.cpp1070 return (IsAOpInit::get(Type, LHS))->Fold(); in ParseOperation()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
HDRecord.h1035 class IsAOpInit : public TypedInit, public FoldingSetNode {
1040 IsAOpInit(RecTy *CheckType, Init *Expr) in IsAOpInit() function
1045 IsAOpInit(const IsAOpInit &) = delete;
1046 IsAOpInit &operator=(const IsAOpInit &) = delete;
1050 static IsAOpInit *get(RecTy *CheckType, Init *Expr);