mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Refactors a bunch of the SemIRDiagnosticConverter to be able to use that from Lower to access source locations there to use in debug info. I assume some of this is a bit jank/would need to be fixed/improved in the future - like the context functor that's passed into ConvertLoc? (not totally clear what that's for/what the debug info will be missing out on in its absence, I could throw a FIXME in there if you like) --------- Co-authored-by: Jon Ross-Perkins <jperkins@google.com>
23 lines
848 B
C++
23 lines
848 B
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/lower/lower.h"
|
|
|
|
#include "toolchain/lower/file_context.h"
|
|
|
|
namespace Carbon::Lower {
|
|
|
|
auto LowerToLLVM(llvm::LLVMContext& llvm_context, bool include_debug_info,
|
|
const Check::SemIRDiagnosticConverter& converter,
|
|
llvm::StringRef module_name, const SemIR::File& sem_ir,
|
|
const SemIR::InstNamer* inst_namer,
|
|
llvm::raw_ostream* vlog_stream)
|
|
-> std::unique_ptr<llvm::Module> {
|
|
FileContext context(llvm_context, include_debug_info, converter, module_name,
|
|
sem_ir, inst_namer, vlog_stream);
|
|
return context.Run();
|
|
}
|
|
|
|
} // namespace Carbon::Lower
|