| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- // 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
- #ifndef CARBON_EXPLORER_INTERPRETER_BUILTINS_H_
- #define CARBON_EXPLORER_INTERPRETER_BUILTINS_H_
- #include <array>
- #include <optional>
- #include <string_view>
- #include "common/error.h"
- #include "explorer/ast/declaration.h"
- #include "explorer/ast/expression.h"
- #include "explorer/common/nonnull.h"
- #include "explorer/common/source_location.h"
- #include "explorer/interpreter/value.h"
- namespace Carbon {
- class Builtins {
- public:
- explicit Builtins() = default;
- enum class Builtin {
- // Conversions.
- As,
- ImplicitAs,
- // Comparison.
- EqWith,
- LessWith,
- LessEqWith,
- GreaterWith,
- GreaterEqWith,
- CompareWith,
- // Arithmetic.
- Negate,
- AddWith,
- SubWith,
- MulWith,
- DivWith,
- ModWith,
- // Bitwise and shift.
- BitComplement,
- BitAndWith,
- BitOrWith,
- BitXorWith,
- LeftShiftWith,
- RightShiftWith,
- Last = RightShiftWith
- };
- // TODO: In C++20, replace with `using enum Builtin;`.
- static constexpr Builtin As = Builtin::As;
- static constexpr Builtin ImplicitAs = Builtin::ImplicitAs;
- static constexpr Builtin EqWith = Builtin::EqWith;
- static constexpr Builtin LessWith = Builtin::LessWith;
- static constexpr Builtin LessEqWith = Builtin::LessEqWith;
- static constexpr Builtin GreaterWith = Builtin::GreaterWith;
- static constexpr Builtin GreaterEqWith = Builtin::GreaterEqWith;
- static constexpr Builtin Negate = Builtin::Negate;
- static constexpr Builtin AddWith = Builtin::AddWith;
- static constexpr Builtin SubWith = Builtin::SubWith;
- static constexpr Builtin MulWith = Builtin::MulWith;
- static constexpr Builtin DivWith = Builtin::DivWith;
- static constexpr Builtin ModWith = Builtin::ModWith;
- static constexpr Builtin BitComplement = Builtin::BitComplement;
- static constexpr Builtin BitAndWith = Builtin::BitAndWith;
- static constexpr Builtin BitOrWith = Builtin::BitOrWith;
- static constexpr Builtin BitXorWith = Builtin::BitXorWith;
- static constexpr Builtin LeftShiftWith = Builtin::LeftShiftWith;
- static constexpr Builtin RightShiftWith = Builtin::RightShiftWith;
- static constexpr Builtin CompareWith = Builtin::CompareWith;
- // Register a declaration that might be a builtin.
- void Register(Nonnull<const Declaration*> decl);
- // Get a registered builtin.
- auto Get(SourceLocation source_loc, Builtin builtin) const
- -> ErrorOr<Nonnull<const Declaration*>>;
- // Get the source name of a builtin.
- static constexpr auto GetName(Builtin builtin) -> std::string_view {
- return BuiltinNames[static_cast<int>(builtin)];
- }
- private:
- static constexpr int NumBuiltins = static_cast<int>(Builtin::Last) + 1;
- static constexpr const char* BuiltinNames[NumBuiltins] = {
- "As", "ImplicitAs", "EqWith", "LessWith",
- "LessEqWith", "GreaterWith", "GreaterEqWith", "CompareWith",
- "Negate", "AddWith", "SubWith", "MulWith",
- "DivWith", "ModWith", "BitComplement", "BitAndWith",
- "BitOrWith", "BitXorWith", "LeftShiftWith", "RightShiftWith"};
- std::optional<Nonnull<const Declaration*>> builtins_[NumBuiltins] = {};
- };
- } // namespace Carbon
- #endif // CARBON_EXPLORER_INTERPRETER_BUILTINS_H_
|