Searched refs:export_ (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | WriterUtils.cpp | 237 void writeExport(raw_ostream &os, const WasmExport &export_) { in writeExport() argument 238 writeStr(os, export_.Name, "export name"); in writeExport() 239 writeU8(os, export_.Kind, "export kind"); in writeExport() 240 switch (export_.Kind) { in writeExport() 242 writeUleb128(os, export_.Index, "function index"); in writeExport() 245 writeUleb128(os, export_.Index, "global index"); in writeExport() 248 writeUleb128(os, export_.Index, "tag index"); in writeExport() 251 writeUleb128(os, export_.Index, "memory index"); in writeExport() 254 writeUleb128(os, export_.Index, "table index"); in writeExport() 257 fatal("unsupported export type: " + Twine(export_.Kind)); in writeExport()
|
| H A D | WriterUtils.h | 65 void writeExport(raw_ostream &os, const llvm::wasm::WasmExport &export_);
|
| H A D | Writer.cpp | 665 WasmExport export_; in calculateExports() local 670 export_ = {name, WASM_EXTERNAL_FUNCTION, f->getExportedFunctionIndex()}; in calculateExports() 681 export_ = {name, WASM_EXTERNAL_GLOBAL, g->getGlobalIndex()}; in calculateExports() 683 export_ = {name, WASM_EXTERNAL_TAG, t->getTagIndex()}; in calculateExports() 686 export_ = {name, WASM_EXTERNAL_GLOBAL, globalIndex++}; in calculateExports() 689 export_ = {name, WASM_EXTERNAL_TABLE, t->getTableNumber()}; in calculateExports() 693 out.exportSec->exports.push_back(export_); in calculateExports()
|
| H A D | SyntheticSections.cpp | 530 for (const WasmExport &export_ : exports) in writeBody() local 531 writeExport(os, export_); in writeBody()
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | OutputSegment.cpp | 125 .Case(section_names::export_, -6) in sectionOrder()
|
| H A D | InputSection.h | 307 constexpr const char export_[] = "__export"; variable
|
| H A D | SyntheticSections.cpp | 799 : LinkEditSection(segment_names::linkEdit, section_names::export_) {} in ExportSection()
|