Lines Matching defs:DynamicTop
175 /// top to \p DynamicTop if non-null.
177 AllocaInst *DynamicTop,
442 AllocaInst *DynamicTop = nullptr;
446 DynamicTop = IRB.CreateAlloca(StackPtrTy, /*ArraySize=*/nullptr,
448 IRB.CreateStore(StaticTop, DynamicTop);
457 DynamicTop ? IRB.CreateLoad(StackPtrTy, DynamicTop) : StaticTop;
461 return DynamicTop;
655 Function &F, Value *UnsafeStackPtr, AllocaInst *DynamicTop,
686 if (DynamicTop)
687 IRB.CreateStore(NewTop, DynamicTop);
833 AllocaInst *DynamicTop = createStackRestorePoints(
837 moveDynamicAllocasToUnsafeStack(F, UnsafeStackPtr, DynamicTop,