Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 1 | // Part of the Crubit project, under the Apache License v2.0 with LLVM |
| 2 | // Exceptions. See /LICENSE for license information. |
| 3 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 4 | |
| 5 | #include "rs_bindings_from_cc/ir_from_cc.h" |
| 6 | |
Marcel Hlopko | 20f4ce4 | 2021-11-02 08:20:00 +0000 | [diff] [blame] | 7 | #include <memory> |
| 8 | #include <string> |
| 9 | #include <utility> |
| 10 | #include <vector> |
| 11 | |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 12 | #include "third_party/absl/container/flat_hash_map.h" |
Marcel Hlopko | 20f4ce4 | 2021-11-02 08:20:00 +0000 | [diff] [blame] | 13 | #include "third_party/absl/status/status.h" |
| 14 | #include "third_party/absl/status/statusor.h" |
| 15 | #include "third_party/absl/strings/string_view.h" |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 16 | #include "third_party/absl/strings/substitute.h" |
Marcel Hlopko | 20f4ce4 | 2021-11-02 08:20:00 +0000 | [diff] [blame] | 17 | #include "third_party/absl/types/span.h" |
Marco Poletti | c61bcc4 | 2022-04-08 12:54:30 -0700 | [diff] [blame^] | 18 | #include "common/check.h" |
Marcel Hlopko | 3b254b3 | 2022-03-09 14:10:49 +0000 | [diff] [blame] | 19 | #include "rs_bindings_from_cc/bazel_types.h" |
| 20 | #include "rs_bindings_from_cc/frontend_action.h" |
| 21 | #include "rs_bindings_from_cc/importer.h" |
| 22 | #include "rs_bindings_from_cc/ir.h" |
Rosica Dejanovska | 5fc4caf | 2022-01-31 13:54:32 +0000 | [diff] [blame] | 23 | #include "third_party/llvm/llvm-project/clang/include/clang/Basic/FileManager.h" |
| 24 | #include "third_party/llvm/llvm-project/clang/include/clang/Basic/FileSystemOptions.h" |
Marcel Hlopko | 20f4ce4 | 2021-11-02 08:20:00 +0000 | [diff] [blame] | 25 | #include "third_party/llvm/llvm-project/clang/include/clang/Frontend/FrontendAction.h" |
Rosica Dejanovska | 5fc4caf | 2022-01-31 13:54:32 +0000 | [diff] [blame] | 26 | #include "third_party/llvm/llvm-project/clang/include/clang/Tooling/Tooling.h" |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 27 | |
Marcel Hlopko | f15e8ce | 2022-04-08 08:46:09 -0700 | [diff] [blame] | 28 | namespace crubit { |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 29 | |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 30 | static constexpr absl::string_view kVirtualHeaderPath = |
| 31 | "ir_from_cc_virtual_header.h"; |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 32 | static constexpr absl::string_view kVirtualInputPath = |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 33 | "ir_from_cc_virtual_input.cc"; |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 34 | |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 35 | absl::StatusOr<IR> IrFromCc( |
Googler | 6c3de12 | 2022-03-28 11:40:41 +0000 | [diff] [blame] | 36 | const absl::string_view extra_source_code, const BazelLabel current_target, |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 37 | absl::Span<const HeaderName> public_headers, |
| 38 | absl::flat_hash_map<const HeaderName, const std::string> |
| 39 | virtual_headers_contents, |
Googler | 6c3de12 | 2022-03-28 11:40:41 +0000 | [diff] [blame] | 40 | absl::flat_hash_map<const HeaderName, const BazelLabel> headers_to_targets, |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 41 | absl::Span<const absl::string_view> args) { |
Lukasz Anforowicz | 34ad7f7 | 2022-03-17 16:05:28 +0000 | [diff] [blame] | 42 | // Caller should verify that the inputs are not empty. |
| 43 | CRUBIT_CHECK(!extra_source_code.empty() || !public_headers.empty()); |
| 44 | CRUBIT_CHECK(!extra_source_code.empty() || !headers_to_targets.empty()); |
| 45 | |
Googler | 7ea9fbb | 2022-03-11 02:56:03 +0000 | [diff] [blame] | 46 | std::vector<HeaderName> entrypoint_headers(public_headers.begin(), |
| 47 | public_headers.end()); |
Rosica Dejanovska | 5fc4caf | 2022-01-31 13:54:32 +0000 | [diff] [blame] | 48 | clang::tooling::FileContentMappings file_contents; |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 49 | |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 50 | for (auto const& name_and_content : virtual_headers_contents) { |
Rosica Dejanovska | 5fc4caf | 2022-01-31 13:54:32 +0000 | [diff] [blame] | 51 | file_contents.push_back({std::string(name_and_content.first.IncludePath()), |
| 52 | name_and_content.second}); |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 53 | } |
| 54 | if (!extra_source_code.empty()) { |
Rosica Dejanovska | 5fc4caf | 2022-01-31 13:54:32 +0000 | [diff] [blame] | 55 | file_contents.push_back( |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 56 | {std::string(kVirtualHeaderPath), std::string(extra_source_code)}); |
| 57 | HeaderName header_name = HeaderName(std::string(kVirtualHeaderPath)); |
| 58 | entrypoint_headers.push_back(header_name); |
| 59 | headers_to_targets.insert({header_name, current_target}); |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 62 | std::string virtual_input_file_content; |
| 63 | for (const HeaderName& header_name : entrypoint_headers) { |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 64 | absl::SubstituteAndAppend(&virtual_input_file_content, "#include \"$0\"\n", |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 65 | header_name.IncludePath()); |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 66 | } |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 67 | |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 68 | std::vector<std::string> args_as_strings{ |
Rosica Dejanovska | 5fc4caf | 2022-01-31 13:54:32 +0000 | [diff] [blame] | 69 | // Parse non-doc comments that are used as documention |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 70 | "-fparse-all-comments"}; |
| 71 | args_as_strings.insert(args_as_strings.end(), args.begin(), args.end()); |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 72 | |
Michael Forster | a49d2e6 | 2022-01-28 07:26:40 +0000 | [diff] [blame] | 73 | if (Importer::Invocation invocation(current_target, entrypoint_headers, |
| 74 | headers_to_targets); |
Rosica Dejanovska | 5fc4caf | 2022-01-31 13:54:32 +0000 | [diff] [blame] | 75 | clang::tooling::runToolOnCodeWithArgs( |
| 76 | std::make_unique<FrontendAction>(invocation), |
| 77 | virtual_input_file_content, args_as_strings, kVirtualInputPath, |
| 78 | "rs_bindings_from_cc", |
| 79 | std::make_shared<clang::PCHContainerOperations>(), file_contents)) { |
Michael Forster | a49d2e6 | 2022-01-28 07:26:40 +0000 | [diff] [blame] | 80 | return invocation.ir_; |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 81 | } else { |
| 82 | return absl::Status(absl::StatusCode::kInvalidArgument, |
| 83 | "Could not compile header contents"); |
| 84 | } |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Marcel Hlopko | f15e8ce | 2022-04-08 08:46:09 -0700 | [diff] [blame] | 87 | } // namespace crubit |