Lines Matching refs:AllocSize
3158 SDValue AllocSize = getValue(I.getArraySize()); in visitAlloca() local
3161 if (AllocSize.getValueType() != IntPtr) in visitAlloca()
3162 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurDebugLoc(), IntPtr); in visitAlloca()
3164 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), IntPtr, in visitAlloca()
3165 AllocSize, in visitAlloca()
3177 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(), in visitAlloca()
3178 AllocSize.getValueType(), AllocSize, in visitAlloca()
3182 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(), in visitAlloca()
3183 AllocSize.getValueType(), AllocSize, in visitAlloca()
3186 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; in visitAlloca()
3187 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other); in visitAlloca()