Home
last modified time | relevance | path

Searched refs:VarListElementInit (Results 1 – 2 of 2) sorted by relevance

/NextBSD/contrib/llvm/lib/TableGen/
HDRecord.cpp594 return VarListElementInit::get(Typed, Elt); in resolveListElementReference()
1191 return VarListElementInit::get(const_cast<TypedInit *>(this), Elements[0]); in convertInitListSlice()
1196 ListInits.push_back(VarListElementInit::get(const_cast<TypedInit *>(this), in convertInitListSlice()
1239 return VarListElementInit::get(cast<TypedInit>(RV->getValue()), Elt); in resolveListElementReference()
1317 VarListElementInit *VarListElementInit::get(TypedInit *T, in get()
1320 static DenseMap<Key, std::unique_ptr<VarListElementInit>> ThePool; in get()
1324 std::unique_ptr<VarListElementInit> &I = ThePool[TheKey]; in get()
1325 if (!I) I.reset(new VarListElementInit(T, E)); in get()
1329 std::string VarListElementInit::getAsString() const { in getAsString()
1334 VarListElementInit::resolveReferences(Record &R, const RecordVal *RV) const { in resolveReferences()
[all …]
/NextBSD/contrib/llvm/include/llvm/TableGen/
HDRecord.h918 class VarListElementInit : public TypedInit {
922 VarListElementInit(TypedInit *T, unsigned E) in VarListElementInit() function
930 VarListElementInit(const VarListElementInit &Other) = delete;
931 void operator=(const VarListElementInit &Other) = delete;
937 static VarListElementInit *get(TypedInit *T, unsigned E);