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

References

include/llvm/Object/Wasm.h
   51     return Info.Kind == wasm::WASM_SYMBOL_TYPE_FUNCTION;
   54   bool isTypeData() const { return Info.Kind == wasm::WASM_SYMBOL_TYPE_DATA; }
   57     return Info.Kind == wasm::WASM_SYMBOL_TYPE_GLOBAL;
   61     return Info.Kind == wasm::WASM_SYMBOL_TYPE_SECTION;
   64   bool isTypeEvent() const { return Info.Kind == wasm::WASM_SYMBOL_TYPE_EVENT; }
lib/MC/WasmObjectWriter.cpp
  942       encodeULEB128(Sym.Kind, W.OS);
  944       switch (Sym.Kind) {
 1460     Info.Kind = WS.getType();
lib/Object/WasmObjectFile.cpp
   41       << ", Kind=" << toString(wasm::WasmSymbolType(Info.Kind))
  491     Info.Kind = readUint8(Ctx);
  495     switch (Info.Kind) {
 1296   if (Sym.Info.Kind == wasm::WASM_SYMBOL_TYPE_FUNCTION &&
 1304   switch (Sym.Info.Kind) {
 1341   switch (Sym.Info.Kind) {
 1365   switch (Sym.Info.Kind) {
tools/lld/wasm/InputFiles.cpp
  395   switch (sym.Info.Kind) {
  442   switch (sym.Info.Kind) {
tools/llvm-readobj/WasmDumper.cpp
  226   W.printEnum("Type", Symbol.Info.Kind, makeArrayRef(WasmSymbolTypes));
  233   if (Symbol.Info.Kind != wasm::WASM_SYMBOL_TYPE_DATA) {
tools/obj2yaml/wasm2yaml.cpp
  110       Info.Kind = static_cast<uint32_t>(Symbol.Kind);
  113       switch (Symbol.Kind) {