reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/TableGen/Record.h
 1155   VarListElementInit(const VarListElementInit &) = delete;
 1156   VarListElementInit &operator=(const VarListElementInit &) = delete;
 1156   VarListElementInit &operator=(const VarListElementInit &) = delete;
 1162   static VarListElementInit *get(TypedInit *T, unsigned E);
lib/TableGen/Record.cpp
 1455     return VarListElementInit::get(const_cast<TypedInit *>(this), Elements[0]);
 1460     ListInits.push_back(VarListElementInit::get(const_cast<TypedInit *>(this),
 1524 VarListElementInit *VarListElementInit::get(TypedInit *T,
 1527   static DenseMap<Key, VarListElementInit*> ThePool;
 1531   VarListElementInit *&I = ThePool[TheKey];
 1532   if (!I) I = new(Allocator) VarListElementInit(T, E);
 1549     return VarListElementInit::get(cast<TypedInit>(NewTI), getElementNum());