// This file is a part of Julia. License is MIT: https://julialang.org/license #include "llvm-version.h" #include "passes.h" #include #include #include #include #include #include #include #include #include #include #include #include #include "llvm-pass-helpers.h" #include "julia.h" #include "llvm-alloc-helpers.h" #include "codegen_shared.h" #define DEBUG_TYPE "julia-licm" using namespace llvm; STATISTIC(HoistedPreserveBegin, "Number of gc_preserve_begin instructions hoisted out of a loop"); STATISTIC(SunkPreserveEnd, "Number of gc_preserve_end instructions sunk out of a loop"); STATISTIC(ErasedPreserveEnd, "Number of gc_preserve_end instructions removed from nonterminating loops"); STATISTIC(HoistedWriteBarrier, "Number of write barriers hoisted out of a loop"); STATISTIC(HoistedAllocation, "Number of allocations hoisted out of a loop"); /* * Julia LICM pass. * This takes care of some julia intrinsics that is safe to move around/out of loops but * can't be handled by LLVM's LICM. These intrinsics can be moved outside of * loop context as well but it is inside a loop where they matter the most. */ namespace { //Stolen and modified from LICM.cpp static void eraseInstruction(Instruction &I, MemorySSAUpdater &MSSAU) { if (MSSAU.getMemorySSA()) MSSAU.removeMemoryAccess(&I); I.eraseFromParent(); } //Stolen and modified from LICM.cpp static void moveInstructionBefore(Instruction &I, Instruction &Dest, MemorySSAUpdater &MSSAU, ScalarEvolution *SE) { I.moveBefore(&Dest); if (MSSAU.getMemorySSA()) if (MemoryUseOrDef *OldMemAcc = cast_or_null( MSSAU.getMemorySSA()->getMemoryAccess(&I))) MSSAU.moveToPlace(OldMemAcc, Dest.getParent(), MemorySSA::BeforeTerminator); if (SE) SE->forgetValue(&I); } static void createNewInstruction(Instruction *New, Instruction *Ref, MemorySSAUpdater &MSSAU) { if (MSSAU.getMemorySSA() && MSSAU.getMemorySSA()->getMemoryAccess(Ref)) { // Create a new MemoryAccess and let MemorySSA set its defining access. MemoryAccess *NewMemAcc = MSSAU.createMemoryAccessInBB( New, nullptr, New->getParent(), MemorySSA::Beginning); if (NewMemAcc) { if (auto *MemDef = dyn_cast(NewMemAcc)) MSSAU.insertDef(MemDef, /*RenameUses=*/true); else { auto *MemUse = cast(NewMemAcc); MSSAU.insertUse(MemUse, /*RenameUses=*/true); } } } } //Stolen and modified to update SE from LoopInfo.cpp static bool makeLoopInvariant(Loop *L, Value *V, bool &Changed, Instruction *InsertPt, MemorySSAUpdater &MSSAU, ScalarEvolution *SE); static bool makeLoopInvariant(Loop *L, Instruction *I, bool &Changed, Instruction *InsertPt, MemorySSAUpdater &MSSAU, ScalarEvolution *SE) { // Test if the value is already loop-invariant. if (L->isLoopInvariant(I)) return true; if (!isSafeToSpeculativelyExecute(I)) return false; if (I->mayReadFromMemory()) return false; // EH block instructions are immobile. if (I->isEHPad()) return false; // Don't hoist instructions with loop-variant operands. for (Value *Operand : I->operands()) if (!makeLoopInvariant(L, Operand, Changed, InsertPt, MSSAU, SE)) return false; // Hoist. moveInstructionBefore(*I, *InsertPt, MSSAU, SE); // There is possibility of hoisting this instruction above some arbitrary // condition. Any metadata defined on it can be control dependent on this // condition. Conservatively strip it here so that we don't give any wrong // information to the optimizer. I->dropUnknownNonDebugMetadata(); Changed = true; return true; } static bool makeLoopInvariant(Loop *L, Value *V, bool &Changed, Instruction *InsertPt, MemorySSAUpdater &MSSAU, ScalarEvolution *SE) { if (Instruction *I = dyn_cast(V)) return makeLoopInvariant(L, I, Changed, InsertPt, MSSAU, SE); return true; // All non-instructions are loop-invariant. } struct JuliaLICMPassLegacy : public LoopPass { static char ID; JuliaLICMPassLegacy() : LoopPass(ID) {}; bool runOnLoop(Loop *L, LPPassManager &LPM) override; protected: void getAnalysisUsage(AnalysisUsage &AU) const override { getLoopAnalysisUsage(AU); } }; struct JuliaLICM : public JuliaPassContext { function_ref GetDT; function_ref GetLI; function_ref GetMSSA; function_ref GetSE; JuliaLICM(function_ref GetDT, function_ref GetLI, function_ref GetMSSA, function_ref GetSE) : GetDT(GetDT), GetLI(GetLI), GetMSSA(GetMSSA), GetSE(GetSE) {} bool runOnLoop(Loop *L) { // Get the preheader block to move instructions into, // required to run this pass. BasicBlock *preheader = L->getLoopPreheader(); if (!preheader) return false; BasicBlock *header = L->getHeader(); const llvm::DataLayout &DL = header->getModule()->getDataLayout(); initFunctions(*header->getModule()); // Also require `gc_preserve_begin_func` whereas // `gc_preserve_end_func` is optional since the input to // `gc_preserve_end_func` must be from `gc_preserve_begin_func`. // We also hoist write barriers here, so we don't exit if write_barrier_func exists if (!gc_preserve_begin_func && !write_barrier_func && !write_barrier_binding_func && !alloc_obj_func) return false; auto LI = &GetLI(); auto DT = &GetDT(); auto MSSA = GetMSSA(); auto SE = GetSE(); MemorySSAUpdater MSSAU(MSSA); // Lazy initialization of exit blocks insertion points. bool exit_pts_init = false; SmallVector _exit_pts; auto get_exit_pts = [&] () -> ArrayRef { if (!exit_pts_init) { exit_pts_init = true; SmallVector exit_bbs; L->getUniqueExitBlocks(exit_bbs); for (BasicBlock *bb: exit_bbs) { _exit_pts.push_back(&*bb->getFirstInsertionPt()); } } return _exit_pts; }; bool changed = false; // Scan in the right order so that we'll hoist the `begin` // before we consider sinking `end`. LoopBlocksRPO worklist(L); worklist.perform(LI); for (auto *bb : worklist) { for (BasicBlock::iterator II = bb->begin(), E = bb->end(); II != E;) { auto call = dyn_cast(&*II++); if (!call) continue; Value *callee = call->getCalledOperand(); assert(callee != nullptr); // It is always legal to extend the preserve period // so we only need to make sure it is legal to move/clone // the calls. // If all the input arguments dominates the whole loop we can // hoist the `begin` and if a `begin` dominates the loop the // corresponding `end` can be moved to the loop exit. if (callee == gc_preserve_begin_func) { bool canhoist = true; for (Use &U : call->args()) { // Check if all arguments are generated outside the loop auto origin = dyn_cast(U.get()); if (!origin) continue; if (!DT->properlyDominates(origin->getParent(), header)) { canhoist = false; break; } } if (!canhoist) continue; ++HoistedPreserveBegin; moveInstructionBefore(*call, *preheader->getTerminator(), MSSAU, SE); changed = true; } else if (callee == gc_preserve_end_func) { auto begin = cast(call->getArgOperand(0)); if (!DT->properlyDominates(begin->getParent(), header)) continue; changed = true; auto exit_pts = get_exit_pts(); if (exit_pts.empty()) { ++ErasedPreserveEnd; eraseInstruction(*call, MSSAU); continue; } ++SunkPreserveEnd; moveInstructionBefore(*call, *exit_pts[0], MSSAU, SE); for (unsigned i = 1; i < exit_pts.size(); i++) { // Clone exit auto CI = CallInst::Create(call, {}, exit_pts[i]); createNewInstruction(CI, call, MSSAU); } } else if (callee == write_barrier_func || callee == write_barrier_binding_func) { bool valid = true; for (std::size_t i = 0; i < call->arg_size(); i++) { if (!makeLoopInvariant(L, call->getArgOperand(i), changed, preheader->getTerminator(), MSSAU, SE)) { valid = false; break; } } if (valid) { ++HoistedWriteBarrier; moveInstructionBefore(*call, *preheader->getTerminator(), MSSAU, SE); changed = true; } } else if (callee == alloc_obj_func) { jl_alloc::AllocUseInfo use_info; jl_alloc::CheckInst::Stack check_stack; jl_alloc::EscapeAnalysisRequiredArgs required{use_info, check_stack, *this, DL}; jl_alloc::runEscapeAnalysis(call, required, jl_alloc::EscapeAnalysisOptionalArgs().with_valid_set(&L->getBlocksSet())); if (use_info.escaped || use_info.addrescaped) { continue; } bool valid = true; for (std::size_t i = 0; i < call->arg_size(); i++) { if (!makeLoopInvariant(L, call->getArgOperand(i), changed, preheader->getTerminator(), MSSAU, SE)) { valid = false; break; } } if (use_info.refstore) { // We need to add write barriers to any stores // that may start crossing generations continue; } if (valid) { ++HoistedAllocation; moveInstructionBefore(*call, *preheader->getTerminator(), MSSAU, SE); changed = true; } } } } if (changed && SE) { SE->forgetLoopDispositions(L); } assert(!verifyFunction(*L->getHeader()->getParent(), &errs())); return changed; } }; bool JuliaLICMPassLegacy::runOnLoop(Loop *L, LPPassManager &LPM) { auto GetDT = [this]() -> DominatorTree & { return getAnalysis().getDomTree(); }; auto GetLI = [this]() -> LoopInfo & { return getAnalysis().getLoopInfo(); }; auto GetMSSA = []() { return nullptr; }; auto GetSE = []() { return nullptr; }; auto juliaLICM = JuliaLICM(GetDT, GetLI, GetMSSA, GetSE); return juliaLICM.runOnLoop(L); } char JuliaLICMPassLegacy::ID = 0; static RegisterPass Y("JuliaLICM", "LICM for julia specific intrinsics.", false, false); } //namespace PreservedAnalyses JuliaLICMPass::run(Loop &L, LoopAnalysisManager &AM, LoopStandardAnalysisResults &AR, LPMUpdater &U) { auto GetDT = [&AR]() -> DominatorTree & { return AR.DT; }; auto GetLI = [&AR]() -> LoopInfo & { return AR.LI; }; auto GetMSSA = [&AR]() { return AR.MSSA; }; auto GetSE = [&AR]() { return &AR.SE; }; auto juliaLICM = JuliaLICM(GetDT, GetLI, GetMSSA, GetSE); if (juliaLICM.runOnLoop(&L)) { auto preserved = getLoopPassPreservedAnalyses(); preserved.preserveSet(); preserved.preserve(); return preserved; } return PreservedAnalyses::all(); } Pass *createJuliaLICMPass() { return new JuliaLICMPassLegacy(); } extern "C" JL_DLLEXPORT void LLVMExtraJuliaLICMPass_impl(LLVMPassManagerRef PM) { unwrap(PM)->add(createJuliaLICMPass()); }