Files
carbon-lang/toolchain/parse/BUILD
T
Jon Ross-Perkins c8b30d3eec Split Parse out to its own target. (#3556)
This is mirroring the structure of codegen/codegen.h, lower/lower.h, and
check/check.h. I recently did lex/lex.h, so parse/parse.h is the last.
Now, the directory's main API file is eponymous with the directory.

I could've used a friend function to avoid making the Tree constructor
public, but in other places we make less use of `friend`, just leaving
things public. This felt more consistent, and simple because it only
affects the constructor.
2024-01-03 19:44:05 +00:00

201 lines
4.7 KiB
Python

# Part of the Carbon Language project, under the Apache License v2.0 with LLVM
# Exceptions. See /LICENSE for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//bazel/sh_run:rules.bzl", "glob_sh_run")
load("//testing/fuzzing:rules.bzl", "cc_fuzz_test")
package(default_visibility = ["//visibility:public"])
filegroup(
name = "testdata",
data = glob(["testdata/**/*.carbon"]),
)
cc_library(
name = "node_kind",
srcs = ["node_kind.cpp"],
hdrs = [
"node_ids.h",
"node_kind.h",
"typed_nodes.h",
],
textual_hdrs = ["node_kind.def"],
deps = [
"//common:check",
"//common:enum_base",
"//toolchain/base:index_base",
"//toolchain/lex:token_kind",
"@llvm-project//llvm:Support",
],
)
cc_test(
name = "typed_nodes_test",
size = "small",
srcs = ["typed_nodes_test.cpp"],
deps = [
":node_kind",
":parse",
":tree",
"//testing/base:gtest_main",
"//toolchain/diagnostics:diagnostic_emitter",
"//toolchain/diagnostics:mocks",
"//toolchain/lex",
"//toolchain/lex:tokenized_buffer",
"@com_google_googletest//:gtest",
],
)
cc_library(
name = "parse",
srcs = [
"context.cpp",
"context.h",
"parse.cpp",
] +
# Glob handler files to avoid missing any.
glob([
"handle_*.cpp",
]),
hdrs = ["parse.h"],
deps = [
":node_kind",
":precedence",
":state",
":tree",
"//common:check",
"//common:ostream",
"//common:vlog",
"//toolchain/base:pretty_stack_trace_function",
"//toolchain/base:value_store",
"//toolchain/diagnostics:diagnostic_emitter",
"//toolchain/lex:token_kind",
"//toolchain/lex:tokenized_buffer",
"@llvm-project//llvm:Support",
],
)
cc_library(
name = "state",
srcs = ["state.cpp"],
hdrs = ["state.h"],
textual_hdrs = ["state.def"],
deps = ["//common:enum_base"],
)
cc_library(
name = "tree",
srcs = [
"extract.cpp",
"tree.cpp",
],
hdrs = ["tree.h"],
deps = [
":node_kind",
"//common:check",
"//common:error",
"//common:ostream",
"//common:struct_reflection",
"//toolchain/base:pretty_stack_trace_function",
"//toolchain/diagnostics:diagnostic_emitter",
"//toolchain/lex:tokenized_buffer",
"@llvm-project//llvm:Support",
],
)
cc_test(
name = "tree_test",
size = "small",
srcs = ["tree_test.cpp"],
deps = [
":node_kind",
":parse",
":tree",
"//common:ostream",
"//testing/base:gtest_main",
"//testing/base:test_raw_ostream",
"//toolchain/base:value_store",
"//toolchain/diagnostics:diagnostic_emitter",
"//toolchain/diagnostics:mocks",
"//toolchain/lex",
"//toolchain/lex:tokenized_buffer",
"//toolchain/testing:yaml_test_helpers",
"@com_google_googletest//:gtest",
"@llvm-project//llvm:Support",
],
)
cc_fuzz_test(
name = "parse_fuzzer",
size = "small",
srcs = ["parse_fuzzer.cpp"],
corpus = glob(["fuzzer_corpus/*"]),
deps = [
":parse",
"//common:check",
"//toolchain/base:value_store",
"//toolchain/diagnostics:diagnostic_emitter",
"//toolchain/diagnostics:null_diagnostics",
"//toolchain/lex",
"@llvm-project//llvm:Support",
],
)
cc_library(
name = "tree_node_location_translator",
hdrs = ["tree_node_location_translator.h"],
deps = [
":tree",
"//toolchain/diagnostics:diagnostic_emitter",
"//toolchain/lex:tokenized_buffer",
],
)
cc_library(
name = "precedence",
srcs = ["precedence.cpp"],
hdrs = ["precedence.h"],
deps = [
"//common:check",
"//toolchain/lex:token_kind",
"@llvm-project//llvm:Support",
],
)
cc_test(
name = "precedence_test",
size = "small",
srcs = ["precedence_test.cpp"],
deps = [
":precedence",
"//testing/base:gtest_main",
"//toolchain/lex:token_kind",
"@com_google_googletest//:gtest",
],
)
glob_sh_run(
args = [
"$(location //toolchain/driver:carbon)",
"compile",
"--phase=parse",
"--dump-parse-tree",
],
data = ["//toolchain/driver:carbon"],
file_exts = ["carbon"],
)
glob_sh_run(
args = [
"$(location //toolchain/driver:carbon)",
"-v",
"compile",
"--phase=parse",
],
data = ["//toolchain/driver:carbon"],
file_exts = ["carbon"],
run_ext = "verbose",
)