Lines Matching refs:Infos

1125 static void DecodeIITType(unsigned &NextElt, ArrayRef<unsigned char> Infos,  in DecodeIITType()  argument
1132 IIT_Info Info = IIT_Info(Infos[NextElt++]); in DecodeIITType()
1201 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1205 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1209 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1213 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1217 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1221 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1225 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1229 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1233 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1237 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1241 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1245 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1249 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1253 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1266 Infos[NextElt++])); in DecodeIITType()
1269 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1274 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1280 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1286 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1292 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1298 unsigned short ArgNo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1299 unsigned short RefNo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1318 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1322 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1328 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1334 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1340 DecodeIITType(NextElt, Infos, Info, OutputTable); in DecodeIITType()
1344 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
1390 static Type *DecodeFixedType(ArrayRef<Intrinsic::IITDescriptor> &Infos, in DecodeFixedType() argument
1394 IITDescriptor D = Infos.front(); in DecodeFixedType()
1395 Infos = Infos.slice(1); in DecodeFixedType()
1416 return VectorType::get(DecodeFixedType(Infos, Tys, Context), in DecodeFixedType()
1423 Elts.push_back(DecodeFixedType(Infos, Tys, Context)); in DecodeFixedType()
1456 Type *EltTy = DecodeFixedType(Infos, Tys, Context); in DecodeFixedType()
1561 Type *Ty, ArrayRef<Intrinsic::IITDescriptor> &Infos, in matchIntrinsicType() argument
1568 if (Infos.empty()) return true; in matchIntrinsicType()
1571 auto InfosRef = Infos; in matchIntrinsicType()
1577 IITDescriptor D = Infos.front(); in matchIntrinsicType()
1578 Infos = Infos.slice(1); in matchIntrinsicType()
1600 matchIntrinsicType(VT->getElementType(), Infos, ArgTys, in matchIntrinsicType()
1615 if (matchIntrinsicType(ST->getElementType(i), Infos, ArgTys, in matchIntrinsicType()
1685 Infos = Infos.slice(1); in matchIntrinsicType()
1700 return matchIntrinsicType(EltTy, Infos, ArgTys, DeferredChecks, in matchIntrinsicType()
1765 ArrayRef<Intrinsic::IITDescriptor> &Infos, in matchIntrinsicSignature() argument
1768 if (matchIntrinsicType(FTy->getReturnType(), Infos, ArgTys, DeferredChecks, in matchIntrinsicSignature()
1775 if (matchIntrinsicType(Ty, Infos, ArgTys, DeferredChecks, false)) in matchIntrinsicSignature()
1791 ArrayRef<Intrinsic::IITDescriptor> &Infos) { in matchIntrinsicVarArg() argument
1793 if (Infos.empty()) in matchIntrinsicVarArg()
1797 if (Infos.size() != 1) in matchIntrinsicVarArg()
1801 IITDescriptor D = Infos.front(); in matchIntrinsicVarArg()
1802 Infos = Infos.slice(1); in matchIntrinsicVarArg()