| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | lto-icf.ll | 9 ; CHECK: Export { 10 ; CHECK: Export { 12 ; CHECK: Export { 14 ; CHECK-NOT: Export
|
| H A D | export.test | 6 CHECK1: Export Table: 16 CHECK2: Export Table: 31 CHECK3: Export Table: 46 CHECK4: Export Table: 61 CHECK5: Export Table: 93 FORWARDER: Export Table:
|
| H A D | export32.test | 10 # CHECK1: Export Table: 27 # CHECK2: Export Table: 43 # CHECK3: Export Table: 57 # CHECK4: Export Table: 75 # CHECK5: Export Table: 94 # CHECK7: Export Table:
|
| H A D | dll.test | 7 EXPORT: Export Table: 22 EXPORT2: Export Table: 33 EXPORT-LTO: Export Table:
|
| H A D | imports-gnu-autoexport.s | 15 EXPORT: Export { 20 EXPORT-NEXT: Export {
|
| H A D | export-exe.test | 5 CHECK: Export Table:
|
| H A D | directives.s | 8 # CHECK: Export Table:
|
| H A D | edata.s | 12 # CHECK: Export {
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | DriverUtils.cpp | 556 Export parseExport(StringRef arg) { in parseExport() 557 Export e; in parseExport() 656 for (Export &e : config->exports) { in fixupExports() 663 for (Export &e : config->exports) { in fixupExports() 672 for (Export &e : config->exports) { in fixupExports() 682 std::vector<Export> v; in fixupExports() 683 for (Export &e : config->exports) { in fixupExports() 690 Export *existing = pair.first->second; in fixupExports() 698 llvm::sort(config->exports, [](const Export &a, const Export &b) { in fixupExports() 706 for (Export &e : config->exports) in assignExportOrdinals() [all …]
|
| H A D | Config.h | 44 struct Export { struct 66 bool operator==(const Export &e) { argument 145 std::vector<Export> exports;
|
| H A D | DLL.cpp | 519 for (const Export &e : config->exports) { in writeTo() 561 for (Export &e : config->exports) { in writeTo() 724 for (Export &e : config->exports) in EdataContents() 730 for (Export &e : config->exports) in EdataContents() 735 for (Export &e : config->exports) { in EdataContents()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/ |
| H A D | SymbolizableObjectFile.cpp | 132 OffsetNamePair &Export = *I; in addCoffExportSymbols() local 134 uint32_t NextOffset = I != E ? I->Offset : Export.Offset + 1; in addCoffExportSymbols() 135 uint64_t SymbolStart = ImageBase + Export.Offset; in addCoffExportSymbols() 136 uint64_t SymbolSize = NextOffset - Export.Offset; in addCoffExportSymbols() 137 Symbols.push_back({SymbolStart, SymbolSize, Export.Name, 0}); in addCoffExportSymbols()
|
| /llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 59 struct Export { struct 363 std::vector<Export> Exports; 429 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Export) in LLVM_YAML_IS_SEQUENCE_VECTOR() 467 template <> struct MappingTraits<WasmYAML::Export> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 468 static void mapping(IO &IO, WasmYAML::Export &Export); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
| /llvm-project-15.0.7/llvm/tools/obj2yaml/ |
| H A D | wasm2yaml.cpp | 320 for (auto &Export : Obj.exports()) { in dump() local 321 WasmYAML::Export Ex; in dump() 322 Ex.Name = Export.Name; in dump() 323 Ex.Kind = Export.Kind; in dump() 324 Ex.Index = Export.Index; in dump()
|
| /llvm-project-15.0.7/llvm/tools/llvm-cov/ |
| H A D | CoverageExporterJson.cpp | 298 auto Export = json::Object( in renderRoot() local 302 Export["functions"] = renderFunctions(Coverage.getCoveredFunctions()); in renderRoot() 304 auto ExportArray = json::Array({std::move(Export)}); in renderRoot()
|
| /llvm-project-15.0.7/lldb/source/Plugins/TraceExporter/ctf/ |
| H A D | TraceExporterCTFOptions.td | 7 Desc<"Export the trace for the specified thread index. Otherwise, the "
|
| H A D | CommandObjectThreadTraceExportCTF.cpp | 89 return htr.Export(m_options.m_file); in DoExecute()
|
| /llvm-project-15.0.7/llvm/test/Transforms/LowerTypeTests/ |
| H A D | export-dead.ll | 1 ; The only use of "typeid1" is in a dead function. Export nothing.
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-readobj/COFF/ |
| H A D | exports.test | 5 CHECK: Export {
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | WasmYAML.cpp | 409 void MappingTraits<WasmYAML::Export>::mapping(IO &IO, in mapping() 410 WasmYAML::Export &Export) { in mapping() argument 411 IO.mapRequired("Name", Export.Name); in mapping() 412 IO.mapRequired("Kind", Export.Kind); in mapping() 413 IO.mapRequired("Index", Export.Index); in mapping()
|
| H A D | WasmEmitter.cpp | 431 for (const WasmYAML::Export &Export : Section.Exports) { in writeSectionContent() local 432 writeStringRef(Export.Name, OS); in writeSectionContent() 433 writeUint8(OS, Export.Kind); in writeSectionContent() 434 encodeULEB128(Export.Index, OS); in writeSectionContent()
|
| /llvm-project-15.0.7/clang/lib/Lex/ |
| H A D | DependencyDirectivesScanner.cpp | 581 bool Export = false; in lexModule() local 583 Export = true; in lexModule() 616 Kind = Export ? cxx_export_module_decl : cxx_module_decl; in lexModule() 618 Kind = Export ? cxx_export_import_decl : cxx_import_decl; in lexModule()
|
| /llvm-project-15.0.7/llvm/include/llvm/Transforms/ |
| H A D | IPO.h | 233 Export, ///< Export information to summary. enumerator
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/ |
| H A D | SymbolRecordMapping.cpp | 165 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, ExportSym &Export) { in visitKnownRecord() argument 167 error(IO.mapInteger(Export.Ordinal)); in visitKnownRecord() 168 error(IO.mapEnum(Export.Flags)); in visitKnownRecord() 169 error(IO.mapStringZ(Export.Name)); in visitKnownRecord()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | SemaInternal.h | 59 if (auto *Export = D->getAttr<DLLExportAttr>()) in getDLLAttr() local 60 return Export; in getDLLAttr()
|