Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DRecord.cpp1550 IsAOpInit *IsAOpInit::get(RecTy *CheckType, Init *Expr) { in get()
1551 static FoldingSet<IsAOpInit> ThePool; in get()
1557 if (IsAOpInit *I = ThePool.FindNodeOrInsertPos(ID, IP)) in get()
1560 IsAOpInit *I = new (Allocator) IsAOpInit(CheckType, Expr); in get()
1565 void IsAOpInit::Profile(FoldingSetNodeID &ID) const { in Profile()
1569 Init *IsAOpInit::Fold() const { in Fold()
1586 return const_cast<IsAOpInit *>(this); in Fold()
1589 Init *IsAOpInit::resolveReferences(Resolver &R) const { in resolveReferences()
1593 return const_cast<IsAOpInit *>(this); in resolveReferences()
1596 Init *IsAOpInit::getBit(unsigned Bit) const { in getBit()
[all …]
H A DTGParser.cpp1085 return (IsAOpInit::get(Type, LHS))->Fold(); in ParseOperation()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
H A DRecord.h1039 class IsAOpInit : public TypedInit, public FoldingSetNode {
1044 IsAOpInit(RecTy *CheckType, Init *Expr) in IsAOpInit() function
1049 IsAOpInit(const IsAOpInit &) = delete;
1050 IsAOpInit &operator=(const IsAOpInit &) = delete;
1054 static IsAOpInit *get(RecTy *CheckType, Init *Expr);