Skip to content

Commit

Permalink
Run InvokeWrappingPass before AllocaLoweringPass
Browse files Browse the repository at this point in the history
When rewriting calls to variadic functions, AllocaLowering only handles
call instructions, not invoke instructions. By moving InvokeWrapping
before AllocaLowering, the problematic invokes are converted to calls
before AllocaLowering is run.
  • Loading branch information
DutChen18 authored and yuri91 committed Jun 25, 2024
1 parent 4929594 commit bd1858b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit bd1858b

Please sign in to comment.