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 | |
Dmitri Gribenko | e4e77d0 | 2022-03-17 14:09:39 +0000 | [diff] [blame] | 5 | #ifndef CRUBIT_RS_BINDINGS_FROM_CC_IR_FROM_CC_H_ |
| 6 | #define CRUBIT_RS_BINDINGS_FROM_CC_IR_FROM_CC_H_ |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 7 | |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 8 | #include <string> |
| 9 | |
Lukasz Anforowicz | cec7a8a | 2022-04-27 10:24:51 -0700 | [diff] [blame^] | 10 | #include "absl/container/flat_hash_map.h" |
| 11 | #include "absl/status/statusor.h" |
| 12 | #include "absl/strings/string_view.h" |
| 13 | #include "absl/types/span.h" |
Marcel Hlopko | 3b254b3 | 2022-03-09 14:10:49 +0000 | [diff] [blame] | 14 | #include "rs_bindings_from_cc/bazel_types.h" |
| 15 | #include "rs_bindings_from_cc/ir.h" |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 16 | |
Marcel Hlopko | f15e8ce | 2022-04-08 08:46:09 -0700 | [diff] [blame] | 17 | namespace crubit { |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 18 | |
Devin Jeanpierre | df4dc8b | 2021-10-21 12:53:19 +0000 | [diff] [blame] | 19 | // Parses C++ source code into IR. |
| 20 | // |
| 21 | // Parameters: |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 22 | // * `extra_source_code`: C++ source code to be written into a virtual header |
| 23 | // and included in binding generation. Intended for testing only. |
| 24 | // * `current_target`: full label of the target for which we generate bindings. |
| 25 | // If not specified `//test:testing_target` is used. |
| 26 | // * `public_headers`: names of headers from which we build the Clang AST. If |
| 27 | // `extra_source_code` is specified its header will be added automatically. |
| 28 | // * `virtual_headers_contents`: names and contents of virtual headers that |
| 29 | // will be created in the virtual filesystem. These headers have to be |
| 30 | // manually added to `public_headers` if needed. |
| 31 | // * `headers_to_targets`: mapping of headers to the label of the owning target. |
| 32 | // If `extra_source_code` is specified it's added automatically under |
| 33 | // `//test:testing_target`. Headers from `virtual_headers_contents` are not |
| 34 | // added automatically. |
Devin Jeanpierre | df4dc8b | 2021-10-21 12:53:19 +0000 | [diff] [blame] | 35 | // * `args`: additional command line arguments for Clang |
| 36 | // |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 37 | absl::StatusOr<IR> IrFromCc( |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 38 | absl::string_view extra_source_code, |
Googler | 6c3de12 | 2022-03-28 11:40:41 +0000 | [diff] [blame] | 39 | BazelLabel current_target = BazelLabel{"//test:testing_target"}, |
Marcel Hlopko | 7aa38a7 | 2021-11-11 07:39:51 +0000 | [diff] [blame] | 40 | absl::Span<const HeaderName> public_headers = {}, |
| 41 | absl::flat_hash_map<const HeaderName, const std::string> |
| 42 | virtual_headers_contents = {}, |
Googler | 6c3de12 | 2022-03-28 11:40:41 +0000 | [diff] [blame] | 43 | absl::flat_hash_map<const HeaderName, const BazelLabel> headers_to_targets = |
Googler | e05154d | 2022-01-10 08:39:03 +0000 | [diff] [blame] | 44 | {}, |
Michael Forster | 3f323be | 2021-10-11 07:13:28 +0000 | [diff] [blame] | 45 | absl::Span<const absl::string_view> args = {}); |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 46 | |
Marcel Hlopko | f15e8ce | 2022-04-08 08:46:09 -0700 | [diff] [blame] | 47 | } // namespace crubit |
Googler | 741ed9c | 2021-10-01 08:00:49 +0000 | [diff] [blame] | 48 | |
Dmitri Gribenko | e4e77d0 | 2022-03-17 14:09:39 +0000 | [diff] [blame] | 49 | #endif // CRUBIT_RS_BINDINGS_FROM_CC_IR_FROM_CC_H_ |