-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate from MCJIT to ORC JIT #7166
Conversation
672a420
to
191a048
Compare
@steven-johnson, please review. All tests passed now (except halide-testbranch-main-llvm16-arm-32-linux-cmake which has not started today but used to do before). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks pretty great! Let me pull it into Google's source and do some further testing, but I suspect this will be good once it passes our buildbots.
src/JITModule.cpp
Outdated
ctorRunner.add(ctors); | ||
|
||
auto dtors = llvm::orc::getDestructors(*m); | ||
llvm::orc::CtorDtorRunner *dtorRunner = new llvm::orc::CtorDtorRunner(JIT->getMainJITDylib()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be wrapped in unique_ptr
? It's not clear to me where/how this gets disposed eventually.
src/JITModule.cpp
Outdated
dtorRunner->add(dtors); | ||
|
||
// Resolve system symbols (like pthread, dl and others) | ||
JIT->getMainJITDylib().addGenerator(llvm::cantFail(llvm::orc::DynamicLibrarySearchGenerator::GetForCurrentProcess(target_data_layout.getGlobalPrefix()))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: this line is probably a bit too long, adding a break might be nice
src/JITModule.cpp
Outdated
internal_assert(!err) << llvm::toString(std::move(err)) << "\n"; | ||
|
||
// Resolve symbol dependencies | ||
llvm::orc::SymbolMap NewSymbols; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: in Halide codebase, local vars should be initial-lowercase, newSymbols
src/JITModule.cpp
Outdated
} | ||
listeners.clear(); | ||
|
||
// TODO: I don't think this is necessary, we shouldn't have any static constructors |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stale comment?
@@ -71,7 +71,7 @@ int main(int argc, char **argv) { | |||
} | |||
|
|||
if (call_counter2 != 32 * 32) { | |||
printf("C function my_func2 was called %d times instead of %d\n", call_counter, 32 * 32); | |||
printf("C function my_func2 was called %d times instead of %d\n", call_counter2, 32 * 32); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
eek, nice catch :-)
Looks like a lot of failures on arm32, unfortunately ("JIT session error: Unsupported target machine architecture in ELF object shared runtime-jitted-objectbuffer") |
Google tests look good, just need to fix the arm32 cases |
@steven-johnson, thanks for comments! Switched 32 ARM to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks for the fixes!
(Adding @abadams)
(Will merge once all buildbots are green) |
* Migrate from MCJIT to ORC JIT
resolves #7161
resolves #7078