| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502 |
- // 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
- #include "llvm/ADT/STLExtras.h"
- #include "llvm/ADT/Sequence.h"
- #include "toolchain/lower/function_context.h"
- #include "toolchain/sem_ir/node.h"
- #include "toolchain/sem_ir/node_kind.h"
- namespace Carbon::Lower {
- auto HandleCrossReference(FunctionContext& /*context*/,
- SemIR::NodeId /*node_id*/, SemIR::CrossReference node)
- -> void {
- CARBON_FATAL() << "TODO: Add support: " << node;
- }
- auto HandleAddressOf(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::AddressOf node) -> void {
- context.SetLocal(node_id, context.GetLocal(node.lvalue_id));
- }
- auto HandleArrayIndex(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::ArrayIndex node) -> void {
- auto* array_value = context.GetLocal(node.array_id);
- auto* llvm_type =
- context.GetType(context.semantics_ir().GetNode(node.array_id).type_id());
- llvm::Value* indexes[2] = {
- llvm::ConstantInt::get(llvm::Type::getInt32Ty(context.llvm_context()), 0),
- context.GetLocal(node.index_id)};
- context.SetLocal(node_id,
- context.builder().CreateInBoundsGEP(llvm_type, array_value,
- indexes, "array.index"));
- }
- auto HandleArrayInit(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::ArrayInit node) -> void {
- // The result of initialization is the return slot of the initializer.
- context.SetLocal(
- node_id, context.GetLocal(context.semantics_ir()
- .GetNodeBlock(node.inits_and_return_slot_id)
- .back()));
- }
- auto HandleAssign(FunctionContext& context, SemIR::NodeId /*node_id*/,
- SemIR::Assign node) -> void {
- auto storage_type_id = context.semantics_ir().GetNode(node.lhs_id).type_id();
- context.FinishInitialization(storage_type_id, node.lhs_id, node.rhs_id);
- }
- auto HandleBinaryOperatorAdd(FunctionContext& /*context*/,
- SemIR::NodeId /*node_id*/,
- SemIR::BinaryOperatorAdd node) -> void {
- CARBON_FATAL() << "TODO: Add support: " << node;
- }
- auto HandleBindName(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::BindName node) -> void {
- context.SetLocal(node_id, context.GetLocal(node.value_id));
- }
- auto HandleBlockArg(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::BlockArg node) -> void {
- context.SetLocal(node_id, context.GetBlockArg(node.block_id, node.type_id));
- }
- auto HandleBoolLiteral(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::BoolLiteral node) -> void {
- llvm::Value* v =
- llvm::ConstantInt::get(context.builder().getInt1Ty(), node.value.index);
- context.SetLocal(node_id, v);
- }
- auto HandleBranch(FunctionContext& context, SemIR::NodeId /*node_id*/,
- SemIR::Branch node) -> void {
- // Opportunistically avoid creating a BasicBlock that contains just a branch.
- // TODO: Don't do this if it would remove a loop preheader block.
- llvm::BasicBlock* block = context.builder().GetInsertBlock();
- if (block->empty() && context.TryToReuseBlock(node.target_id, block)) {
- // Reuse this block as the branch target.
- } else {
- context.builder().CreateBr(context.GetBlock(node.target_id));
- }
- context.builder().ClearInsertionPoint();
- }
- auto HandleBranchIf(FunctionContext& context, SemIR::NodeId /*node_id*/,
- SemIR::BranchIf node) -> void {
- llvm::Value* cond = context.GetLocal(node.cond_id);
- llvm::BasicBlock* then_block = context.GetBlock(node.target_id);
- llvm::BasicBlock* else_block = context.CreateSyntheticBlock();
- context.builder().CreateCondBr(cond, then_block, else_block);
- context.builder().SetInsertPoint(else_block);
- }
- auto HandleBranchWithArg(FunctionContext& context, SemIR::NodeId /*node_id*/,
- SemIR::BranchWithArg node) -> void {
- llvm::Value* arg = context.GetLocal(node.arg_id);
- SemIR::TypeId arg_type_id =
- context.semantics_ir().GetNode(node.arg_id).type_id();
- // Opportunistically avoid creating a BasicBlock that contains just a branch.
- // We only do this for a block that we know will only have a single
- // predecessor, so that we can correctly populate the predecessors of the
- // PHINode.
- llvm::BasicBlock* block = context.builder().GetInsertBlock();
- llvm::BasicBlock* phi_predecessor = block;
- if (block->empty() && context.IsCurrentSyntheticBlock(block) &&
- context.TryToReuseBlock(node.target_id, block)) {
- // Reuse this block as the branch target.
- phi_predecessor = block->getSinglePredecessor();
- CARBON_CHECK(phi_predecessor)
- << "Synthetic block did not have a single predecessor";
- } else {
- context.builder().CreateBr(context.GetBlock(node.target_id));
- }
- context.GetBlockArg(node.target_id, arg_type_id)
- ->addIncoming(arg, phi_predecessor);
- context.builder().ClearInsertionPoint();
- }
- auto HandleBuiltin(FunctionContext& /*context*/, SemIR::NodeId /*node_id*/,
- SemIR::Builtin node) -> void {
- CARBON_FATAL() << "TODO: Add support: " << node;
- }
- auto HandleCall(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::Call node) -> void {
- auto* llvm_function = context.GetFunction(node.function_id);
- const auto& function = context.semantics_ir().GetFunction(node.function_id);
- std::vector<llvm::Value*> args;
- llvm::ArrayRef<SemIR::NodeId> arg_ids =
- context.semantics_ir().GetNodeBlock(node.args_id);
- if (function.return_slot_id.is_valid()) {
- args.push_back(context.GetLocal(arg_ids.back()));
- arg_ids = arg_ids.drop_back();
- }
- for (auto arg_id : arg_ids) {
- auto arg_type_id = context.semantics_ir().GetNode(arg_id).type_id();
- if (SemIR::GetValueRepresentation(context.semantics_ir(), arg_type_id)
- .kind != SemIR::ValueRepresentation::None) {
- args.push_back(context.GetLocal(arg_id));
- }
- }
- if (llvm_function->getReturnType()->isVoidTy()) {
- context.builder().CreateCall(llvm_function, args);
- // The value of a function call with a void return type shouldn't used, but
- // StubReference needs a value to propagate.
- // TODO: Remove this now the StubReferences are gone.
- context.SetLocal(node_id,
- llvm::PoisonValue::get(context.GetType(node.type_id)));
- } else {
- context.SetLocal(node_id,
- context.builder().CreateCall(llvm_function, args,
- llvm_function->getName()));
- }
- }
- auto HandleClassDeclaration(FunctionContext& /*context*/,
- SemIR::NodeId /*node_id*/,
- SemIR::ClassDeclaration /*node*/) -> void {
- // No action to perform.
- }
- auto HandleDereference(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::Dereference node) -> void {
- context.SetLocal(node_id, context.GetLocal(node.pointer_id));
- }
- auto HandleFunctionDeclaration(FunctionContext& /*context*/,
- SemIR::NodeId /*node_id*/,
- SemIR::FunctionDeclaration node) -> void {
- CARBON_FATAL()
- << "Should not be encountered. If that changes, we may want to change "
- "higher-level logic to skip them rather than calling this. "
- << node;
- }
- auto HandleInitializeFrom(FunctionContext& context, SemIR::NodeId /*node_id*/,
- SemIR::InitializeFrom node) -> void {
- auto storage_type_id = context.semantics_ir().GetNode(node.dest_id).type_id();
- context.FinishInitialization(storage_type_id, node.dest_id, node.src_id);
- }
- auto HandleIntegerLiteral(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::IntegerLiteral node) -> void {
- const llvm::APInt& i = context.semantics_ir().GetInteger(node.integer_id);
- // TODO: This won't offer correct semantics, but seems close enough for now.
- llvm::Value* v =
- llvm::ConstantInt::get(context.builder().getInt32Ty(), i.getZExtValue());
- context.SetLocal(node_id, v);
- }
- auto HandleNameReference(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::NameReference node) -> void {
- auto type_node_id =
- context.semantics_ir().GetTypeAllowBuiltinTypes(node.type_id);
- if (type_node_id == SemIR::NodeId::BuiltinFunctionType ||
- type_node_id == SemIR::NodeId::BuiltinNamespaceType) {
- return;
- }
- // TODO: Handle name references to globals
- context.SetLocal(node_id, context.GetLocal(node.value_id));
- }
- auto HandleNamespace(FunctionContext& /*context*/, SemIR::NodeId /*node_id*/,
- SemIR::Namespace node) -> void {
- CARBON_FATAL()
- << "Should not be encountered. If that changes, we may want to change "
- "higher-level logic to skip them rather than calling this. "
- << node;
- }
- auto HandleNoOp(FunctionContext& /*context*/, SemIR::NodeId /*node_id*/,
- SemIR::NoOp /*node*/) -> void {
- // No action to take.
- }
- auto HandleParameter(FunctionContext& /*context*/, SemIR::NodeId /*node_id*/,
- SemIR::Parameter /*node*/) -> void {
- CARBON_FATAL() << "Parameters should be lowered by `BuildFunctionDefinition`";
- }
- auto HandleRealLiteral(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::RealLiteral node) -> void {
- const SemIR::Real& real = context.semantics_ir().GetReal(node.real_id);
- // TODO: This will probably have overflow issues, and should be fixed.
- double val =
- real.mantissa.getZExtValue() *
- std::pow((real.is_decimal ? 10 : 2), real.exponent.getSExtValue());
- llvm::APFloat llvm_val(val);
- context.SetLocal(node_id, llvm::ConstantFP::get(
- context.builder().getDoubleTy(), llvm_val));
- }
- auto HandleReturn(FunctionContext& context, SemIR::NodeId /*node_id*/,
- SemIR::Return /*node*/) -> void {
- context.builder().CreateRetVoid();
- }
- auto HandleReturnExpression(FunctionContext& context, SemIR::NodeId /*node_id*/,
- SemIR::ReturnExpression node) -> void {
- switch (SemIR::GetInitializingRepresentation(
- context.semantics_ir(),
- context.semantics_ir().GetNode(node.expr_id).type_id())
- .kind) {
- case SemIR::InitializingRepresentation::None:
- case SemIR::InitializingRepresentation::InPlace:
- // Nothing to return.
- context.builder().CreateRetVoid();
- return;
- case SemIR::InitializingRepresentation::ByCopy:
- // The expression produces the value representation for the type.
- context.builder().CreateRet(context.GetLocal(node.expr_id));
- return;
- }
- }
- auto HandleSpliceBlock(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::SpliceBlock node) -> void {
- context.LowerBlock(node.block_id);
- context.SetLocal(node_id, context.GetLocal(node.result_id));
- }
- auto HandleStringLiteral(FunctionContext& /*context*/,
- SemIR::NodeId /*node_id*/, SemIR::StringLiteral node)
- -> void {
- CARBON_FATAL() << "TODO: Add support: " << node;
- }
- // Extracts an element of either a struct or a tuple by index. Depending on the
- // expression category of the aggregate input, this will either produce a value
- // or a reference.
- static auto GetStructOrTupleElement(FunctionContext& context,
- SemIR::NodeId aggr_node_id, unsigned idx,
- SemIR::TypeId result_type_id,
- llvm::Twine name) -> llvm::Value* {
- auto aggr_node = context.semantics_ir().GetNode(aggr_node_id);
- auto* aggr_value = context.GetLocal(aggr_node_id);
- auto aggr_cat =
- SemIR::GetExpressionCategory(context.semantics_ir(), aggr_node_id);
- if (aggr_cat == SemIR::ExpressionCategory::Value &&
- SemIR::GetValueRepresentation(context.semantics_ir(), aggr_node.type_id())
- .kind == SemIR::ValueRepresentation::Copy) {
- // We are holding the values of the aggregate directly, elementwise.
- return context.builder().CreateExtractValue(aggr_value, idx, name);
- }
- // Either we're accessing an element of a reference and producing a reference,
- // or we're accessing an element of a value that is held by pointer and we're
- // producing a value.
- auto* aggr_type = context.GetType(aggr_node.type_id());
- auto* elem_ptr =
- context.builder().CreateStructGEP(aggr_type, aggr_value, idx, name);
- // If this is a value access, load the element if necessary.
- if (aggr_cat == SemIR::ExpressionCategory::Value) {
- switch (
- SemIR::GetValueRepresentation(context.semantics_ir(), result_type_id)
- .kind) {
- case SemIR::ValueRepresentation::None:
- return llvm::PoisonValue::get(context.GetType(result_type_id));
- case SemIR::ValueRepresentation::Copy:
- return context.builder().CreateLoad(context.GetType(result_type_id),
- elem_ptr, name + ".load");
- case SemIR::ValueRepresentation::Pointer:
- return elem_ptr;
- case SemIR::ValueRepresentation::Custom:
- CARBON_FATAL() << "TODO: Add support for custom value representation";
- }
- }
- return elem_ptr;
- }
- auto HandleStructAccess(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::StructAccess node) -> void {
- auto struct_type_id =
- context.semantics_ir().GetNode(node.struct_id).type_id();
- // Get type information for member names.
- auto fields = context.semantics_ir().GetNodeBlock(
- context.semantics_ir()
- .GetNodeAs<SemIR::StructType>(
- context.semantics_ir().GetType(struct_type_id))
- .fields_id);
- auto field = context.semantics_ir().GetNodeAs<SemIR::StructTypeField>(
- fields[node.index.index]);
- auto member_name = context.semantics_ir().GetString(field.name_id);
- context.SetLocal(node_id, GetStructOrTupleElement(context, node.struct_id,
- node.index.index,
- node.type_id, member_name));
- }
- auto HandleStructLiteral(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::StructLiteral node) -> void {
- // A StructLiteral should always be converted to a StructInit or StructValue
- // if its value is needed.
- context.SetLocal(node_id,
- llvm::PoisonValue::get(context.GetType(node.type_id)));
- }
- // Emits the value representation for a struct or tuple whose elements are the
- // contents of `refs_id`.
- auto EmitStructOrTupleValueRepresentation(FunctionContext& context,
- SemIR::TypeId type_id,
- SemIR::NodeBlockId refs_id,
- llvm::Twine name) -> llvm::Value* {
- auto* llvm_type = context.GetType(type_id);
- switch (SemIR::GetValueRepresentation(context.semantics_ir(), type_id).kind) {
- case SemIR::ValueRepresentation::None:
- // TODO: Add a helper to get a "no value representation" value.
- return llvm::PoisonValue::get(llvm_type);
- case SemIR::ValueRepresentation::Copy: {
- auto refs = context.semantics_ir().GetNodeBlock(refs_id);
- CARBON_CHECK(refs.size() == 1)
- << "Unexpected size for aggregate with by-copy value representation";
- // TODO: Remove the LLVM StructType wrapper in this case, so we don't
- // need this `insert_value` wrapping.
- return context.builder().CreateInsertValue(
- llvm::PoisonValue::get(llvm_type), context.GetLocal(refs[0]), {0});
- }
- case SemIR::ValueRepresentation::Pointer: {
- // Write the object representation to a local alloca so we can produce a
- // pointer to it as the value representation.
- auto* alloca = context.builder().CreateAlloca(
- llvm_type, /*ArraySize=*/nullptr, name);
- for (auto [i, ref] :
- llvm::enumerate(context.semantics_ir().GetNodeBlock(refs_id))) {
- auto* gep = context.builder().CreateStructGEP(llvm_type, alloca, i);
- // TODO: We are loading a value representation here and storing an
- // object representation!
- context.builder().CreateStore(context.GetLocal(ref), gep);
- }
- return alloca;
- }
- case SemIR::ValueRepresentation::Custom:
- CARBON_FATAL()
- << "Aggregate should never have custom value representation";
- }
- }
- auto HandleStructInit(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::StructInit node) -> void {
- auto* llvm_type = context.GetType(node.type_id);
- switch (
- SemIR::GetInitializingRepresentation(context.semantics_ir(), node.type_id)
- .kind) {
- case SemIR::InitializingRepresentation::None:
- case SemIR::InitializingRepresentation::InPlace:
- // TODO: Add a helper to poison a value slot.
- context.SetLocal(node_id, llvm::PoisonValue::get(llvm_type));
- break;
- case SemIR::InitializingRepresentation::ByCopy: {
- context.SetLocal(
- node_id, EmitStructOrTupleValueRepresentation(
- context, node.type_id, node.elements_id, "struct.init"));
- break;
- }
- }
- }
- auto HandleStructValue(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::StructValue node) -> void {
- context.SetLocal(node_id,
- EmitStructOrTupleValueRepresentation(
- context, node.type_id, node.elements_id, "struct"));
- }
- auto HandleStructTypeField(FunctionContext& /*context*/,
- SemIR::NodeId /*node_id*/,
- SemIR::StructTypeField /*node*/) -> void {
- // No action to take.
- }
- auto HandleTupleAccess(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::TupleAccess node) -> void {
- context.SetLocal(
- node_id, GetStructOrTupleElement(context, node.tuple_id, node.index.index,
- node.type_id, "tuple.elem"));
- }
- auto HandleTupleIndex(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::TupleIndex node) -> void {
- auto index_node =
- context.semantics_ir().GetNodeAs<SemIR::IntegerLiteral>(node.index_id);
- auto index =
- context.semantics_ir().GetInteger(index_node.integer_id).getZExtValue();
- context.SetLocal(node_id,
- GetStructOrTupleElement(context, node.tuple_id, index,
- node.type_id, "tuple.index"));
- }
- auto HandleTupleLiteral(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::TupleLiteral node) -> void {
- // A TupleLiteral should always be converted to a TupleInit or TupleValue if
- // its value is needed.
- context.SetLocal(node_id,
- llvm::PoisonValue::get(context.GetType(node.type_id)));
- }
- auto HandleTupleInit(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::TupleInit node) -> void {
- auto* llvm_type = context.GetType(node.type_id);
- switch (
- SemIR::GetInitializingRepresentation(context.semantics_ir(), node.type_id)
- .kind) {
- case SemIR::InitializingRepresentation::None:
- case SemIR::InitializingRepresentation::InPlace:
- // TODO: Add a helper to poison a value slot.
- context.SetLocal(node_id, llvm::PoisonValue::get(llvm_type));
- break;
- case SemIR::InitializingRepresentation::ByCopy: {
- context.SetLocal(
- node_id, EmitStructOrTupleValueRepresentation(
- context, node.type_id, node.elements_id, "tuple.init"));
- break;
- }
- }
- }
- auto HandleTupleValue(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::TupleValue node) -> void {
- context.SetLocal(
- node_id, EmitStructOrTupleValueRepresentation(context, node.type_id,
- node.elements_id, "tuple"));
- }
- auto HandleUnaryOperatorNot(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::UnaryOperatorNot node) -> void {
- context.SetLocal(
- node_id, context.builder().CreateNot(context.GetLocal(node.operand_id)));
- }
- auto HandleVarStorage(FunctionContext& context, SemIR::NodeId node_id,
- SemIR::VarStorage node) -> void {
- // TODO: Eventually this name will be optional, and we'll want to provide
- // something like `var` as a default. However, that's not possible right now
- // so cannot be tested.
- auto name = context.semantics_ir().GetString(node.name_id);
- auto* alloca = context.builder().CreateAlloca(context.GetType(node.type_id),
- /*ArraySize=*/nullptr, name);
- context.SetLocal(node_id, alloca);
- }
- } // namespace Carbon::Lower
|