Lines Matching defs:DynamicTop
176 /// top to \p DynamicTop if non-null.
178 AllocaInst *DynamicTop,
443 AllocaInst *DynamicTop = nullptr;
447 DynamicTop = IRB.CreateAlloca(StackPtrTy, /*ArraySize=*/nullptr,
449 IRB.CreateStore(StaticTop, DynamicTop);
458 DynamicTop ? IRB.CreateLoad(StackPtrTy, DynamicTop) : StaticTop;
462 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,