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

References

tools/lld/wasm/Symbols.cpp
  139   assert(outputSymbolIndex != INVALID_INDEX);
  146   assert(outputSymbolIndex == INVALID_INDEX);
  152   assert(gotIndex == INVALID_INDEX);
  202   assert(functionIndex != INVALID_INDEX);
  208   assert(functionIndex == INVALID_INDEX);
  215   return functionIndex != INVALID_INDEX;
  221   assert(tableIndex != INVALID_INDEX);
  228   return tableIndex != INVALID_INDEX;
  240   assert(tableIndex == INVALID_INDEX);
  282   assert(globalIndex != INVALID_INDEX);
  288   assert(globalIndex == INVALID_INDEX);
  295   return globalIndex != INVALID_INDEX;
  307   assert(eventIndex != INVALID_INDEX);
  313   assert(eventIndex == INVALID_INDEX);
  320   return eventIndex != INVALID_INDEX;
tools/lld/wasm/Symbols.h
  117     assert(gotIndex != INVALID_INDEX);
  122   bool hasGOTIndex() const { return gotIndex != INVALID_INDEX; }
  134   uint32_t outputSymbolIndex = INVALID_INDEX;
  135   uint32_t gotIndex = INVALID_INDEX;
  188   uint32_t tableIndex = INVALID_INDEX;
  189   uint32_t functionIndex = INVALID_INDEX;
  321   uint32_t globalIndex = INVALID_INDEX;
  383   uint32_t eventIndex = INVALID_INDEX;