Skip to content
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

Merged
merged 14 commits into from
Nov 18, 2022
Merged

Migrate from MCJIT to ORC JIT #7166

merged 14 commits into from
Nov 18, 2022

Conversation

dkurt
Copy link
Contributor

@dkurt dkurt commented Nov 11, 2022

resolves #7161
resolves #7078

@dkurt dkurt force-pushed the llvm_orcjit branch 2 times, most recently from 672a420 to 191a048 Compare November 14, 2022 10:02
@dkurt dkurt marked this pull request as draft November 14, 2022 10:16
@dkurt dkurt marked this pull request as ready for review November 17, 2022 11:40
@dkurt
Copy link
Contributor Author

dkurt commented Nov 17, 2022

@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).

Copy link
Contributor

@steven-johnson steven-johnson left a 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.

ctorRunner.add(ctors);

auto dtors = llvm::orc::getDestructors(*m);
llvm::orc::CtorDtorRunner *dtorRunner = new llvm::orc::CtorDtorRunner(JIT->getMainJITDylib());
Copy link
Contributor

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.

dtorRunner->add(dtors);

// Resolve system symbols (like pthread, dl and others)
JIT->getMainJITDylib().addGenerator(llvm::cantFail(llvm::orc::DynamicLibrarySearchGenerator::GetForCurrentProcess(target_data_layout.getGlobalPrefix())));
Copy link
Contributor

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

internal_assert(!err) << llvm::toString(std::move(err)) << "\n";

// Resolve symbol dependencies
llvm::orc::SymbolMap NewSymbols;
Copy link
Contributor

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

}
listeners.clear();

// TODO: I don't think this is necessary, we shouldn't have any static constructors
Copy link
Contributor

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);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

eek, nice catch :-)

@steven-johnson
Copy link
Contributor

Looks like a lot of failures on arm32, unfortunately ("JIT session error: Unsupported target machine architecture in ELF object shared runtime-jitted-objectbuffer")

@steven-johnson
Copy link
Contributor

Google tests look good, just need to fix the arm32 cases

@dkurt
Copy link
Contributor Author

dkurt commented Nov 18, 2022

@steven-johnson, thanks for comments! Switched 32 ARM to RTDyld similar to i386.

Copy link
Contributor

@steven-johnson steven-johnson left a 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)

@steven-johnson
Copy link
Contributor

(Will merge once all buildbots are green)

@steven-johnson steven-johnson merged commit 270c24a into halide:main Nov 18, 2022
@dkurt dkurt deleted the llvm_orcjit branch February 2, 2024 05:59
ardier pushed a commit to ardier/Halide-mutation that referenced this pull request Mar 3, 2024
* Migrate from MCJIT to ORC JIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Migrate from MCJIT to ORC JIT [RISC-V] "Unsupported CPU type" exception on riscv64 host
3 participants