Lines Matching refs:Infos

561 static void DecodeIITType(unsigned &NextElt, ArrayRef<unsigned char> Infos,  in DecodeIITType()  argument
563 IIT_Info Info = IIT_Info(Infos[NextElt++]); in DecodeIITType()
606 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
610 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
614 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
618 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
622 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
626 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
630 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
634 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
638 Infos[NextElt++])); in DecodeIITType()
639 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
643 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
648 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
654 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
660 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
666 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
672 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
678 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
693 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
739 static Type *DecodeFixedType(ArrayRef<Intrinsic::IITDescriptor> &Infos, in DecodeFixedType() argument
742 IITDescriptor D = Infos.front(); in DecodeFixedType()
743 Infos = Infos.slice(1); in DecodeFixedType()
757 return VectorType::get(DecodeFixedType(Infos, Tys, Context),D.Vector_Width); in DecodeFixedType()
759 return PointerType::get(DecodeFixedType(Infos, Tys, Context), in DecodeFixedType()
765 Elts[i] = DecodeFixedType(Infos, Tys, Context); in DecodeFixedType()
791 Type *EltTy = DecodeFixedType(Infos, Tys, Context); in DecodeFixedType()