Lines Matching refs:StackGuardSlot
138 AllocaInst *StackGuardSlot, Value *StackGuard);
162 AllocaInst *StackGuardSlot);
466 AllocaInst *StackGuardSlot, Value *StackGuard) { in checkStackGuard() argument
467 Value *V = IRB.CreateLoad(StackPtrTy, StackGuardSlot); in checkStackGuard()
490 AllocaInst *StackGuardSlot) { in moveStaticAllocasToUnsafeStack() argument
511 if (StackGuardSlot) { in moveStaticAllocasToUnsafeStack()
512 Type *Ty = StackGuardSlot->getAllocatedType(); in moveStaticAllocasToUnsafeStack()
513 Align Align = std::max(DL.getPrefTypeAlign(Ty), StackGuardSlot->getAlign()); in moveStaticAllocasToUnsafeStack()
514 SSL.addObject(StackGuardSlot, getStaticAllocaAllocationSize(StackGuardSlot), in moveStaticAllocasToUnsafeStack()
561 if (StackGuardSlot) { in moveStaticAllocasToUnsafeStack()
562 unsigned Offset = SSL.getObjectOffset(StackGuardSlot); in moveStaticAllocasToUnsafeStack()
566 IRB.CreateBitCast(Off, StackGuardSlot->getType(), "StackGuardSlot"); in moveStaticAllocasToUnsafeStack()
569 StackGuardSlot->replaceAllUsesWith(NewAI); in moveStaticAllocasToUnsafeStack()
570 StackGuardSlot->eraseFromParent(); in moveStaticAllocasToUnsafeStack()
807 AllocaInst *StackGuardSlot = nullptr; in run() local
813 StackGuardSlot = IRB.CreateAlloca(StackPtrTy, nullptr); in run()
814 IRB.CreateStore(StackGuard, StackGuardSlot); in run()
818 checkStackGuard(IRBRet, F, *RI, StackGuardSlot, StackGuard); in run()
825 IRB, F, StaticAllocas, ByValArguments, BasePointer, StackGuardSlot); in run()