[PATCH] D126812: [Binary] Promote OffloadBinary to inherit from Binary

Joseph Huber via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 1 12:49:38 PDT 2022


jhuber6 created this revision.
jhuber6 added reviewers: jdoerfert, tra, JonChesterfield, MaskRay.
Herald added a reviewer: deadalnix.
Herald added subscribers: ormris, StephenFan, hiraditya.
Herald added a project: All.
jhuber6 requested review of this revision.
Herald added subscribers: llvm-commits, cfe-commits, aheejin.
Herald added projects: clang, LLVM.

We use the `OffloadBinary` to create binary images of offloading files
and their corresonding metadata. This patch changes this to inherit from
the base `Binary` class. This allows us to create and insepect these
more generically. This patch includes all the necessary glue to
implement this as a new binary format, along with added the magic bytes
we use to distinguish the offloading binary to the `file_magic`
implementation.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D126812

Files:
  clang/lib/CodeGen/BackendUtil.cpp
  llvm/include/llvm-c/Object.h
  llvm/include/llvm/BinaryFormat/Magic.h
  llvm/include/llvm/Object/Binary.h
  llvm/include/llvm/Object/OffloadBinary.h
  llvm/lib/BinaryFormat/Magic.cpp
  llvm/lib/Object/Binary.cpp
  llvm/lib/Object/Object.cpp
  llvm/lib/Object/ObjectFile.cpp
  llvm/lib/Object/OffloadBinary.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D126812.433501.patch
Type: text/x-patch
Size: 11134 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220601/c7e4332e/attachment.bin>


More information about the llvm-commits mailing list