Lines Matching refs:AllocSize
3420 SDValue AllocSize = getValue(I.getArraySize()); in visitAlloca() local
3423 if (AllocSize.getValueType() != IntPtr) in visitAlloca()
3424 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurSDLoc(), IntPtr); in visitAlloca()
3426 AllocSize = DAG.getNode(ISD::MUL, getCurSDLoc(), IntPtr, in visitAlloca()
3427 AllocSize, in visitAlloca()
3439 AllocSize = DAG.getNode(ISD::ADD, getCurSDLoc(), in visitAlloca()
3440 AllocSize.getValueType(), AllocSize, in visitAlloca()
3444 AllocSize = DAG.getNode(ISD::AND, getCurSDLoc(), in visitAlloca()
3445 AllocSize.getValueType(), AllocSize, in visitAlloca()
3448 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; in visitAlloca()
3449 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other); in visitAlloca()