| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- // 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_TOOLCHAIN_SEM_IR_CONSTANT_H_
- #define CARBON_TOOLCHAIN_SEM_IR_CONSTANT_H_
- #include "common/map.h"
- #include "toolchain/base/yaml.h"
- #include "toolchain/sem_ir/ids.h"
- #include "toolchain/sem_ir/inst.h"
- namespace Carbon::SemIR {
- // The kinds of symbolic bindings that a constant might depend on. These are
- // ordered from least to most dependent, so that the dependence of an operation
- // can typically be computed by taking the maximum of the dependences of its
- // operands.
- enum class ConstantDependence : uint8_t {
- // This constant's value is known concretely, and does not depend on any
- // symbolic binding.
- None,
- // The only symbolic binding that this constant depends on is `.Self`.
- PeriodSelf,
- // The only symbolic bindings that this constant depends on are checked
- // generic bindings.
- Checked,
- // This symbolic binding depends on a template-dependent value, such as a
- // template parameter.
- Template,
- };
- // Information about a symbolic constant value. These are indexed by
- // `ConstantId`s for which `is_symbolic` is true.
- struct SymbolicConstant : Printable<SymbolicConstant> {
- // The constant instruction that defines the value of this symbolic constant.
- InstId inst_id;
- // The enclosing generic. If this is `None`, then this is an abstract
- // symbolic constant, such as a constant instruction in the constants block,
- // rather than one associated with a particular generic.
- GenericId generic_id;
- // The index of this symbolic constant within the generic's list of symbolic
- // constants, or `None` if `generic_id` is `None`.
- GenericInstIndex index;
- // The kind of dependence this symbolic constant exhibits. Should never be
- // `None`.
- ConstantDependence dependence;
- auto Print(llvm::raw_ostream& out) const -> void {
- out << "{inst: " << inst_id << ", generic: " << generic_id
- << ", index: " << index << ", kind: ";
- switch (dependence) {
- case ConstantDependence::None:
- out << "<error: concrete>";
- break;
- case ConstantDependence::PeriodSelf:
- out << "self";
- break;
- case ConstantDependence::Checked:
- out << "checked";
- break;
- case ConstantDependence::Template:
- out << "template";
- break;
- }
- out << "}";
- }
- };
- // Provides a ValueStore wrapper for tracking the constant values of
- // instructions.
- class ConstantValueStore {
- public:
- explicit ConstantValueStore(ConstantId default_value)
- : default_(default_value) {}
- // Returns the constant value of the requested instruction, which is default_
- // if unallocated.
- auto Get(InstId inst_id) const -> ConstantId {
- CARBON_DCHECK(inst_id.index >= 0);
- return static_cast<size_t>(inst_id.index) >= values_.size()
- ? default_
- : values_[inst_id.index];
- }
- // Sets the constant value of the given instruction, or sets that it is known
- // to not be a constant.
- auto Set(InstId inst_id, ConstantId const_id) -> void {
- CARBON_DCHECK(inst_id.index >= 0);
- if (static_cast<size_t>(inst_id.index) >= values_.size()) {
- values_.resize(inst_id.index + 1, default_);
- }
- values_[inst_id.index] = const_id;
- }
- // Gets the instruction ID that defines the value of the given constant.
- // Returns `None` if the constant ID is non-constant. Requires
- // `const_id.has_value()`.
- auto GetInstId(ConstantId const_id) const -> InstId {
- if (const_id.is_concrete()) {
- return const_id.concrete_inst_id();
- }
- if (const_id.is_symbolic()) {
- return GetSymbolicConstant(const_id).inst_id;
- }
- return InstId::None;
- }
- // Gets the instruction ID that defines the value of the given constant.
- // Returns `None` if the constant ID is non-constant or `None`.
- auto GetInstIdIfValid(ConstantId const_id) const -> InstId {
- return const_id.has_value() ? GetInstId(const_id) : InstId::None;
- }
- // Given an instruction, returns the unique constant instruction that is
- // equivalent to it. Returns `None` for a non-constant instruction.
- auto GetConstantInstId(InstId inst_id) const -> InstId {
- return GetInstId(Get(inst_id));
- }
- auto AddSymbolicConstant(SymbolicConstant constant) -> ConstantId {
- symbolic_constants_.push_back(constant);
- return ConstantId::ForSymbolicConstantIndex(symbolic_constants_.size() - 1);
- }
- auto GetSymbolicConstant(ConstantId const_id) -> SymbolicConstant& {
- return symbolic_constants_[const_id.symbolic_index()];
- }
- auto GetSymbolicConstant(ConstantId const_id) const
- -> const SymbolicConstant& {
- return symbolic_constants_[const_id.symbolic_index()];
- }
- // Get the dependence of the given constant.
- auto GetDependence(ConstantId const_id) const -> ConstantDependence {
- return const_id.is_symbolic() ? GetSymbolicConstant(const_id).dependence
- : ConstantDependence::None;
- }
- // Returns true for symbolic constants other than those that are only symbolic
- // because they depend on `.Self`.
- auto DependsOnGenericParameter(ConstantId const_id) const -> bool {
- return GetDependence(const_id) > ConstantDependence::PeriodSelf;
- }
- // Collects memory usage of members.
- auto CollectMemUsage(MemUsage& mem_usage, llvm::StringRef label) const
- -> void {
- mem_usage.Collect(MemUsage::ConcatLabel(label, "values_"), values_);
- mem_usage.Collect(MemUsage::ConcatLabel(label, "symbolic_constants_"),
- symbolic_constants_);
- }
- // Makes an iterable range over pairs of the instruction id and constant value
- // id for each value in the store.
- auto enumerate() const -> auto {
- auto index_to_id = [](auto pair) -> std::pair<InstId, ConstantId> {
- auto [index, value] = pair;
- return std::pair<InstId, ConstantId>(InstId(index), value);
- };
- return llvm::map_range(llvm::enumerate(values_), index_to_id);
- }
- // Returns the symbolic constants mapping as an ArrayRef whose keys are
- // symbolic indexes of constants.
- auto symbolic_constants() const -> llvm::ArrayRef<SymbolicConstant> {
- return symbolic_constants_;
- }
- private:
- const ConstantId default_;
- // A mapping from `InstId::index` to the corresponding constant value. This is
- // expected to be sparse, and may be smaller than the list of instructions if
- // there are trailing non-constant instructions.
- //
- // Set inline size to 0 because these will typically be too large for the
- // stack, while this does make File smaller.
- llvm::SmallVector<ConstantId, 0> values_;
- // A mapping from a symbolic constant ID index to information about the
- // symbolic constant. For a concrete constant, the only information that we
- // track is the instruction ID, which is stored directly within the
- // `ConstantId`. For a symbolic constant, we also track information about
- // where the constant was used, which is stored here.
- llvm::SmallVector<SymbolicConstant, 0> symbolic_constants_;
- };
- // Provides storage for instructions representing deduplicated global constants.
- class ConstantStore {
- public:
- explicit ConstantStore(File* sem_ir) : sem_ir_(sem_ir) {}
- // Adds a new constant instruction, or gets the existing constant with this
- // value. Returns the ID of the constant.
- //
- // This updates `sem_ir->insts()` and `sem_ir->constant_values()` if the
- // constant is new.
- auto GetOrAdd(Inst inst, ConstantDependence dependence) -> ConstantId;
- // Collects memory usage of members.
- auto CollectMemUsage(MemUsage& mem_usage, llvm::StringRef label) const
- -> void {
- mem_usage.Collect(MemUsage::ConcatLabel(label, "map_"), map_);
- mem_usage.Collect(MemUsage::ConcatLabel(label, "constants_"), constants_);
- }
- // Returns a copy of the constant IDs as a vector, in an arbitrary but
- // stable order. This should not be used anywhere performance-sensitive.
- auto array_ref() const -> llvm::ArrayRef<InstId> { return constants_; }
- auto size() const -> int { return constants_.size(); }
- private:
- File* const sem_ir_;
- Map<Inst, ConstantId> map_;
- llvm::SmallVector<InstId, 0> constants_;
- };
- } // namespace Carbon::SemIR
- #endif // CARBON_TOOLCHAIN_SEM_IR_CONSTANT_H_
|