Home
last modified time | relevance | path

Searched refs:importModule (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lld/wasm/
H A DSymbols.h179 llvm::Optional<StringRef> importModule; variable
231 llvm::Optional<StringRef> importModule, uint32_t flags,
238 this->importModule = importModule; in FunctionSymbol()
365 llvm::Optional<StringRef> importModule, uint32_t flags,
370 this->importModule = importModule; in GlobalSymbol()
414 llvm::Optional<StringRef> importModule, uint32_t flags, in UndefinedTable() argument
418 this->importModule = importModule; in UndefinedTable()
472 llvm::Optional<StringRef> importModule, uint32_t flags,
476 this->importModule = importModule; in TagSymbol()
H A DSymbolTable.cpp465 Optional<StringRef> importModule, in setImportAttributes() argument
477 if (importModule) { in setImportAttributes()
478 if (!existing->importModule) in setImportAttributes()
479 existing->importModule = importModule; in setImportAttributes()
480 if (existing->importModule != importModule) in setImportAttributes()
482 "\n>>> defined as " + *existing->importModule + " in " + in setImportAttributes()
484 *importModule + " in " + toString(file)); in setImportAttributes()
496 Optional<StringRef> importModule, in addUndefinedFunction() argument
581 Optional<StringRef> importModule, in addUndefinedGlobal() argument
605 Optional<StringRef> importModule, in addUndefinedTable() argument
[all …]
H A DSymbolTable.h67 llvm::Optional<StringRef> importModule,
74 llvm::Optional<StringRef> importModule,
79 llvm::Optional<StringRef> importModule,
83 llvm::Optional<StringRef> importModule,
H A DSyntheticSections.h110 llvm::Optional<StringRef> importModule; member
117 ImportKey(T type, llvm::Optional<StringRef> importModule, in ImportKey()
119 : type(type), importModule(importModule), importName(importName), in ImportKey()
125 return lhs.state == rhs.state && lhs.importModule == rhs.importModule &&
147 uintptr_t hash = hash_value(key.importModule);
H A DSyntheticSections.cpp127 StringRef module = sym->importModule.value_or(defaultModule); in writeBody()
187 StringRef module = sym->importModule.value_or(defaultModule); in addImport()
258 import.Module = sym->importModule.value_or(defaultModule); in writeBody()