Lines Matching refs:VT
90 MVT ArgVT = Ins[i].VT; in AnalyzeFormalArguments()
103 MVT VT = Outs[i].VT; in CheckReturn() local
105 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) in CheckReturn()
117 MVT VT = Outs[i].VT; in AnalyzeReturn() local
119 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) in AnalyzeReturn()
130 MVT ArgVT = Outs[i].VT; in AnalyzeCallOperands()
165 MVT VT = Ins[i].VT; in AnalyzeCallResult() local
167 if (Fn(i, VT, VT, CCValAssign::Full, Flags, *this)) { in AnalyzeCallResult()
170 << VT << '\n'; in AnalyzeCallResult()
178 void CCState::AnalyzeCallResult(MVT VT, CCAssignFn Fn) { in AnalyzeCallResult() argument
179 if (Fn(0, VT, VT, CCValAssign::Full, ISD::ArgFlagsTy(), *this)) { in AnalyzeCallResult()
182 << VT << '\n'; in AnalyzeCallResult()
193 static bool isValueTypeInRegForCC(CallingConv::ID CC, MVT VT) { in isValueTypeInRegForCC() argument
194 if (VT.isVector()) in isValueTypeInRegForCC()
196 if (!VT.isInteger()) in isValueTypeInRegForCC()
202 MVT VT, CCAssignFn Fn) { in getRemainingRegParmsForType() argument
209 if (isValueTypeInRegForCC(CallingConv, VT)) in getRemainingRegParmsForType()
216 if (Fn(0, VT, VT, CCValAssign::Full, Flags, *this)) { in getRemainingRegParmsForType()
218 dbgs() << "Call has unhandled type " << VT in getRemainingRegParmsForType()