forked from p4lang/p4c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
p4_library.bzl
257 lines (232 loc) · 8.72 KB
/
p4_library.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
"""P4 compilation rule."""
load("@bazel_tools//tools/cpp:toolchain_utils.bzl", "find_cpp_toolchain", "use_cpp_toolchain")
def _extract_common_p4c_args(ctx):
"""Extract common arguments for p4c build rules."""
p4file = ctx.file.src
p4deps = ctx.files._p4include + ctx.files.deps
args = [
p4file.path,
"--std",
ctx.attr.std,
"--arch",
ctx.attr.arch,
]
include_dirs = {d.dirname: 0 for d in p4deps} # Use dict to express set.
include_dirs["."] = 0 # Enable include paths relative to workspace root.
args += [("-I" + dir) for dir in include_dirs.keys()]
return args
def _extract_p4c_inputs(ctx):
"""Extract input p4 files to give to p4c from the build rule context."""
return ctx.files._p4include + ctx.files.deps + [ctx.file.src]
def _run_shell_cmd_with_p4c(ctx, command, **run_shell_kwargs):
"""Run given shell command using `run_shell` action after setting up
the C compiler toolchain.
This function also sets up the `tools` parameter for `run_shell` to
set up p4c and the cpp toolchain, and `kwargs` is passed to
`run_shell`.
"""
if not hasattr(ctx.executable, "p4c_backend"):
fail("The build rule does not specify the p4c backend executable via `p4c_backend` attribute.")
p4c = ctx.executable.p4c_backend
cpp_toolchain = find_cpp_toolchain(ctx)
ctx.actions.run_shell(
command = """
# p4c invokes cc for preprocessing; we provide it below.
function cc () {{ "{cc}" "$@"; }}
export -f cc
{command}
""".format(
cc = cpp_toolchain.compiler_executable,
command = command,
),
tools = depset(
direct = [p4c],
transitive = [cpp_toolchain.all_files],
),
use_default_shell_env = True,
**run_shell_kwargs
)
def _p4_library_impl(ctx):
p4c = ctx.executable.p4c_backend
p4file = ctx.file.src
target = ctx.attr.target
args = _extract_common_p4c_args(ctx)
args += ["--target", (target if target else "bmv2")]
if ctx.attr.extra_args:
args.append(ctx.attr.extra_args)
outputs = []
if ctx.outputs.bf_rt_schema_out:
if target != "dpdk":
fail('Must use `target = "dpdk"` when specifying bf_rt_schema_out.')
args += ["--bf-rt-schema", ctx.outputs.bf_rt_schema_out.path]
outputs.append(ctx.outputs.bf_rt_schema_out)
if ctx.outputs.context_out:
if target != "dpdk":
fail('Must use `target = "dpdk"` when specifying context_out.')
args += ["--context", ctx.outputs.context_out.path]
outputs.append(ctx.outputs.context_out)
if ctx.outputs.p4info_out:
if target != "" and target != "bmv2":
fail('Must use `target = "bmv2"` when specifying p4info_out.')
args += ["--p4runtime-files", ctx.outputs.p4info_out.path]
outputs.append(ctx.outputs.p4info_out)
if ctx.outputs.target_out:
if not target:
fail("Cannot specify target_out without specifying target explicitly.")
args += ["-o", ctx.outputs.target_out.path]
outputs.append(ctx.outputs.target_out)
if not outputs:
fail("No outputs specified. Must specify p4info_out or target_out or both.")
_run_shell_cmd_with_p4c(
ctx,
command = """
"{p4c}" {p4c_args}
""".format(
p4c = p4c.path,
p4c_args = " ".join(args),
),
inputs = _extract_p4c_inputs(ctx),
outputs = outputs,
progress_message = "Compiling P4 program %s" % p4file.short_path,
)
p4_library = rule(
doc = "Compiles P4 program using the p4c compiler.",
implementation = _p4_library_impl,
attrs = {
"src": attr.label(
doc = "P4 source file to pass to p4c.",
mandatory = True,
allow_single_file = [".p4"],
),
"deps": attr.label_list(
doc = "Additional P4 dependencies (optional). Use for #include-ed files.",
mandatory = False,
allow_files = [".p4", ".h"],
default = [],
),
"bf_rt_schema_out": attr.output(
mandatory = False,
doc = "The name of the dpdk bf rt schema output file.",
),
"context_out": attr.output(
mandatory = False,
doc = "The name of the dpdk context output file.",
),
"p4info_out": attr.output(
mandatory = False,
doc = "The name of the p4info output file.",
),
"target_out": attr.output(
mandatory = False,
doc = "The name of the target output file, passed to p4c via -o.",
),
"target": attr.string(
doc = "The --target argument passed to p4c (default: bmv2).",
mandatory = False,
default = "", # Use "" so we can recognize implicit target.
),
"arch": attr.string(
doc = "The --arch argument passed to p4c (default: v1model).",
mandatory = False,
default = "v1model",
),
"std": attr.string(
doc = "The --std argument passed to p4c (default: p4-16).",
mandatory = False,
default = "p4-16",
),
"extra_args": attr.string(
doc = "String of additional command line arguments to pass to p4c.",
mandatory = False,
default = "",
),
"p4c_backend": attr.label(
default = Label("@com_github_p4lang_p4c//:p4c_bmv2"),
executable = True,
cfg = "host",
),
"_p4include": attr.label(
default = Label("@com_github_p4lang_p4c//:p4include"),
allow_files = [".p4", ".h"],
),
"_cc_toolchain": attr.label(default = Label("@bazel_tools//tools/cpp:current_cc_toolchain")),
},
incompatible_use_toolchain_transition = True,
toolchains = use_cpp_toolchain(),
)
def _p4_graphs_impl(ctx):
p4c = ctx.executable.p4c_backend
p4file = ctx.file.src
output_file = ctx.outputs.out
if not output_file.path.lower().endswith(".dot"):
fail("The output graph file must have extension .dot")
args = _extract_common_p4c_args(ctx)
graph_dir = output_file.path + "-graphs-dir"
args += ["--graphs-dir", graph_dir]
_run_shell_cmd_with_p4c(
ctx,
command = """
# Create the output directory
mkdir "{graph_dir}"
# Run the compiler
"{p4c}" {p4c_args}
# Merge all output graphs, the * needs to be outside the quotes for globbing
cat "{graph_dir}"/* > {output_file}
""".format(
p4c = p4c.path,
p4c_args = " ".join(args),
graph_dir = graph_dir,
output_file = output_file.path,
),
inputs = _extract_p4c_inputs(ctx),
outputs = [output_file],
progress_message = "Generating the graphs for P4 program %s" % p4file.short_path,
)
p4_graphs = rule(
doc = "Generates the graphs for a P4 program using p4c-graphs, and merges them in a single GraphViz file. This file can be later processed by gvpack and dot.",
implementation = _p4_graphs_impl,
attrs = {
"src": attr.label(
doc = "P4 source file to pass to p4c.",
mandatory = True,
allow_single_file = [".p4"],
),
"deps": attr.label_list(
doc = "Additional P4 dependencies (optional). Use for #include-ed files.",
mandatory = False,
allow_files = [".p4", ".h"],
default = [],
),
"out": attr.output(
doc = "The name of the output DOT file",
mandatory = True,
),
"arch": attr.string(
doc = "The --arch argument passed to p4c (default: v1model).",
mandatory = False,
default = "v1model",
),
"std": attr.string(
doc = "The --std argument passed to p4c (default: p4-16).",
mandatory = False,
default = "p4-16",
),
"extra_args": attr.string(
doc = "String of additional command line arguments to pass to p4c.",
mandatory = False,
default = "",
),
"p4c_backend": attr.label(
default = Label("@com_github_p4lang_p4c//:p4c_graphs"),
executable = True,
cfg = "host",
),
"_p4include": attr.label(
default = Label("@com_github_p4lang_p4c//:p4include"),
allow_files = [".p4", ".h"],
),
"_cc_toolchain": attr.label(default = Label("@bazel_tools//tools/cpp:current_cc_toolchain")),
},
incompatible_use_toolchain_transition = True,
toolchains = use_cpp_toolchain(),
)