[llvm] [llvm-objdump] Add support for HIP offload bundles (PR #114834)

Joseph Huber via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 4 12:07:22 PST 2025


================
@@ -183,11 +210,166 @@ class OffloadFile : public OwningBinary<OffloadBinary> {
   }
 };
 
+/// Bundle entry in binary clang-offload-bundler format.
+struct OffloadBundleEntry {
----------------
jhuber6 wrote:

I would prefer if all of this stuff went in a new file called `OffloadBundle.h` and `OffloadBundle.cpp`. They're completely different and we include `OffloadBinary` in a lot of places currently and I don't want them picking up these definitions.

https://github.com/llvm/llvm-project/pull/114834


More information about the llvm-commits mailing list