-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[libc] Add line numbers to libc utility error messages #94010
Conversation
@llvm/pr-subscribers-backend-amdgpu @llvm/pr-subscribers-libc Author: Joseph Huber (jhuber6) ChangesSummary: Full diff: https://github.com/llvm/llvm-project/pull/94010.diff 3 Files Affected:
diff --git a/libc/utils/gpu/loader/Loader.h b/libc/utils/gpu/loader/Loader.h
index 9c7d328930c23..ab399409094c9 100644
--- a/libc/utils/gpu/loader/Loader.h
+++ b/libc/utils/gpu/loader/Loader.h
@@ -11,8 +11,8 @@
#include "utils/gpu/server/llvmlibc_rpc_server.h"
-#include "llvm-libc-types/rpc_opcodes_t.h"
#include "include/llvm-libc-types/test_rpc_opcodes_t.h"
+#include "llvm-libc-types/rpc_opcodes_t.h"
#include <cstddef>
#include <cstdint>
@@ -98,14 +98,16 @@ void *copy_environment(char **envp, Allocator alloc) {
return copy_argument_vector(envc, envp, alloc);
}
-inline void handle_error(const char *msg) {
- fprintf(stderr, "%s\n", msg);
+inline void handle_error_impl(const char *file, int32_t line, const char *msg) {
+ fprintf(stderr, "%s:%d: Error: %s\n", file, line, msg);
exit(EXIT_FAILURE);
}
-inline void handle_error(rpc_status_t) {
- handle_error("Failure in the RPC server\n");
+inline void handle_error_impl(const char *file, int32_t line, rpc_status_t err) {
+ fprintf(stderr, "%s:%d: Error: %d\n", file, line, err);
+ exit(EXIT_FAILURE);
}
+#define handle_error(X) handle_error_impl(__FILE__, __LINE__, X)
template <uint32_t lane_size>
inline void register_rpc_callbacks(rpc_device_t device) {
diff --git a/libc/utils/gpu/loader/amdgpu/Loader.cpp b/libc/utils/gpu/loader/amdgpu/Loader.cpp
index 35840c6910bd8..cc4fd06f0c4e7 100644
--- a/libc/utils/gpu/loader/amdgpu/Loader.cpp
+++ b/libc/utils/gpu/loader/amdgpu/Loader.cpp
@@ -48,14 +48,15 @@ struct implicit_args_t {
};
/// Print the error code and exit if \p code indicates an error.
-static void handle_error(hsa_status_t code) {
+static void handle_error_impl(const char *file, int32_t line,
+ hsa_status_t code) {
if (code == HSA_STATUS_SUCCESS || code == HSA_STATUS_INFO_BREAK)
return;
const char *desc;
if (hsa_status_string(code, &desc) != HSA_STATUS_SUCCESS)
desc = "Unknown error";
- fprintf(stderr, "%s\n", desc);
+ fprintf(stderr, "%s:%d: Error: %s\n", file, line, desc);
exit(EXIT_FAILURE);
}
diff --git a/libc/utils/gpu/loader/nvptx/Loader.cpp b/libc/utils/gpu/loader/nvptx/Loader.cpp
index 1818932f0a966..2d651d0d9f81c 100644
--- a/libc/utils/gpu/loader/nvptx/Loader.cpp
+++ b/libc/utils/gpu/loader/nvptx/Loader.cpp
@@ -29,16 +29,16 @@
using namespace llvm;
using namespace object;
-static void handle_error(CUresult err) {
+static void handle_error_impl(const char *file, int32_t line, CUresult err) {
if (err == CUDA_SUCCESS)
return;
const char *err_str = nullptr;
CUresult result = cuGetErrorString(err, &err_str);
if (result != CUDA_SUCCESS)
- fprintf(stderr, "Unknown Error\n");
+ fprintf(stderr, "%s:%d: Unknown Error\n", file, line);
else
- fprintf(stderr, "%s\n", err_str);
+ fprintf(stderr, "%s:%d: Error: %s\n", file, line, err_str);
exit(1);
}
|
✅ With the latest revision this PR passed the C/C++ code formatter. |
Summary: Currently we just print the error as seen, this makes it difficult if something goes wrong to know where it failed. This patch just adds in line numbers to all the error handling routines so you can trace it back.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, thank you. A prettier version of the local hack I do when trying to work out what is falling over.
Summary:
Currently we just print the error as seen, this makes it difficult if
something goes wrong to know where it failed. This patch just adds in
line numbers to all the error handling routines so you can trace it
back.