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

References

include/llvm/LTO/legacy/LTOModule.h
  134     return _symbols.size();
  139     if (index < _symbols.size())
  140       return lto_symbol_attributes(_symbols[index].attributes);
  146     if (index < _symbols.size())
  147       return _symbols[index].name;
  152     if (index < _symbols.size())
  153       return _symbols[index].symbol;
lib/LTO/LTOModule.cpp
  293     _symbols.push_back(info);
  470   _symbols.push_back(info);
  502     _symbols.push_back(info);
  511   _symbols.back().attributes &= ~LTO_SYMBOL_SCOPE_MASK;
  512   _symbols.back().attributes |= scope;
  620     _symbols.push_back(info);
  645   for (const NameAndAttributes &Sym : _symbols) {