[llvm] [clang]{OpenMP] Fix bug #62099 - use hash value when inode ID cannot be determined (PR #131646)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 10:20:01 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-flang-openmp
Author: Michael Klemm (mjklemm)
<details>
<summary>Changes</summary>
When creating the name of an outlined region, Clang uses the file's inode ID to generate a unique name. When the file does not exist, this causes a fatal abort of the compiler. This PR switches to a has value that is used instead.
---
Full diff: https://github.com/llvm/llvm-project/pull/131646.diff
1 Files Affected:
- (modified) llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp (+10-6)
``````````diff
diff --git a/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
index 8dcebcdb8791d..dacbc00ec7819 100644
--- a/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+++ b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
@@ -9577,14 +9577,18 @@ OpenMPIRBuilder::getTargetEntryUniqueInfo(FileIdentifierInfoCallbackTy CallBack,
StringRef ParentName) {
sys::fs::UniqueID ID;
auto FileIDInfo = CallBack();
- if (auto EC = sys::fs::getUniqueID(std::get<0>(FileIDInfo), ID)) {
- report_fatal_error(("Unable to get unique ID for file, during "
- "getTargetEntryUniqueInfo, error message: " +
- EC.message())
- .c_str());
+ uint64_t FileID{0};
+ auto EC = sys::fs::getUniqueID(std::get<0>(FileIDInfo), ID);
+ if (EC) {
+ // The inode ID could not be determined, so create a hash value
+ // the current file name and use that as an ID.
+ FileID = hash_value(FileIDInfo);
+ }
+ else {
+ FileID = ID.getFile();
}
- return TargetRegionEntryInfo(ParentName, ID.getDevice(), ID.getFile(),
+ return TargetRegionEntryInfo(ParentName, ID.getDevice(), FileID,
std::get<1>(FileIDInfo));
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/131646
More information about the llvm-commits
mailing list