mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Adds a flag `--optimize=<mode>` that specifies what to optimize for: * `--optimize=none` turns off the optimizer as much as possible, but still respects always_inline. * `--optimize=debug` aims to be the equivalent of `-Og` / `-O1`, and provides optimizations that don't affect the ability to debug the program. This is the default. * `--optimize=size` optimizes for the size of the produced program, and aims to be the equivalent of `-Oz`. * `--optimize=speed` optimizes for the execution time of the produced program, and aims to be the equivalent of `-O3`. Following the approach taken by Clang, the optimization level feeds into both the configuration of the LLVM pass pipeline and the attributes added to function definitions generated by the frontend. Optimization is performed in a new phase, `optimize`, which runs between `lower` and `codegen`. --------- Co-authored-by: Dana Jansens <danakj@orodu.net> Co-authored-by: Chandler Carruth <chandlerc@gmail.com>
54 lines
1.8 KiB
C++
54 lines
1.8 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_CODEGEN_CODEGEN_H_
|
|
#define CARBON_TOOLCHAIN_CODEGEN_CODEGEN_H_
|
|
|
|
#include "llvm/IR/Module.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
#include "toolchain/diagnostics/diagnostic_consumer.h"
|
|
#include "toolchain/diagnostics/file_diagnostics.h"
|
|
|
|
namespace Carbon {
|
|
|
|
class CodeGen {
|
|
public:
|
|
// `module`, `target_machine`, and `consumer` must not be null.
|
|
explicit CodeGen(llvm::Module* module, llvm::TargetMachine* target_machine,
|
|
Diagnostics::Consumer* consumer)
|
|
: module_(module), target_machine_(target_machine), emitter_(consumer) {}
|
|
|
|
// Generates the object code file.
|
|
// Returns false in case of failure, and any information about the failure is
|
|
// printed to the error stream.
|
|
//
|
|
// Note this requires a `pwrite` stream to allow patching the output.
|
|
auto EmitObject(llvm::raw_pwrite_stream& out) -> bool;
|
|
|
|
// Prints the assembly to stdout.
|
|
// Returns false in case of failure, and any information about the failure is
|
|
// printed to the error stream.
|
|
//
|
|
// Note this requires a `pwrite` stream to allow patching the output.
|
|
auto EmitAssembly(llvm::raw_pwrite_stream& out) -> bool;
|
|
|
|
private:
|
|
// Using the llvm pass emits either assembly or object code to dest.
|
|
// Returns false in case of failure, and any information about the failure is
|
|
// printed to the error stream.
|
|
auto EmitCode(llvm::raw_pwrite_stream& out, llvm::CodeGenFileType file_type)
|
|
-> bool;
|
|
|
|
llvm::Module* module_;
|
|
|
|
llvm::TargetMachine* target_machine_;
|
|
|
|
// The emitter for diagnostics.
|
|
Diagnostics::FileEmitter emitter_;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_TOOLCHAIN_CODEGEN_CODEGEN_H_
|