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