mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
For `Assign` and `ReturnExpression`, this field wasn't used for anything. For `StructTypeField`, we stored the type of the field here, and now store it as an argument of the node instead. --------- Co-authored-by: Jon Ross-Perkins <jperkins@google.com>
184 lines
7.2 KiB
C++
184 lines
7.2 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
|
|
|
|
#include "toolchain/lowering/lowering_context.h"
|
|
|
|
#include "common/vlog.h"
|
|
#include "toolchain/lowering/lowering_function_context.h"
|
|
#include "toolchain/semantics/semantics_ir.h"
|
|
#include "toolchain/semantics/semantics_node.h"
|
|
#include "toolchain/semantics/semantics_node_kind.h"
|
|
|
|
namespace Carbon {
|
|
|
|
LoweringContext::LoweringContext(llvm::LLVMContext& llvm_context,
|
|
llvm::StringRef module_name,
|
|
const SemanticsIR& semantics_ir,
|
|
llvm::raw_ostream* vlog_stream)
|
|
: llvm_context_(&llvm_context),
|
|
llvm_module_(std::make_unique<llvm::Module>(module_name, llvm_context)),
|
|
semantics_ir_(&semantics_ir),
|
|
vlog_stream_(vlog_stream) {
|
|
CARBON_CHECK(!semantics_ir.has_errors())
|
|
<< "Generating LLVM IR from invalid SemanticsIR is unsupported.";
|
|
}
|
|
|
|
// TODO: Move this to lower_to_llvm.cpp.
|
|
auto LoweringContext::Run() -> std::unique_ptr<llvm::Module> {
|
|
CARBON_CHECK(llvm_module_) << "Run can only be called once.";
|
|
|
|
// Lower types.
|
|
auto types = semantics_ir_->types();
|
|
types_.resize_for_overwrite(types.size());
|
|
for (int i = 0; i < static_cast<int>(types.size()); ++i) {
|
|
types_[i] = BuildType(types[i]);
|
|
}
|
|
|
|
// Lower function declarations.
|
|
functions_.resize_for_overwrite(semantics_ir_->functions_size());
|
|
for (int i = 0; i < semantics_ir_->functions_size(); ++i) {
|
|
functions_[i] = BuildFunctionDeclaration(SemanticsFunctionId(i));
|
|
}
|
|
|
|
// TODO: Lower global variable declarations.
|
|
|
|
// Lower function definitions.
|
|
for (int i = 0; i < semantics_ir_->functions_size(); ++i) {
|
|
BuildFunctionDefinition(SemanticsFunctionId(i));
|
|
}
|
|
|
|
// TODO: Lower global variable initializers.
|
|
|
|
return std::move(llvm_module_);
|
|
}
|
|
|
|
auto LoweringContext::BuildFunctionDeclaration(SemanticsFunctionId function_id)
|
|
-> llvm::Function* {
|
|
auto function = semantics_ir().GetFunction(function_id);
|
|
|
|
// TODO: Lower type information for the arguments prior to building args.
|
|
auto param_refs = semantics_ir().GetNodeBlock(function.param_refs_id);
|
|
llvm::SmallVector<llvm::Type*> args;
|
|
args.resize_for_overwrite(param_refs.size());
|
|
for (int i = 0; i < static_cast<int>(param_refs.size()); ++i) {
|
|
args[i] = GetType(semantics_ir().GetNode(param_refs[i]).type_id());
|
|
}
|
|
|
|
// If return type is not valid, the function does not have a return type.
|
|
// Hence, set return type to void.
|
|
llvm::Type* return_type = function.return_type_id.is_valid()
|
|
? GetType(function.return_type_id)
|
|
: llvm::Type::getVoidTy(llvm_context());
|
|
llvm::FunctionType* function_type =
|
|
llvm::FunctionType::get(return_type, args, /*isVarArg=*/false);
|
|
auto* llvm_function = llvm::Function::Create(
|
|
function_type, llvm::Function::ExternalLinkage,
|
|
semantics_ir().GetString(function.name_id), llvm_module());
|
|
|
|
// Set parameter names.
|
|
for (int i = 0; i < static_cast<int>(param_refs.size()); ++i) {
|
|
auto [param_name_id, _] =
|
|
semantics_ir().GetNode(param_refs[i]).GetAsBindName();
|
|
llvm_function->getArg(i)->setName(semantics_ir().GetString(param_name_id));
|
|
}
|
|
|
|
return llvm_function;
|
|
}
|
|
|
|
auto LoweringContext::BuildFunctionDefinition(SemanticsFunctionId function_id)
|
|
-> void {
|
|
auto function = semantics_ir().GetFunction(function_id);
|
|
const auto& body_block_ids = function.body_block_ids;
|
|
if (body_block_ids.empty()) {
|
|
// Function is probably defined in another file; not an error.
|
|
return;
|
|
}
|
|
|
|
llvm::Function* llvm_function = GetFunction(function_id);
|
|
LoweringFunctionContext function_lowering(*this, llvm_function);
|
|
|
|
// Add parameters to locals.
|
|
auto param_refs = semantics_ir().GetNodeBlock(function.param_refs_id);
|
|
for (int i = 0; i < static_cast<int>(param_refs.size()); ++i) {
|
|
auto param_storage =
|
|
semantics_ir().GetNode(param_refs[i]).GetAsBindName().second;
|
|
function_lowering.SetLocal(param_storage, llvm_function->getArg(i));
|
|
}
|
|
|
|
// Lower all blocks.
|
|
// TODO: Determine the set of reachable blocks, and only lower those ones.
|
|
for (auto block_id : body_block_ids) {
|
|
CARBON_VLOG() << "Lowering " << block_id << "\n";
|
|
auto* llvm_block = function_lowering.GetBlock(block_id);
|
|
// Keep the LLVM blocks in lexical order.
|
|
llvm_block->moveBefore(llvm_function->end());
|
|
function_lowering.builder().SetInsertPoint(llvm_block);
|
|
for (const auto& node_id : semantics_ir().GetNodeBlock(block_id)) {
|
|
auto node = semantics_ir().GetNode(node_id);
|
|
CARBON_VLOG() << "Lowering " << node_id << ": " << node << "\n";
|
|
switch (node.kind()) {
|
|
#define CARBON_SEMANTICS_NODE_KIND(Name) \
|
|
case SemanticsNodeKind::Name: \
|
|
LoweringHandle##Name(function_lowering, node_id, node); \
|
|
break;
|
|
#include "toolchain/semantics/semantics_node_kind.def"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
auto LoweringContext::BuildType(SemanticsNodeId node_id) -> llvm::Type* {
|
|
switch (node_id.index) {
|
|
case SemanticsBuiltinKind::FloatingPointType.AsInt():
|
|
// TODO: Handle different sizes.
|
|
return llvm::Type::getDoubleTy(*llvm_context_);
|
|
case SemanticsBuiltinKind::IntegerType.AsInt():
|
|
// TODO: Handle different sizes.
|
|
return llvm::Type::getInt32Ty(*llvm_context_);
|
|
case SemanticsBuiltinKind::BoolType.AsInt():
|
|
// TODO: We may want to have different representations for `bool` storage
|
|
// (`i8`) versus for `bool` values (`i1`).
|
|
return llvm::Type::getInt1Ty(*llvm_context_);
|
|
}
|
|
|
|
auto node = semantics_ir_->GetNode(node_id);
|
|
switch (node.kind()) {
|
|
case SemanticsNodeKind::StructType: {
|
|
auto refs = semantics_ir_->GetNodeBlock(node.GetAsStructType());
|
|
llvm::SmallVector<llvm::Type*> subtypes;
|
|
subtypes.reserve(refs.size());
|
|
for (auto ref_id : refs) {
|
|
auto [field_name_id, field_type_id] =
|
|
semantics_ir_->GetNode(ref_id).GetAsStructTypeField();
|
|
// TODO: Handle recursive types. The restriction for builtins prevents
|
|
// recursion while still letting them cache.
|
|
CARBON_CHECK(field_type_id.index < SemanticsBuiltinKind::ValidCount)
|
|
<< field_type_id;
|
|
subtypes.push_back(GetType(field_type_id));
|
|
}
|
|
return llvm::StructType::create(*llvm_context_, subtypes,
|
|
"StructLiteralType");
|
|
}
|
|
case SemanticsNodeKind::TupleType: {
|
|
// TODO: Investigate special-casing handling of empty tuples so that they
|
|
// can be collectively replaced with LLVM's void, particularly around
|
|
// function returns. LLVM doesn't allow declaring variables with a void
|
|
// type, so that may require significant special casing.
|
|
auto refs = semantics_ir_->GetTypeBlock(node.GetAsTupleType());
|
|
llvm::SmallVector<llvm::Type*> subtypes;
|
|
subtypes.reserve(refs.size());
|
|
for (auto ref_id : refs) {
|
|
subtypes.push_back(GetType(ref_id));
|
|
}
|
|
return llvm::StructType::create(*llvm_context_, subtypes,
|
|
"TupleLiteralType");
|
|
}
|
|
default: {
|
|
CARBON_FATAL() << "Cannot use node as type: " << node_id;
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace Carbon
|