Lines Matching full:allocsize
3124 SDValue AllocSize = getValue(I.getArraySize());
3127 if (AllocSize.getValueType() != IntPtr)
3128 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurDebugLoc(), IntPtr);
3130 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), IntPtr,
3131 AllocSize,
3143 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
3144 AllocSize.getValueType(), AllocSize,
3148 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
3149 AllocSize.getValueType(), AllocSize,
3152 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
3153 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);