Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h1288 auto Secs = sections(); in blocks() local
1289 return make_range(block_iterator(Secs.begin(), Secs.end()), in blocks()
1290 block_iterator(Secs.end(), Secs.end())); in blocks()
1294 auto Secs = sections(); in blocks() local
1295 return make_range(const_block_iterator(Secs.begin(), Secs.end()), in blocks()
1296 const_block_iterator(Secs.end(), Secs.end())); in blocks()
1312 auto Secs = sections(); in defined_symbols() local
1313 return make_range(defined_symbol_iterator(Secs.begin(), Secs.end()), in defined_symbols()
1314 defined_symbol_iterator(Secs.end(), Secs.end())); in defined_symbols()
1318 auto Secs = sections(); in defined_symbols() local
[all …]
/src/contrib/llvm-project/compiler-rt/lib/orc/
H A Dcoff_platform.cpp122 std::vector<std::pair<std::string_view, ExecutorAddrRange>> Secs,
126 std::vector<std::pair<std::string_view, ExecutorAddrRange>> Secs);
458 std::vector<std::pair<std::string_view, ExecutorAddrRange>> Secs, in registerObjectSections() argument
468 for (auto &KV : Secs) { in registerObjectSections()
503 std::vector<std::pair<std::string_view, ExecutorAddrRange>> Secs) { in deregisterObjectSections() argument
512 for (auto &KV : Secs) { in deregisterObjectSections()
638 &Secs, in __orc_rt_coff_register_object_sections()
641 HeaderAddr, std::move(Secs), RunInitializers); in __orc_rt_coff_register_object_sections()
652 &Secs) { in __orc_rt_coff_deregister_object_sections() argument
654 HeaderAddr, std::move(Secs)); in __orc_rt_coff_deregister_object_sections()
H A Dmacho_platform.cpp326 std::vector<std::pair<std::string_view, ExecutorAddrRange>> Secs);
329 std::vector<std::pair<std::string_view, ExecutorAddrRange>> Secs);
616 std::vector<std::pair<std::string_view, ExecutorAddrRange>> Secs) { in registerObjectPlatformSections() argument
657 for (auto &KV : Secs) { in registerObjectPlatformSections()
694 std::vector<std::pair<std::string_view, ExecutorAddrRange>> Secs) { in deregisterObjectPlatformSections() argument
741 for (auto &KV : Secs) { in deregisterObjectPlatformSections()
1389 &Secs) { in __orc_rt_macho_register_object_platform_sections() argument
1392 std::move(Secs)); in __orc_rt_macho_register_object_platform_sections()
1438 &Secs) { in __orc_rt_macho_deregister_object_platform_sections() argument
1441 std::move(Secs)); in __orc_rt_macho_deregister_object_platform_sections()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp1613 auto WriteSegment = [&](StringRef Name, std::vector<SecDesc> &Secs) { in populateObjCRuntimeObject() argument
1619 Secs.size() * sizeof(MachO::section_64); in populateObjCRuntimeObject()
1620 SegLC.nsects = Secs.size(); in populateObjCRuntimeObject()
1622 for (auto &SD : Secs) { in populateObjCRuntimeObject()
/src/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h56 explicit SectionTableRef(ArrayRef<std::unique_ptr<SectionBase>> Secs) in SectionTableRef() argument
57 : Sections(Secs) {} in SectionTableRef()