| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- // 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_LOWER_FILE_CONTEXT_H_
- #define CARBON_TOOLCHAIN_LOWER_FILE_CONTEXT_H_
- #include "clang/CodeGen/ModuleBuilder.h"
- #include "clang/Lex/PreprocessorOptions.h"
- #include "toolchain/lower/context.h"
- #include "toolchain/lower/specific_coalescer.h"
- #include "toolchain/lower/type.h"
- #include "toolchain/parse/tree_and_subtrees.h"
- #include "toolchain/sem_ir/file.h"
- #include "toolchain/sem_ir/ids.h"
- #include "toolchain/sem_ir/inst_namer.h"
- namespace Carbon::Lower {
- // Information about how a given function declaration is lowered.
- struct FunctionInfo {
- // The type of the lowered function.
- llvm::FunctionType* type;
- // The debug info type of the lowered function.
- llvm::DISubroutineType* di_type;
- // The indices of the `Call` parameter patterns that correspond to parameters
- // of the LLVM IR function, in the order of the LLVM IR parameter list. Some
- // `Call` parameters may be omitted (e.g. if they are stateless), and the
- // order may differ from the SemIR `Call` parameter list (e.g. the return
- // parameter, if any, always goes first).
- llvm::SmallVector<SemIR::CallParamIndex> lowered_param_indices;
- // The indices of any `Call` param patterns that aren't present in
- // lowered_param_pattern_ids.
- llvm::SmallVector<SemIR::CallParamIndex> unused_param_indices;
- // The lowered function declaration.
- llvm::Function* llvm_function;
- // Whether the function type information is inexact, because some component
- // type was incomplete. If this is set, the function should not be used to
- // emit a definition or a call.
- bool inexact;
- };
- // Context and shared functionality for lowering within a SemIR file.
- class FileContext {
- public:
- using LoweredConstantStore =
- FixedSizeValueStore<SemIR::InstId, llvm::Constant*,
- Tag<SemIR::CheckIRId>>;
- explicit FileContext(Context& context, const SemIR::File& sem_ir,
- const SemIR::InstNamer* inst_namer,
- llvm::raw_ostream* vlog_stream);
- // Prepares to lower code in this IR, by precomputing needed LLVM types,
- // constants, declarations, etc. Should only be called once, before we lower
- // anything in this file.
- auto PrepareToLower() -> void;
- // Lowers all the definitions provided by the SemIR::File to LLVM IR.
- auto LowerDefinitions() -> void;
- // Perform final cleanup tasks once all lowering has been completed.
- auto Finalize() -> void;
- // Gets a callable's function. Returns nullptr for a builtin or a function we
- // have not lowered.
- auto GetFunction(SemIR::FunctionId function_id,
- SemIR::SpecificId specific_id = SemIR::SpecificId::None)
- -> llvm::Function* {
- const auto& function_info = GetFunctionInfo(function_id, specific_id);
- return function_info ? function_info->llvm_function : nullptr;
- }
- // Returns the FunctionInfo for the given function in the given specific, if
- // it has already been computed.
- auto GetFunctionInfo(SemIR::FunctionId function_id,
- SemIR::SpecificId specific_id)
- -> std::optional<FunctionInfo>& {
- return specific_id.has_value() ? specific_functions_.Get(specific_id)
- : functions_.Get(function_id);
- }
- // Returns the FunctionInfo for the given function in the given specific. If
- // it's not already available, this function will compute it, including
- // creating the `llvm::Function` for it. Returns nullopt for a builtin.
- //
- // The fallback information is used if the specific function has incomplete
- // types.
- auto GetOrCreateFunctionInfo(
- SemIR::FunctionId function_id, SemIR::SpecificId specific_id,
- FileContext* fallback_file = nullptr,
- SemIR::FunctionId fallback_function_id = SemIR::FunctionId::None,
- SemIR::SpecificId fallback_specific_id = SemIR::SpecificId::None)
- -> std::optional<FunctionInfo>&;
- // Returns a lowered type for the given type_id.
- auto GetType(SemIR::TypeId type_id) -> llvm::Type* {
- return GetTypeAndDIType(type_id).llvm_ir_type;
- }
- // Returns both the lowered llvm IR type and the lowered llvm IR debug info
- // type for the given type_id.
- auto GetTypeAndDIType(SemIR::TypeId type_id) const -> LoweredTypes {
- CARBON_CHECK(type_id.has_value(), "Should not be called with `None`");
- CARBON_CHECK(type_id.is_concrete(), "Lowering symbolic type {0}: {1}",
- type_id, sem_ir().types().GetAsInst(type_id));
- auto result = types_.Get(type_id);
- if (!result.llvm_ir_type) {
- result.llvm_ir_type = context_->GetOpaqueType();
- }
- return result;
- }
- // Returns location information for use with DebugInfo.
- auto GetLocForDI(SemIR::InstId inst_id) -> Context::LocForDI;
- // Returns a lowered value to use for a value of type `type`.
- auto GetTypeAsValue() -> llvm::Constant* {
- return context().GetTypeAsValue();
- }
- // Returns a lowered value to use for a value of literal type.
- auto GetLiteralAsValue() -> llvm::Constant* {
- return context().GetLiteralAsValue();
- }
- // Returns a value for the given constant. If specified, `use_inst_id` is the
- // instruction that is using this constant.
- auto GetConstant(SemIR::ConstantId const_id, SemIR::InstId use_inst_id)
- -> llvm::Value*;
- auto GetVtable(SemIR::VtableId vtable_id, SemIR::SpecificId specific_id)
- -> llvm::GlobalVariable* {
- if (!specific_id.has_value()) {
- return vtables_.Get(vtable_id);
- }
- auto*& specific_vtable = specific_vtables_.Get(specific_id);
- if (!specific_vtable) {
- specific_vtable =
- BuildVtable(sem_ir().vtables().Get(vtable_id), specific_id);
- }
- return specific_vtable;
- }
- // Returns the empty LLVM struct type used to represent the type `type`.
- auto GetTypeType() -> llvm::StructType* { return context().GetTypeType(); }
- auto GetFormType() -> llvm::StructType* { return context().GetFormType(); }
- auto context() -> Context& { return *context_; }
- auto llvm_context() -> llvm::LLVMContext& { return context().llvm_context(); }
- auto llvm_module() -> llvm::Module& { return context().llvm_module(); }
- auto cpp_code_generator() -> clang::CodeGenerator& {
- CARBON_CHECK(cpp_code_generator_);
- return *cpp_code_generator_;
- }
- auto sem_ir() const -> const SemIR::File& { return *sem_ir_; }
- auto cpp_file() -> const SemIR::CppFile* { return sem_ir().cpp_file(); }
- auto inst_namer() -> const SemIR::InstNamer* { return inst_namer_; }
- auto global_variables() -> const Map<SemIR::InstId, llvm::GlobalVariable*>& {
- return global_variables_;
- }
- auto printf_int_format_string() -> llvm::Value* {
- return context().printf_int_format_string();
- }
- auto SetPrintfIntFormatString(llvm::Value* printf_int_format_string) {
- context().SetPrintfIntFormatString(printf_int_format_string);
- }
- // Builds the global for the given instruction, which should then be cached by
- // the caller.
- auto BuildGlobalVariableDecl(SemIR::VarStorage var_storage)
- -> llvm::Constant*;
- // Builds the global for the given instruction which is known to not be
- // imported from C++.
- auto BuildNonCppGlobalVariableDecl(SemIR::VarStorage var_storage)
- -> llvm::GlobalVariable*;
- // Builds the definition for the given function. If the function is only a
- // declaration with no definition, does nothing. If this is a generic it'll
- // only be lowered if the specific_id is specified. During this lowering of
- // a generic, more generic functions may be added for lowering.
- auto BuildFunctionDefinition(
- SemIR::FunctionId function_id,
- SemIR::SpecificId specific_id = SemIR::SpecificId::None) -> void;
- private:
- // Notes that a C++ function has been referenced for the first time, so we
- // should ask Clang to generate a definition for it if possible.
- auto HandleReferencedCppFunction(clang::FunctionDecl* cpp_decl)
- -> llvm::Function*;
- // Notes that a specific function has been referenced for the first time.
- // Updates the fingerprint to include the function's type, and adds the
- // function to the list of specific functions whose definitions should be
- // lowered.
- auto HandleReferencedSpecificFunction(SemIR::FunctionId function_id,
- SemIR::SpecificId specific_id,
- llvm::Type* llvm_type) -> void;
- // Builds an LLVM function declaration for the given function, or returns an
- // existing one if we've already lowered another declaration of the same
- // function.
- auto GetOrCreateLLVMFunction(const FunctionTypeInfo& function_type_info,
- SemIR::FunctionId function_id,
- SemIR::SpecificId specific_id)
- -> llvm::Function*;
- // Builds the declaration for the given function, which should then be cached
- // by the caller.
- auto BuildFunctionDecl(
- SemIR::FunctionId function_id,
- SemIR::SpecificId specific_id = SemIR::SpecificId::None,
- FileContext* fallback_file = nullptr,
- SemIR::FunctionId fallback_function_id = SemIR::FunctionId::None,
- SemIR::SpecificId fallback_specific_id = SemIR::SpecificId::None)
- -> std::optional<FunctionInfo>;
- // Builds a function's body. Common functionality for all functions.
- //
- // The `function_id` and `specific_id` identify the function within this
- // context's file. If the function was defined in a different file,
- // `definition_context` is a `FileContext` for that other file.
- // `definition_function` is the `Function` object within the file that owns
- // the definition.
- auto BuildFunctionBody(SemIR::FunctionId function_id,
- SemIR::SpecificId specific_id,
- const SemIR::Function& declaration_function,
- FileContext& definition_context,
- const SemIR::Function& definition_function) -> void;
- // Build the DISubprogram metadata for the given function.
- auto BuildDISubprogram(const SemIR::Function& function,
- const FunctionInfo& function_info)
- -> llvm::DISubprogram*;
- auto BuildVtable(const SemIR::Vtable& vtable, SemIR::SpecificId specific_id)
- -> llvm::GlobalVariable*;
- // Records a specific that was lowered for a generic. These are added one
- // by one while lowering their definitions.
- auto AddLoweredSpecificForGeneric(SemIR::GenericId generic_id,
- SemIR::SpecificId specific_id) {
- lowered_specifics_.Get(generic_id).push_back(specific_id);
- }
- // The overall lowering context.
- Context* context_;
- // The input SemIR.
- const SemIR::File* const sem_ir_;
- // The Clang `CodeGenerator` to generate LLVM module from imported C++
- // code. Can be null if no C++ code is imported.
- clang::CodeGenerator* cpp_code_generator_;
- // The instruction namer, if given.
- const SemIR::InstNamer* const inst_namer_;
- // The optional vlog stream.
- llvm::raw_ostream* vlog_stream_;
- // Maps callables to lowered functions. SemIR treats callables as the
- // canonical form of a function, so lowering needs to do the same.
- using LoweredFunctionStore =
- FixedSizeValueStore<SemIR::FunctionId, std::optional<FunctionInfo>,
- Tag<SemIR::CheckIRId>>;
- LoweredFunctionStore functions_;
- // Maps specific callables to lowered functions.
- FixedSizeValueStore<SemIR::SpecificId, std::optional<FunctionInfo>,
- Tag<SemIR::CheckIRId>>
- specific_functions_;
- // Provides lowered versions of types. Entries are non-symbolic types.
- //
- // TypeIds internally are concrete ConstantIds.
- using LoweredTypeStore =
- FixedSizeValueStore<SemIR::TypeId, LoweredTypes, Tag<SemIR::CheckIRId>>;
- LoweredTypeStore types_;
- // Maps constants to their lowered values. Indexes are the `InstId` for
- // constant instructions.
- LoweredConstantStore constants_;
- // Maps global variables to their lowered variant.
- Map<SemIR::InstId, llvm::GlobalVariable*> global_variables_;
- // For a generic function, keep track of the specifics for which LLVM
- // function declarations were created. Those can be retrieved then from
- // `specific_functions_`.
- FixedSizeValueStore<SemIR::GenericId, llvm::SmallVector<SemIR::SpecificId>,
- Tag<SemIR::CheckIRId>>
- lowered_specifics_;
- SpecificCoalescer coalescer_;
- FixedSizeValueStore<SemIR::VtableId, llvm::GlobalVariable*,
- Tag<SemIR::CheckIRId>>
- vtables_;
- FixedSizeValueStore<SemIR::SpecificId, llvm::GlobalVariable*,
- Tag<SemIR::CheckIRId>>
- specific_vtables_;
- };
- } // namespace Carbon::Lower
- #endif // CARBON_TOOLCHAIN_LOWER_FILE_CONTEXT_H_
|