Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h1277 auto Secs = sections(); in blocks() local
1278 return make_range(block_iterator(Secs.begin(), Secs.end()), in blocks()
1279 block_iterator(Secs.end(), Secs.end())); in blocks()
1283 auto Secs = sections(); in blocks() local
1284 return make_range(const_block_iterator(Secs.begin(), Secs.end()), in blocks()
1285 const_block_iterator(Secs.end(), Secs.end())); in blocks()
1301 auto Secs = sections(); in defined_symbols() local
1302 return make_range(defined_symbol_iterator(Secs.begin(), Secs.end()), in defined_symbols()
1303 defined_symbol_iterator(Secs.end(), Secs.end())); in defined_symbols()
1308 return make_range(const_defined_symbol_iterator(Secs.begin(), Secs.end()), in defined_symbols()
[all …]
/freebsd/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()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp1567 auto WriteSegment = [&](StringRef Name, std::vector<SecDesc> &Secs) { in populateObjCRuntimeObject() argument
1573 Secs.size() * sizeof(MachO::section_64); in populateObjCRuntimeObject()
1574 SegLC.nsects = Secs.size(); in populateObjCRuntimeObject()
1576 for (auto &SD : Secs) { in populateObjCRuntimeObject()
/freebsd/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()