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

Run InvokeWrappingPass before AllocaLoweringPass #240

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions llvm/lib/CheerpUtils/AllocaLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ PreservedAnalyses cheerp::AllocaLoweringInnerPass::run(Function& F, FunctionAnal
PA.preserve<RegisterizeAnalysis>();
PA.preserve<GlobalDepsAnalysis>();
PA.preserve<DominatorTreeAnalysis>();
PA.preserve<InvokeWrappingAnalysis>();
return PA;
}

Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/Target/CheerpBackend/CheerpWritePass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,9 @@ bool CheerpWritePass::runOnModule(Module& M)

MPM.addPass(cheerp::FreeAndDeleteRemovalPass());
MPM.addPass(cheerp::GlobalDepsAnalyzerPass(mathMode, /*resolveAliases*/true));
MPM.addPass(cheerp::InvokeWrappingPass());
if (isWasmTarget)
MPM.addPass(cheerp::AllocaLoweringPass());
MPM.addPass(cheerp::InvokeWrappingPass());
MPM.addPass(cheerp::FFIWrappingPass());
MPM.addPass(createModuleToFunctionPassAdaptor(cheerp::FixIrreducibleControlFlowPass()));
MPM.addPass(createModuleToFunctionPassAdaptor(cheerp::PointerArithmeticToArrayIndexingPass()));
Expand Down
Loading