Lines Matching refs:ArgVT
1099 EVT ArgVT = ValueVTs[Value]; in analyzeFormalArgumentsCompute() local
1100 EVT MemVT = ArgVT; in analyzeFormalArgumentsCompute()
1101 MVT RegisterVT = getRegisterTypeForCallingConv(Ctx, CC, ArgVT); in analyzeFormalArgumentsCompute()
1102 unsigned NumRegs = getNumRegistersForCallingConv(Ctx, CC, ArgVT); in analyzeFormalArgumentsCompute()
1106 if (ArgVT.isExtended()) { in analyzeFormalArgumentsCompute()
1111 MemVT = ArgVT; in analyzeFormalArgumentsCompute()
1113 } else if (ArgVT.isVector() && RegisterVT.isVector() && in analyzeFormalArgumentsCompute()
1114 ArgVT.getScalarType() == RegisterVT.getScalarType()) { in analyzeFormalArgumentsCompute()
1115 assert(ArgVT.getVectorNumElements() > RegisterVT.getVectorNumElements()); in analyzeFormalArgumentsCompute()
1120 } else if (ArgVT.isVector() && in analyzeFormalArgumentsCompute()
1121 ArgVT.getVectorNumElements() == NumRegs) { in analyzeFormalArgumentsCompute()
1124 MemVT = ArgVT.getScalarType(); in analyzeFormalArgumentsCompute()
1125 } else if (ArgVT.isExtended()) { in analyzeFormalArgumentsCompute()
1129 unsigned MemoryBits = ArgVT.getStoreSizeInBits() / NumRegs; in analyzeFormalArgumentsCompute()
1130 assert(ArgVT.getStoreSizeInBits() % NumRegs == 0); in analyzeFormalArgumentsCompute()