Lines Matching refs:DynamicTop
197 AllocaInst *DynamicTop,
452 AllocaInst *DynamicTop = nullptr; in createStackRestorePoints() local
456 DynamicTop = IRB.CreateAlloca(StackPtrTy, /*ArraySize=*/nullptr, in createStackRestorePoints()
458 IRB.CreateStore(StaticTop, DynamicTop); in createStackRestorePoints()
467 DynamicTop ? IRB.CreateLoad(StackPtrTy, DynamicTop) : StaticTop; in createStackRestorePoints()
471 return DynamicTop; in createStackRestorePoints()
658 Function &F, Value *UnsafeStackPtr, AllocaInst *DynamicTop, in moveDynamicAllocasToUnsafeStack() argument
690 if (DynamicTop) in moveDynamicAllocasToUnsafeStack()
691 IRB.CreateStore(NewTop, DynamicTop); in moveDynamicAllocasToUnsafeStack()
838 AllocaInst *DynamicTop = createStackRestorePoints( in run() local
842 moveDynamicAllocasToUnsafeStack(F, UnsafeStackPtr, DynamicTop, in run()