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