[llvm] 581f8bc - [clang][OpenMP] Fix bug #62099 - use hash value when inode ID cannot be determined (#131646)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 06:09:25 PDT 2025
Author: Michael Klemm
Date: 2025-04-02T15:09:22+02:00
New Revision: 581f8bccb529ad9c60e231c44b01a2f9b3ce79b6
URL: https://github.com/llvm/llvm-project/commit/581f8bccb529ad9c60e231c44b01a2f9b3ce79b6
DIFF: https://github.com/llvm/llvm-project/commit/581f8bccb529ad9c60e231c44b01a2f9b3ce79b6.diff
LOG: [clang][OpenMP] Fix bug #62099 - use hash value when inode ID cannot be determined (#131646)
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.
---------
Co-authored-by: Michael Kruse <github at meinersbur.de>
Added:
Modified:
llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
index cb2376f59e32e..68b1fa42934ad 100644
--- a/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+++ b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
@@ -9539,14 +9539,16 @@ 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;
+ std::error_code EC = sys::fs::getUniqueID(std::get<0>(FileIDInfo), ID);
+ // If the inode ID could not be determined, create a hash value
+ // the current file name and use that as an ID.
+ if (EC)
+ FileID = hash_value(std::get<0>(FileIDInfo));
+ else
+ FileID = ID.getFile();
- return TargetRegionEntryInfo(ParentName, ID.getDevice(), ID.getFile(),
+ return TargetRegionEntryInfo(ParentName, ID.getDevice(), FileID,
std::get<1>(FileIDInfo));
}
More information about the llvm-commits
mailing list