| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| COFFModuleDefinition.h | 28 std::vector<COFFShortExport> Exports;
|
| COFFImportFile.h | 86 /// file, this is "baz" in "EXPORTS\nfoo = bar == baz". 107 ArrayRef<COFFShortExport> Exports,
|
| Wasm.h | 147 ArrayRef<wasm::WasmExport> exports() const { return Exports; } function in class:llvm::object::WasmObjectFile 283 std::vector<wasm::WasmExport> Exports;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPUExportClustering.cpp | 10 /// exports. 44 // Position exports should occur as soon as possible in the shader 45 // for optimal performance. This moves position exports before 46 // other exports while preserving the order within different export 59 static void buildCluster(ArrayRef<SUnit *> Exports, ScheduleDAGInstrs *DAG) { 60 SUnit *ChainHead = Exports.front(); 63 for (unsigned Idx = 0, End = Exports.size() - 1; Idx < End; ++Idx) { 64 SUnit *SUa = Exports[Idx]; 65 SUnit *SUb = Exports[Idx + 1]; 75 // New barrier edge ordering exports [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ToolDrivers/llvm-dlltool/ |
| DlltoolDriver.cpp | 156 for (COFFShortExport& E : Def->Exports) { 164 for (COFFShortExport& E : Def->Exports) { 181 writeImportLibrary(Def->OutputFile, Path, Def->Exports, Machine, true))
|
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| Module.cpp | 349 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); 367 for (unsigned I = 0, N = Exports.size(); I != N; ++I) { 368 Module *Mod = Exports[I].getPointer(); 369 if (!Exports[I].getInt()) { 382 if (Module *Restriction = Exports[I].getPointer()) 541 for (unsigned I = 0, N = Exports.size(); I != N; ++I) { 544 if (Module *Restriction = Exports[I].getPointer()) { 546 if (Exports[I].getInt()) 658 SmallVector<Module *, 16> Exports; 659 V.M->getExportedModules(Exports); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| CodeViewYAMLDebugSections.cpp | 160 fromCodeViewSubsection(const DebugCrossModuleExportsSubsectionRef &Exports); 162 std::vector<CrossModuleExport> Exports; 342 IO.mapOptional("Exports", Exports); 468 for (const auto &M : Exports) 648 const DebugCrossModuleExportsSubsectionRef &Exports) { 650 Result->Exports.assign(Exports.begin(), Exports.end()); 831 DebugCrossModuleExportsSubsectionRef &Exports, [all...] |
| WasmEmitter.cpp | 417 encodeULEB128(Section.Exports.size(), OS); 418 for (const WasmYAML::Export &Export : Section.Exports) {
|
| WasmYAML.cpp | 135 IO.mapOptional("Exports", Section.Exports);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/ |
| MachOWriter.cpp | 76 assert((DyLdInfoCommand.export_size == O.Exports.Trie.size()) && 383 assert((DyLdInfoCommand.export_size == O.Exports.Trie.size()) && 385 memcpy(Out, O.Exports.Trie.data(), O.Exports.Trie.size());
|
| MachOLayoutBuilder.cpp | 252 uint64_t StartOfFunctionStarts = StartOfExportTrie + O.Exports.Trie.size(); 343 O.Exports.Trie.empty() ? 0 : StartOfExportTrie; 344 MLC.dyld_info_command_data.export_size = O.Exports.Trie.size();
|
| Object.h | 310 ExportInfo Exports;
|
| MachOReader.cpp | 258 O.Exports.Trie = MachOObj.getDyldInfoExportsTrie();
|
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| COFFModuleDefinition.cpp | 127 .Case("EXPORTS", KwExports) 262 Info.Exports.push_back(E); 294 Info.Exports.push_back(E);
|
| COFFImportFile.cpp | 572 ArrayRef<COFFShortExport> Exports, 587 for (COFFShortExport E : Exports) {
|
| WasmObjectFile.cpp | 1178 Exports.reserve(Count); 1209 Exports.push_back(Ex);
|
| /src/external/apache2/llvm/dist/llvm/lib/TextAPI/ |
| TextStub.cpp | 49 exports: # List of export sections 56 re-exports: [ ] # Optional: List of re-exports 81 exports: # List of export sections 90 re-exports: [ ] # Optional: List of re-exports 122 exports: # List of export sections 131 re-exports: [ ] # Optional: List of re-exports 172 exports: # List of export section [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| WasmObjectWriter.cpp | 313 void writeExportSection(ArrayRef<wasm::WasmExport> Exports); 913 void WasmObjectWriter::writeExportSection(ArrayRef<wasm::WasmExport> Exports) { 914 if (Exports.empty()) 920 encodeULEB128(Exports.size(), W->OS); 921 for (const wasm::WasmExport &Export : Exports) { 1400 SmallVector<wasm::WasmExport, 4> Exports; 1550 Exports.push_back(Export); 1863 writeExportSection(Exports);
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| ModuleMap.cpp | 635 // wildcard to the set of exports. 636 if (UmbrellaModule->InferExportWildcard && Result->Exports.empty()) 637 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); 651 // wildcard to the set of exports. 652 if (UmbrellaModule->InferExportWildcard && Result->Exports.empty()) 653 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); 898 M->Exports.push_back(Module::ExportDecl(nullptr, true)); 1051 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); 1307 Mod->Exports.push_back(Export);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| FunctionImport.cpp | 336 // Only update stat and exports if we haven't already imported this 557 /// as well as the list of "exports", i.e. the list of symbols referenced from 763 auto &Exports = ExportLists[ModName]; 764 unsigned NumGVS = numGlobalVarSummaries(Index, Exports); 765 LLVM_DEBUG(dbgs() << "* Module " << ModName << " exports " 766 << Exports.size() - NumGVS << " functions and " << NumGVS
|
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| Module.h | 336 SmallVector<ExportDecl, 2> Exports;
|
| /src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
| asn1parse.y | 263 ModuleBody : Exports Imports AssignmentList 291 Exports : kw_EXPORTS referencenames ';'
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaModule.cpp | 396 getCurrentModule()->Exports.emplace_back(Mod, false);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
| WasmYAML.h | 346 std::vector<Export> Exports;
|
| /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| wasm2yaml.cpp | 316 for (auto &Export : Obj.exports()) { 321 ExportSec->Exports.push_back(Ex);
|