Home
last modified time | relevance | path

Searched refs:Export (Results 1 – 25 of 86) sorted by relevance

1234

/llvm-project-15.0.7/lld/test/COFF/
H A Dlto-icf.ll9 ; CHECK: Export {
10 ; CHECK: Export {
12 ; CHECK: Export {
14 ; CHECK-NOT: Export
H A Dexport.test6 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 Dexport32.test10 # 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 Ddll.test7 EXPORT: Export Table:
22 EXPORT2: Export Table:
33 EXPORT-LTO: Export Table:
H A Dimports-gnu-autoexport.s15 EXPORT: Export {
20 EXPORT-NEXT: Export {
H A Dexport-exe.test5 CHECK: Export Table:
H A Ddirectives.s8 # CHECK: Export Table:
H A Dedata.s12 # CHECK: Export {
/llvm-project-15.0.7/lld/COFF/
H A DDriverUtils.cpp556 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 DConfig.h44 struct Export { struct
66 bool operator==(const Export &e) { argument
145 std::vector<Export> exports;
H A DDLL.cpp519 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 DSymbolizableObjectFile.cpp132 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 DWasmYAML.h59 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 Dwasm2yaml.cpp320 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 DCoverageExporterJson.cpp298 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 DTraceExporterCTFOptions.td7 Desc<"Export the trace for the specified thread index. Otherwise, the "
H A DCommandObjectThreadTraceExportCTF.cpp89 return htr.Export(m_options.m_file); in DoExecute()
/llvm-project-15.0.7/llvm/test/Transforms/LowerTypeTests/
H A Dexport-dead.ll1 ; 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 Dexports.test5 CHECK: Export {
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp409 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 DWasmEmitter.cpp431 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 DDependencyDirectivesScanner.cpp581 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 DIPO.h233 Export, ///< Export information to summary. enumerator
/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp165 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 DSemaInternal.h59 if (auto *Export = D->getAttr<DLLExportAttr>()) in getDLLAttr() local
60 return Export; in getDLLAttr()

1234