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

References

include/llvm/IR/ValueSymbolTable.h
   74   Value *lookup(StringRef Name) const { return vmap.lookup(Name); }
   78   inline bool empty() const { return vmap.empty(); }
   81   inline unsigned size() const { return unsigned(vmap.size()); }
   93   inline iterator begin() { return vmap.begin(); }
   96   inline const_iterator begin() const { return vmap.begin(); }
   99   inline iterator end() { return vmap.end(); }
  102   inline const_iterator end() const { return vmap.end(); }
lib/IR/ValueSymbolTable.cpp
   35   for (const auto &VI : vmap)
   39   assert(vmap.empty() && "Values remain in symbol table!");
   64     auto IterBool = vmap.insert(std::make_pair(UniqueName, V));
   76   if (vmap.insert(V->getValueName())) {
   95   vmap.remove(V);
  103   auto IterBool = vmap.insert(std::make_pair(Name, V));