mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
A lot of this is more boring "remove unused header", plus some other minor cleanups. I think the most significant changes were: - yaml_test_helpers.cpp is doing a switch on an unsigned int, comparing to enum values. - [bugprone-switch-missing-default-case](https://clang.llvm.org/extra/clang-tidy/checks/bugprone/switch-missing-default-case.html) is unhappy with EnumBase, but correctly identified yaml_test_helpers.cpp, so I'm opting to address it rather than disabling it even though it needs NOLINT in several locations as a result, in addition to what I think are some low-value `default` cases. I'd be fine going the other way with this too and disabling it globally (I could see it being noisier in the explorer). - MarkInitializerFor swaps the argument names between the .h and .cpp. I think the .cpp had the order as intended. - There's a new-ish [performance-enum-size](https://clang.llvm.org/extra/clang-tidy/checks/performance/enum-size.html) which I'm basically treating as "add int8_t to enums". My main motivation here is to just clean up as many of these as I can so that I stop seeing them in vscode.
52 lines
1.8 KiB
C++
52 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"
|
|
|
|
namespace Carbon {
|
|
|
|
class CodeGen {
|
|
public:
|
|
static auto Create(llvm::Module& module, llvm::StringRef target_triple,
|
|
llvm::raw_pwrite_stream& errors) -> std::optional<CodeGen>;
|
|
|
|
// Generates the object code file.
|
|
// Returns false in case of failure, and any information about the failure is
|
|
// printed to the error stream.
|
|
//
|
|
// Note that unlike the error stream, 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 that unlike the error stream, this requires a `pwrite` stream to allow
|
|
// patching the output.
|
|
auto EmitAssembly(llvm::raw_pwrite_stream& out) -> bool;
|
|
|
|
private:
|
|
explicit CodeGen(llvm::Module& module, llvm::raw_pwrite_stream& errors)
|
|
: module_(module), errors_(errors) {}
|
|
|
|
// 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::raw_pwrite_stream& errors_;
|
|
std::unique_ptr<llvm::TargetMachine> target_machine_;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_TOOLCHAIN_CODEGEN_CODEGEN_H_
|