Home
last modified time | relevance | path

Searched refs:CodeRanges (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp1118 if (US.CodeRanges.empty() || US.CodeRanges.back().End != B->getAddress()) in findUnwindSectionInfo()
1119 US.CodeRanges.push_back(B->getRange()); in findUnwindSectionInfo()
1121 US.CodeRanges.back().End = B->getRange().End; in findUnwindSectionInfo()
1137 for (auto &CR : US.CodeRanges) in findUnwindSectionInfo()
1139 if (US.CodeRanges.size() >= G.sections_size()) in findUnwindSectionInfo()
1211 UnwindInfo = std::make_tuple(std::move(UI->CodeRanges), UI->DwarfSection, in registerObjectPlatformSections()
/openbsd-src/gnu/llvm/compiler-rt/lib/orc/
H A Dmacho_platform.cpp135 std::vector<ExecutorAddrRange> CodeRanges; member
149 USI.CodeRanges, USI.DwarfSection, USI.CompactUnwindSection); in size()
154 OB, USI.CodeRanges, USI.DwarfSection, USI.CompactUnwindSection); in serialize()
159 IB, USI.CodeRanges, USI.DwarfSection, USI.CompactUnwindSection); in deserialize()
559 for (auto &CodeRange : UnwindInfo->CodeRanges) { in registerObjectPlatformSections()
653 for (auto &CodeRange : UnwindInfo->CodeRanges) { in deregisterObjectPlatformSections()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOPlatform.h151 SmallVector<ExecutorAddrRange> CodeRanges; member