Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp222 if (Symbol.Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) { in printSymbol()
232 } else if (!(Symbol.Info.Flags & wasm::WASM_SYMBOL_UNDEFINED)) { in printSymbol()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DWasm.h378 const unsigned WASM_SYMBOL_UNDEFINED = 0x10; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp194 if ((Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0 || in writeSectionContent()
200 if ((Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0) { in writeSectionContent()
H A DWasmYAML.cpp516 if ((Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0) { in mapping()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DWasm.h72 return (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) != 0; in isUndefined()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DWasmObjectWriter.cpp1109 if ((Sym.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0 || in writeLinkingMetaDataSection()
1115 if ((Sym.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0) { in writeLinkingMetaDataSection()
1728 Flags |= wasm::WASM_SYMBOL_UNDEFINED; in writeOneObject()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DWasmObjectFile.cpp536 bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0; in parseLinkingSectionSymtab()