Lines Matching refs:ArgVT
1148 EVT ArgVT = ValueVTs[Value]; in analyzeFormalArgumentsCompute() local
1149 EVT MemVT = ArgVT; in analyzeFormalArgumentsCompute()
1150 MVT RegisterVT = getRegisterTypeForCallingConv(Ctx, CC, ArgVT); in analyzeFormalArgumentsCompute()
1151 unsigned NumRegs = getNumRegistersForCallingConv(Ctx, CC, ArgVT); in analyzeFormalArgumentsCompute()
1155 if (ArgVT.isExtended()) { in analyzeFormalArgumentsCompute()
1160 MemVT = ArgVT; in analyzeFormalArgumentsCompute()
1162 } else if (ArgVT.isVector() && RegisterVT.isVector() && in analyzeFormalArgumentsCompute()
1163 ArgVT.getScalarType() == RegisterVT.getScalarType()) { in analyzeFormalArgumentsCompute()
1164 assert(ArgVT.getVectorNumElements() > RegisterVT.getVectorNumElements()); in analyzeFormalArgumentsCompute()
1169 } else if (ArgVT.isVector() && in analyzeFormalArgumentsCompute()
1170 ArgVT.getVectorNumElements() == NumRegs) { in analyzeFormalArgumentsCompute()
1173 MemVT = ArgVT.getScalarType(); in analyzeFormalArgumentsCompute()
1174 } else if (ArgVT.isExtended()) { in analyzeFormalArgumentsCompute()
1178 unsigned MemoryBits = ArgVT.getStoreSizeInBits() / NumRegs; in analyzeFormalArgumentsCompute()
1179 assert(ArgVT.getStoreSizeInBits() % NumRegs == 0); in analyzeFormalArgumentsCompute()