Lines Matching refs:DynamicTop
193 AllocaInst *DynamicTop,
442 AllocaInst *DynamicTop = nullptr; in createStackRestorePoints() local
446 DynamicTop = IRB.CreateAlloca(StackPtrTy, /*ArraySize=*/nullptr, in createStackRestorePoints()
448 IRB.CreateStore(StaticTop, DynamicTop); in createStackRestorePoints()
456 Value *CurrentTop = DynamicTop ? IRB.CreateLoad(DynamicTop) : StaticTop; in createStackRestorePoints()
460 return DynamicTop; in createStackRestorePoints()
647 Function &F, Value *UnsafeStackPtr, AllocaInst *DynamicTop, in moveDynamicAllocasToUnsafeStack() argument
678 if (DynamicTop) in moveDynamicAllocasToUnsafeStack()
679 IRB.CreateStore(NewTop, DynamicTop); in moveDynamicAllocasToUnsafeStack()
826 AllocaInst *DynamicTop = createStackRestorePoints( in run() local
830 moveDynamicAllocasToUnsafeStack(F, UnsafeStackPtr, DynamicTop, in run()