| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- # 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("//bazel/cc_rules:defs.bzl", "cc_binary", "cc_library", "cc_test")
- load("//testing/fuzzing:rules.bzl", "cc_fuzz_test")
- package(default_visibility = ["//visibility:public"])
- filegroup(
- name = "testdata",
- srcs = glob(["testdata/**/*.carbon"]),
- )
- cc_library(
- name = "token_kind",
- srcs = ["token_kind.cpp"],
- hdrs = ["token_kind.h"],
- textual_hdrs = ["token_kind.def"],
- deps = [
- "//common:check",
- "//common:enum_base",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_test(
- name = "token_kind_test",
- size = "small",
- srcs = ["token_kind_test.cpp"],
- deps = [
- ":token_kind",
- "//testing/base:gtest_main",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "character_set",
- hdrs = ["character_set.h"],
- deps = ["@llvm-project//llvm:Support"],
- )
- cc_library(
- name = "helpers",
- srcs = ["helpers.cpp"],
- hdrs = ["helpers.h"],
- deps = [
- "//toolchain/diagnostics:diagnostic_emitter",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "test_helpers",
- testonly = 1,
- hdrs = ["test_helpers.h"],
- deps = [
- "//common:check",
- "//common:string_helpers",
- "//toolchain/diagnostics:diagnostic_emitter",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "numeric_literal",
- srcs = ["numeric_literal.cpp"],
- hdrs = ["numeric_literal.h"],
- deps = [
- ":character_set",
- ":helpers",
- "//common:check",
- "//toolchain/diagnostics:diagnostic_emitter",
- "//toolchain/diagnostics:format_providers",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_binary(
- name = "numeric_literal_benchmark",
- testonly = 1,
- srcs = ["numeric_literal_benchmark.cpp"],
- deps = [
- ":numeric_literal",
- "//common:check",
- "//testing/base:benchmark_main",
- "//toolchain/diagnostics:null_diagnostics",
- "@google_benchmark//:benchmark",
- ],
- )
- cc_test(
- name = "numeric_literal_test",
- size = "small",
- srcs = ["numeric_literal_test.cpp"],
- deps = [
- ":numeric_literal",
- ":test_helpers",
- "//common:check",
- "//common:ostream",
- "//testing/base:gtest_main",
- "//toolchain/diagnostics:diagnostic_emitter",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_fuzz_test(
- name = "numeric_literal_fuzzer",
- size = "small",
- srcs = ["numeric_literal_fuzzer.cpp"],
- corpus = glob(["fuzzer_corpus/numeric_literal/*"]),
- deps = [
- ":numeric_literal",
- "//testing/fuzzing:libfuzzer_header",
- "//toolchain/diagnostics:diagnostic_emitter",
- "//toolchain/diagnostics:null_diagnostics",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "string_literal",
- srcs = ["string_literal.cpp"],
- hdrs = ["string_literal.h"],
- deps = [
- ":character_set",
- ":helpers",
- "//common:check",
- "//toolchain/diagnostics:diagnostic_emitter",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_binary(
- name = "string_literal_benchmark",
- testonly = 1,
- srcs = ["string_literal_benchmark.cpp"],
- deps = [
- ":string_literal",
- "//testing/base:benchmark_main",
- "//toolchain/diagnostics:null_diagnostics",
- "@google_benchmark//:benchmark",
- ],
- )
- cc_test(
- name = "string_literal_test",
- size = "small",
- srcs = ["string_literal_test.cpp"],
- deps = [
- ":string_literal",
- ":test_helpers",
- "//common:check",
- "//common:ostream",
- "//testing/base:gtest_main",
- "//toolchain/diagnostics:diagnostic_emitter",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_fuzz_test(
- name = "string_literal_fuzzer",
- size = "small",
- srcs = ["string_literal_fuzzer.cpp"],
- corpus = glob(["fuzzer_corpus/string_literal/*"]),
- deps = [
- ":string_literal",
- "//common:check",
- "//testing/fuzzing:libfuzzer_header",
- "//toolchain/diagnostics:diagnostic_emitter",
- "//toolchain/diagnostics:null_diagnostics",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "lex",
- srcs = ["lex.cpp"],
- hdrs = ["lex.h"],
- deps = [
- ":character_set",
- ":dump",
- ":helpers",
- ":numeric_literal",
- ":string_literal",
- ":token_index",
- ":token_kind",
- ":tokenized_buffer",
- "//common:check",
- "//common:variant_helpers",
- "//toolchain/base:shared_value_stores",
- "//toolchain/diagnostics:diagnostic_emitter",
- "//toolchain/source:source_buffer",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "dump",
- srcs = ["dump.cpp"],
- hdrs = ["dump.h"],
- deps = [
- ":tokenized_buffer",
- "//common:ostream",
- "//common:raw_string_ostream",
- ],
- # Always link dump methods.
- alwayslink = 1,
- )
- cc_library(
- name = "token_index",
- hdrs = ["token_index.h"],
- deps = [
- ":token_kind",
- "//toolchain/base:index_base",
- ],
- )
- cc_library(
- name = "tokenized_buffer",
- srcs = ["tokenized_buffer.cpp"],
- hdrs = ["tokenized_buffer.h"],
- deps = [
- ":character_set",
- ":helpers",
- ":numeric_literal",
- ":string_literal",
- ":token_index",
- ":token_kind",
- "//common:check",
- "//common:ostream",
- "//common:string_helpers",
- "//toolchain/base:index_base",
- "//toolchain/base:mem_usage",
- "//toolchain/base:shared_value_stores",
- "//toolchain/diagnostics:diagnostic_emitter",
- "//toolchain/source:source_buffer",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "tokenized_buffer_test_helpers",
- testonly = 1,
- hdrs = ["tokenized_buffer_test_helpers.h"],
- deps = [
- ":lex",
- ":tokenized_buffer",
- "//common:check",
- "//toolchain/base:shared_value_stores",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_test(
- name = "tokenized_buffer_test",
- size = "small",
- srcs = ["tokenized_buffer_test.cpp"],
- deps = [
- ":lex",
- ":token_kind",
- ":tokenized_buffer",
- ":tokenized_buffer_test_helpers",
- "//common:raw_string_ostream",
- "//testing/base:gtest_main",
- "//toolchain/base:shared_value_stores",
- "//toolchain/diagnostics:diagnostic_emitter",
- "//toolchain/diagnostics:mocks",
- "//toolchain/testing:compile_helper",
- "//toolchain/testing:yaml_test_helpers",
- "@googletest//:gtest",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_fuzz_test(
- name = "tokenized_buffer_fuzzer",
- size = "small",
- srcs = ["tokenized_buffer_fuzzer.cpp"],
- corpus = glob(["fuzzer_corpus/tokenized_buffer/*"]),
- deps = [
- ":lex",
- "//common:check",
- "//testing/fuzzing:libfuzzer_header",
- "//toolchain/base:shared_value_stores",
- "//toolchain/diagnostics:diagnostic_emitter",
- "//toolchain/diagnostics:null_diagnostics",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_binary(
- name = "tokenized_buffer_benchmark",
- testonly = 1,
- srcs = ["tokenized_buffer_benchmark.cpp"],
- deps = [
- ":lex",
- ":token_kind",
- ":tokenized_buffer",
- "//common:check",
- "//common:raw_string_ostream",
- "//testing/base:benchmark_main",
- "//testing/base:source_gen_lib",
- "//toolchain/base:shared_value_stores",
- "//toolchain/diagnostics:diagnostic_emitter",
- "//toolchain/diagnostics:null_diagnostics",
- "@abseil-cpp//absl/random",
- "@google_benchmark//:benchmark",
- "@llvm-project//llvm:Support",
- ],
- )
|