Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h1078 class FoldOpInit final : public TypedInit, public FoldingSetNode {
1082 FoldOpInit(const Init *Start, const Init *List, const Init *A, const Init *B, in FoldOpInit() function
1088 FoldOpInit(const FoldOpInit &) = delete;
1089 FoldOpInit &operator=(const FoldOpInit &) = delete;
1093 static const FoldOpInit *get(const Init *Start, const Init *List,
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp84 FoldingSet<FoldOpInit> TheFoldOpInitPool;
2011 const FoldOpInit *FoldOpInit::get(const Init *Start, const Init *List, in get()
2019 if (const FoldOpInit *I = RK.TheFoldOpInitPool.FindNodeOrInsertPos(ID, IP)) in get()
2022 FoldOpInit *I = new (RK.Allocator) FoldOpInit(Start, List, A, B, Expr, Type); in get()
2027 void FoldOpInit::Profile(FoldingSetNodeID &ID) const { in Profile()
2031 const Init *FoldOpInit::Fold(const Record *CurRec) const { in Fold()
2045 const Init *FoldOpInit::resolveReferences(Resolver &R) const { in resolveReferences()
2060 const Init *FoldOpInit::getBit(unsigned Bit) const { in getBit()
2064 std::string FoldOpInit::getAsString() const { in getAsString()
H A DTGParser.cpp2248 return FoldOpInit::get(Start, List, A, B, Expr, Start->getType()) in ParseOperation()