Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bolt/lib/Core/BinaryContext.cpp')
-rw-r--r--bolt/lib/Core/BinaryContext.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/bolt/lib/Core/BinaryContext.cpp b/bolt/lib/Core/BinaryContext.cpp
index a848fdcd7dbe..64d43ec6c8e0 100644
--- a/bolt/lib/Core/BinaryContext.cpp
+++ b/bolt/lib/Core/BinaryContext.cpp
@@ -1690,6 +1690,22 @@ void BinaryContext::printInstruction(raw_ostream &OS, const MCInst &Instruction,
}
}
+Optional<uint64_t>
+BinaryContext::getBaseAddressForMapping(uint64_t MMapAddress,
+ uint64_t FileOffset) const {
+ // Find a segment with a matching file offset.
+ for (auto &KV : SegmentMapInfo) {
+ const SegmentInfo &SegInfo = KV.second;
+ if (alignDown(SegInfo.FileOffset, SegInfo.Alignment) == FileOffset) {
+ // Use segment's aligned memory offset to calculate the base address.
+ const uint64_t MemOffset = alignDown(SegInfo.Address, SegInfo.Alignment);
+ return MMapAddress - MemOffset;
+ }
+ }
+
+ return NoneType();
+}
+
ErrorOr<BinarySection &> BinaryContext::getSectionForAddress(uint64_t Address) {
auto SI = AddressToSection.upper_bound(Address);
if (SI != AddressToSection.begin()) {