mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:30:14 +01:00
Add `Dependent` value and initializing representations for types whose representations are unknown because they are dependent. When generating SemIR in such cases, use a worst-case initializing representation that both provides a destination address and also propagates a potential result value. Use this to fix incorrect lowering and lowering crashes for specific functions involving generic types that don't use a copy value representation. In lowering, be careful to distinguish between whether the initializing representation for the generic return type uses a return slot (which affects whether the SemIR declaration and call have one) and whether the initializing representation for the specific return type uses a return slot (which affects whether the LLVM IR declaration and call have one).
106 lines
3.6 KiB
C++
106 lines
3.6 KiB
C++
// 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_CHECK_PENDING_BLOCK_H_
|
|
#define CARBON_TOOLCHAIN_CHECK_PENDING_BLOCK_H_
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "toolchain/check/context.h"
|
|
#include "toolchain/check/inst.h"
|
|
#include "toolchain/sem_ir/ids.h"
|
|
#include "toolchain/sem_ir/inst.h"
|
|
|
|
namespace Carbon::Check {
|
|
|
|
// A block of code that contains pending instructions that might be needed but
|
|
// that haven't been inserted yet.
|
|
class PendingBlock {
|
|
public:
|
|
// `context` must not be null.
|
|
explicit PendingBlock(Context* context) : context_(context) {}
|
|
|
|
PendingBlock(const PendingBlock&) = delete;
|
|
auto operator=(const PendingBlock&) -> PendingBlock& = delete;
|
|
|
|
// A scope in which we will tentatively add instructions to a pending block.
|
|
// If we leave the scope without inserting or merging the block, instructions
|
|
// added after this point will be removed again.
|
|
class DiscardUnusedInstsScope {
|
|
public:
|
|
// If `block` is not null, enters the scope. If `block` is null, this object
|
|
// has no effect.
|
|
explicit DiscardUnusedInstsScope(PendingBlock* block)
|
|
: block_(block), size_(block ? block->insts_.size() : 0) {}
|
|
~DiscardUnusedInstsScope() {
|
|
if (block_ && block_->insts_.size() > size_) {
|
|
block_->insts_.truncate(size_);
|
|
}
|
|
}
|
|
|
|
private:
|
|
PendingBlock* block_;
|
|
size_t size_;
|
|
};
|
|
|
|
template <typename InstT, typename LocT>
|
|
requires(std::convertible_to<LocT, SemIR::LocId>)
|
|
auto AddInst(LocT loc_id, InstT inst) -> SemIR::InstId {
|
|
auto inst_id = AddInstInNoBlock(*context_, loc_id, inst);
|
|
insts_.push_back(inst_id);
|
|
return inst_id;
|
|
}
|
|
|
|
template <typename InstT, typename LocT>
|
|
requires(std::convertible_to<LocT, SemIR::LocId>)
|
|
auto AddInstWithCleanup(LocT loc_id, InstT inst) -> SemIR::InstId {
|
|
auto inst_id = AddInstWithCleanupInNoBlock(*context_, loc_id, inst);
|
|
insts_.push_back(inst_id);
|
|
return inst_id;
|
|
}
|
|
|
|
// Insert the pending block of code at the current position.
|
|
auto InsertHere() -> void {
|
|
for (auto id : insts_) {
|
|
context_->inst_block_stack().AddInstId(id);
|
|
}
|
|
insts_.clear();
|
|
}
|
|
|
|
// Replace the instruction at target_id with the instructions in this block.
|
|
// The new value for target_id should be value_id. Returns the InstId that
|
|
// should be used to refer to the result from now on.
|
|
auto MergeReplacing(SemIR::InstId target_id, SemIR::InstId value_id)
|
|
-> SemIR::InstId {
|
|
SemIR::LocIdAndInst value = context_->insts().GetWithLocId(value_id);
|
|
|
|
auto result_id = value_id;
|
|
if (insts_.size() == 1 && insts_[0] == value_id) {
|
|
// The block is {value_id}. Replace `target_id` with the instruction
|
|
// referred to by `value_id`. This is intended to be the common case.
|
|
result_id = target_id;
|
|
} else {
|
|
// Anything else: splice it into the IR, replacing `target_id`. This
|
|
// includes empty blocks, which `Add` handles.
|
|
value.inst =
|
|
SemIR::SpliceBlock{.type_id = value.inst.type_id(),
|
|
.block_id = context_->inst_blocks().Add(insts_),
|
|
.result_id = value_id};
|
|
}
|
|
|
|
ReplaceLocIdAndInstBeforeConstantUse(*context_, target_id, value);
|
|
|
|
// Prepare to stash more pending instructions.
|
|
insts_.clear();
|
|
return result_id;
|
|
}
|
|
|
|
private:
|
|
Context* context_;
|
|
llvm::SmallVector<SemIR::InstId> insts_;
|
|
};
|
|
|
|
} // namespace Carbon::Check
|
|
|
|
#endif // CARBON_TOOLCHAIN_CHECK_PENDING_BLOCK_H_
|