Home
last modified time | relevance | path

Searched refs:EventSymbol (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lld/wasm/
DSymbols.cpp94 if (isa<EventSymbol>(this)) in getWasmType()
314 uint32_t EventSymbol::getEventIndex() const { in getEventIndex()
321 void EventSymbol::setEventIndex(uint32_t index) { in setEventIndex()
327 bool EventSymbol::hasEventIndex() const { in hasEventIndex()
335 : EventSymbol(name, DefinedEventKind, flags, file, in DefinedEvent()
DSymbols.h374 class EventSymbol : public Symbol {
388 EventSymbol(StringRef name, Kind k, uint32_t flags, InputFile *f, in EventSymbol() function
396 class DefinedEvent : public EventSymbol {
DSyntheticSections.cpp121 cast<EventSymbol>(sym)->setEventIndex(numImportedEvents++); in addImport()
178 auto *eventSym = cast<EventSymbol>(sym); in writeBody()
456 } else if (auto *e = dyn_cast<EventSymbol>(sym)) { in writeBody()
DSymbolTable.cpp175 auto existingEvent = dyn_cast<EventSymbol>(existing); in checkEventType()
176 if (!isa<EventSymbol>(existing)) { in checkEventType()
181 const WasmEventType *oldType = cast<EventSymbol>(existing)->getEventType(); in checkEventType()
DInputFiles.h150 EventSymbol *getEventSymbol(uint32_t index) const;
DInputFiles.cpp444 EventSymbol *ObjFile::getEventSymbol(uint32_t index) const { in getEventSymbol()
445 return cast<EventSymbol>(symbols[index]); in getEventSymbol()
DWriter.cpp676 else if (auto *e = dyn_cast<EventSymbol>(sym)) in calculateTypes()