| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- // 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_BASE_BLOCK_VALUE_STORE_H_
- #define CARBON_TOOLCHAIN_BASE_BLOCK_VALUE_STORE_H_
- #include <type_traits>
- #include "common/check.h"
- #include "common/set.h"
- #include "llvm/Support/Allocator.h"
- #include "toolchain/base/id_tag.h"
- #include "toolchain/base/mem_usage.h"
- #include "toolchain/base/value_store.h"
- #include "toolchain/base/yaml.h"
- namespace Carbon::SemIR {
- // Provides a block-based ValueStore, which uses slab allocation of added
- // blocks. This allows references to values to outlast vector resizes that might
- // otherwise invalidate references.
- //
- // BlockValueStore is used as-is, but there are also children that expose the
- // protected members for type-specific functionality.
- template <typename IdT, typename ElementT, typename TagIdT = Untagged>
- class BlockValueStore
- : public Yaml::Printable<BlockValueStore<IdT, ElementT, TagIdT>> {
- public:
- using IdType = IdT;
- using IdTagType = IdTag<IdT, TagIdT>;
- using ElementType = ElementT;
- using RefType = llvm::MutableArrayRef<ElementT>;
- using ConstRefType = llvm::ArrayRef<ElementT>;
- explicit BlockValueStore(llvm::BumpPtrAllocator& allocator,
- IdTagType::TagIdType tag_id,
- int32_t initial_reserved_ids = 0)
- requires(!IdTagIsUntagged<IdTagType>)
- : allocator_(&allocator), values_(tag_id, initial_reserved_ids) {
- auto empty = RefType();
- auto empty_val = canonical_blocks_.Insert(
- empty, [&] { return values_.Add(empty); }, KeyContext(this));
- CARBON_CHECK(empty_val.key() == IdT::Empty);
- }
- // Adds a block with the given content, returning an ID to reference it.
- auto Add(ConstRefType content) -> IdT {
- if (content.empty()) {
- return IdT::Empty;
- }
- return values_.Add(AllocateCopy(content));
- }
- // Returns the requested block.
- auto Get(IdT id) const -> ConstRefType { return values_.Get(id); }
- // Returns a mutable view of the requested block. This operation should be
- // avoided where possible; we generally want blocks to be immutable once
- // created.
- auto GetMutable(IdT id) -> RefType { return values_.Get(id); }
- // Returns a new block formed by applying `transform(elem_id)` to each element
- // in the specified block.
- template <typename TransformFnT>
- auto Transform(IdT id, TransformFnT transform) -> IdT {
- llvm::SmallVector<ElementType> block(llvm::map_range(Get(id), transform));
- return Add(block);
- }
- // Adds a block or finds an existing canonical block with the given content,
- // and returns an ID to reference it.
- auto AddCanonical(ConstRefType content) -> IdT {
- if (content.empty()) {
- return IdT::Empty;
- }
- auto result = canonical_blocks_.Insert(
- content, [&] { return Add(content); }, KeyContext(this));
- return result.key();
- }
- // Promotes an existing block ID to a canonical block ID, or returns an
- // existing canonical block ID if the block was already added. The specified
- // block must not be modified after this point.
- auto MakeCanonical(IdT id) -> IdT {
- // Get the content first so that we don't have unnecessary translation of
- // the `id` into the content during insertion.
- auto result = canonical_blocks_.Insert(
- Get(id), [id] { return id; }, KeyContext(this));
- return result.key();
- }
- auto OutputYaml() const -> Yaml::OutputMapping {
- return Yaml::OutputMapping([&](Yaml::OutputMapping::Map map) {
- for (auto [block_id, block] : values_.enumerate()) {
- map.Add(PrintToString(block_id),
- Yaml::OutputMapping([&](Yaml::OutputMapping::Map map) {
- for (auto [i, elem_id] : llvm::enumerate(block)) {
- map.Add(llvm::itostr(i), Yaml::OutputScalar(elem_id));
- }
- }));
- }
- });
- }
- // 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, "canonical_blocks_"),
- canonical_blocks_, KeyContext(this));
- }
- auto size() const -> int { return values_.size(); }
- auto GetRawIndex(IdT id) const -> int { return values_.GetRawIndex(id); }
- protected:
- // Allocates a copy of the given data using our slab allocator.
- auto AllocateCopy(ConstRefType data) -> RefType {
- auto result = AllocateUninitialized(data.size());
- std::uninitialized_copy(data.begin(), data.end(), result.begin());
- return result;
- }
- // Allocates an uninitialized array using our slab allocator.
- auto AllocateUninitialized(size_t size) -> RefType {
- // We're not going to run a destructor, so ensure that's OK.
- static_assert(std::is_trivially_destructible_v<ElementType>);
- auto storage = static_cast<ElementType*>(
- allocator_->Allocate(size * sizeof(ElementType), alignof(ElementType)));
- return RefType(storage, size);
- }
- // Allow children to have more complex value handling.
- auto values() -> ValueStore<IdT, RefType, TagIdT>& { return values_; }
- private:
- class KeyContext;
- llvm::BumpPtrAllocator* allocator_;
- ValueStore<IdT, RefType, TagIdT> values_;
- Set<IdT, /*SmallSize=*/0, KeyContext> canonical_blocks_;
- };
- template <typename IdT, typename ElementT, typename TagIdT>
- class BlockValueStore<IdT, ElementT, TagIdT>::KeyContext
- : public TranslatingKeyContext<KeyContext> {
- public:
- explicit KeyContext(const BlockValueStore* store) : store_(store) {}
- auto TranslateKey(IdT id) const -> ConstRefType { return store_->Get(id); }
- private:
- const BlockValueStore* store_;
- };
- } // namespace Carbon::SemIR
- #endif // CARBON_TOOLCHAIN_BASE_BLOCK_VALUE_STORE_H_
|