mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Kaleidoscope-Orc: Extract IRGen work into a utility function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228539 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aa5b4fa8ae
commit
9044440ba5
@ -1180,16 +1180,24 @@ private:
|
||||
CompileLayerT CompileLayer;
|
||||
};
|
||||
|
||||
static std::unique_ptr<llvm::Module>
|
||||
IRGen(KaleidoscopeJIT &J, SessionContext &S, const FunctionAST &F) {
|
||||
IRGenContext C(S);
|
||||
auto LF = F.IRGen(C);
|
||||
if (!LF)
|
||||
return nullptr;
|
||||
#ifndef MINIMAL_STDERR_OUTPUT
|
||||
fprintf(stderr, "Read function definition:");
|
||||
LF->dump();
|
||||
#endif
|
||||
return C.takeM();
|
||||
}
|
||||
|
||||
static void HandleDefinition(SessionContext &S, KaleidoscopeJIT &J) {
|
||||
if (auto F = ParseDefinition()) {
|
||||
IRGenContext C(S);
|
||||
if (auto LF = F->IRGen(C)) {
|
||||
#ifndef MINIMAL_STDERR_OUTPUT
|
||||
std::cerr << "Read function definition:\n";
|
||||
LF->dump();
|
||||
#endif
|
||||
J.addModule(C.takeM());
|
||||
if (auto M = IRGen(J, S, *F)) {
|
||||
S.addPrototypeAST(llvm::make_unique<PrototypeAST>(*F->Proto));
|
||||
J.addModule(std::move(M));
|
||||
}
|
||||
} else {
|
||||
// Skip token for error recovery.
|
||||
|
Loading…
x
Reference in New Issue
Block a user