| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- # 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")
- package(default_visibility = ["//explorer/parse_and_execute:__pkg__"])
- cc_library(
- name = "action",
- srcs = [
- "action.cpp",
- ],
- hdrs = [
- "action.h",
- ],
- deps = [
- ":dictionary",
- ":heap_allocation_interface",
- ":stack",
- "//common:check",
- "//common:error",
- "//common:ostream",
- "//explorer/ast",
- "//explorer/base:arena",
- "//explorer/base:error_builders",
- "//explorer/base:nonnull",
- "//explorer/base:print_as_id",
- "//explorer/base:source_location",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "action_stack",
- srcs = [
- "action_stack.cpp",
- ],
- hdrs = [
- "action_stack.h",
- ],
- deps = [
- ":action",
- ":stack",
- "//common:check",
- "//common:error",
- "//common:ostream",
- "//explorer/ast",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "dictionary",
- hdrs = ["dictionary.h"],
- deps = ["//explorer/base:arena"],
- )
- cc_library(
- name = "exec_program",
- srcs = ["exec_program.cpp"],
- hdrs = ["exec_program.h"],
- deps = [
- ":interpreter",
- ":resolve_control_flow",
- ":resolve_names",
- ":resolve_unformed",
- ":type_checker",
- "//common:check",
- "//common:error",
- "//common:ostream",
- "//explorer/ast",
- "//explorer/base:arena",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "heap",
- srcs = ["heap.cpp"],
- hdrs = ["heap.h"],
- deps = [
- ":action",
- ":heap_allocation_interface",
- "//common:check",
- "//common:error",
- "//common:ostream",
- "//explorer/ast",
- "//explorer/base:error_builders",
- "//explorer/base:nonnull",
- "//explorer/base:source_location",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "heap_allocation_interface",
- hdrs = ["heap_allocation_interface.h"],
- deps = [
- "//common:error",
- "//explorer/ast",
- "//explorer/base:arena",
- "//explorer/base:nonnull",
- "//explorer/base:source_location",
- ],
- )
- cc_library(
- name = "interpreter",
- srcs = [
- "interpreter.cpp",
- ],
- hdrs = [
- "interpreter.h",
- ],
- deps = [
- ":action",
- ":action_stack",
- ":heap",
- ":pattern_match",
- ":stack",
- ":type_utils",
- "//common:check",
- "//common:error",
- "//common:ostream",
- "//explorer/ast",
- "//explorer/ast:expression_category",
- "//explorer/base:arena",
- "//explorer/base:error_builders",
- "//explorer/base:print_as_id",
- "//explorer/base:source_location",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "resolve_control_flow",
- srcs = ["resolve_control_flow.cpp"],
- hdrs = ["resolve_control_flow.h"],
- deps = [
- "//common:check",
- "//explorer/ast",
- "//explorer/base:error_builders",
- "//explorer/base:nonnull",
- "//explorer/base:print_as_id",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "resolve_names",
- srcs = ["resolve_names.cpp"],
- hdrs = ["resolve_names.h"],
- deps = [
- ":stack_space",
- "//common:check",
- "//explorer/ast",
- "//explorer/ast:static_scope",
- "//explorer/base:arena",
- "//explorer/base:print_as_id",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "stack",
- hdrs = ["stack.h"],
- deps = ["//common:check"],
- )
- cc_library(
- name = "pattern_analysis",
- srcs = [
- "pattern_analysis.cpp",
- ],
- hdrs = [
- "pattern_analysis.h",
- ],
- deps = [
- ":action",
- "//common:error",
- "//explorer/ast",
- "//explorer/base:nonnull",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "type_checker",
- srcs = [
- "builtins.cpp",
- "impl_scope.cpp",
- "matching_impl_set.cpp",
- "type_checker.cpp",
- ],
- hdrs = [
- "builtins.h",
- "impl_scope.h",
- "matching_impl_set.h",
- "type_checker.h",
- ],
- textual_hdrs = [
- "builtins.def",
- ],
- deps = [
- ":action",
- ":dictionary",
- ":interpreter",
- ":pattern_analysis",
- ":pattern_match",
- ":stack_space",
- ":type_structure",
- ":type_utils",
- "//common:check",
- "//common:enum_base",
- "//common:error",
- "//common:ostream",
- "//explorer/ast",
- "//explorer/base:arena",
- "//explorer/base:error_builders",
- "//explorer/base:nonnull",
- "//explorer/base:print_as_id",
- "//explorer/base:source_location",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "resolve_unformed",
- srcs = [
- "resolve_unformed.cpp",
- ],
- hdrs = [
- "resolve_unformed.h",
- ],
- deps = [
- ":stack_space",
- "//common:check",
- "//explorer/ast",
- "//explorer/ast:static_scope",
- "//explorer/base:error_builders",
- "//explorer/base:nonnull",
- "//explorer/base:print_as_id",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "stack_space",
- srcs = ["stack_space.cpp"],
- hdrs = ["stack_space.h"],
- deps = [
- "//common:check",
- "//common:error",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "type_structure",
- srcs = [
- "type_structure.cpp",
- ],
- hdrs = [
- "type_structure.h",
- ],
- deps = [
- "//common:ostream",
- "//explorer/ast",
- "//explorer/ast:expression_category",
- "//explorer/base:nonnull",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "type_utils",
- srcs = [
- "type_utils.cpp",
- ],
- hdrs = [
- "type_utils.h",
- ],
- deps = [
- "//explorer/ast",
- "//explorer/base:nonnull",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "pattern_match",
- srcs = [
- "pattern_match.cpp",
- ],
- hdrs = [
- "pattern_match.h",
- ],
- deps = [
- ":action",
- ":type_utils",
- "//explorer/ast",
- "//explorer/base:arena",
- "//explorer/base:nonnull",
- "//explorer/base:source_location",
- "//explorer/base:trace_stream",
- "@llvm-project//llvm:Support",
- ],
- )
|