[llvm] [BOLT] Exit with error code on missing DWO CU (PR #125976)
Amir Ayupov via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 10:00:21 PST 2025
https://github.com/aaupov updated https://github.com/llvm/llvm-project/pull/125976
>From 74e06e6b75ce37f6dd21a1df2948b6e4f0f5395d Mon Sep 17 00:00:00 2001
From: Amir Ayupov <aaupov at fb.com>
Date: Wed, 5 Feb 2025 17:02:48 -0800
Subject: [PATCH 1/2] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20in?=
=?UTF-8?q?itial=20version?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Created using spr 1.3.4
---
bolt/lib/Core/BinaryContext.cpp | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/bolt/lib/Core/BinaryContext.cpp b/bolt/lib/Core/BinaryContext.cpp
index f5e11358daaa32b..3947c62ac8df00e 100644
--- a/bolt/lib/Core/BinaryContext.cpp
+++ b/bolt/lib/Core/BinaryContext.cpp
@@ -1759,7 +1759,10 @@ void BinaryContext::preprocessDebugInfo() {
dwarf::toString(CU->getUnitDIE().find(dwarf::DW_AT_name), nullptr);
if (std::optional<uint64_t> DWOID = CU->getDWOId()) {
auto Iter = DWOCUs.find(*DWOID);
- assert(Iter != DWOCUs.end() && "DWO CU was not found.");
+ if (Iter == DWOCUs.end()) {
+ this->errs() << "DWO CU was not found for " << Name << '\n';
+ exit(1);
+ }
Name = dwarf::toString(
Iter->second->getUnitDIE().find(dwarf::DW_AT_name), nullptr);
}
>From 0bd3e92d60ea4ffdc905c38d086484902f0fb168 Mon Sep 17 00:00:00 2001
From: Amir Ayupov <aaupov at fb.com>
Date: Thu, 6 Feb 2025 09:59:54 -0800
Subject: [PATCH 2/2] add BOLT-ERROR
Created using spr 1.3.4
---
bolt/lib/Core/BinaryContext.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/bolt/lib/Core/BinaryContext.cpp b/bolt/lib/Core/BinaryContext.cpp
index 3947c62ac8df00e..cc299d4da783931 100644
--- a/bolt/lib/Core/BinaryContext.cpp
+++ b/bolt/lib/Core/BinaryContext.cpp
@@ -1760,7 +1760,8 @@ void BinaryContext::preprocessDebugInfo() {
if (std::optional<uint64_t> DWOID = CU->getDWOId()) {
auto Iter = DWOCUs.find(*DWOID);
if (Iter == DWOCUs.end()) {
- this->errs() << "DWO CU was not found for " << Name << '\n';
+ this->errs() << "BOLT-ERROR: DWO CU was not found for " << Name
+ << '\n';
exit(1);
}
Name = dwarf::toString(
More information about the llvm-commits
mailing list