[Driver][OpenMP] Add support to create jobs for unbundling actions.
Summary: This patch adds the support to create jobs for the `OffloadBundlingAction` which will invoke the `clang-offload-bundler` tool to unbundle input files. Unlike other actions, unbundling actions have multiple outputs. Therefore, this patch adds the required changes to have a variant of `Tool::ConstructJob` with multiple outputs. The way the naming of the results is implemented is also slightly modified so that the same action can use a different offloading prefix for each use by the different offloading actions. With this patch, it is possible to compile a functional OpenMP binary with offloading support, even with separate compilation. Reviewers: echristo, tra, jlebar, ABataev, hfinkel Subscribers: mkuron, whchung, mehdi_amini, cfe-commits, Hahnfeld, andreybokhanko, arpith-jacob, carlo.bertolli, caomhin Differential Revision: https://reviews.llvm.org/D21857 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@285326 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/Driver/Action.h 6 additions, 3 deletionsinclude/clang/Driver/Action.h
- include/clang/Driver/Driver.h 4 additions, 4 deletionsinclude/clang/Driver/Driver.h
- include/clang/Driver/Tool.h 14 additions, 0 deletionsinclude/clang/Driver/Tool.h
- lib/Driver/Action.cpp 8 additions, 5 deletionslib/Driver/Action.cpp
- lib/Driver/Driver.cpp 104 additions, 36 deletionslib/Driver/Driver.cpp
- lib/Driver/Tool.cpp 10 additions, 0 deletionslib/Driver/Tool.cpp
- lib/Driver/Tools.cpp 65 additions, 1 deletionlib/Driver/Tools.cpp
- lib/Driver/Tools.h 4 additions, 0 deletionslib/Driver/Tools.h
- test/Driver/cuda-bindings.cu 9 additions, 9 deletionstest/Driver/cuda-bindings.cu
- test/Driver/openmp-offload.c 91 additions, 2 deletionstest/Driver/openmp-offload.c
- test/Driver/opt-record.c 1 addition, 1 deletiontest/Driver/opt-record.c
Loading
Please register or sign in to comment