• Home
  • Raw
  • Download

Lines Matching refs:Infos

563 static void DecodeIITType(unsigned &NextElt, ArrayRef<unsigned char> Infos,  in DecodeIITType()  argument
565 IIT_Info Info = IIT_Info(Infos[NextElt++]); 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 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
642 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
646 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
650 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
654 Infos[NextElt++])); in DecodeIITType()
655 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
659 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
664 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
670 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
676 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
682 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
688 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
694 unsigned ArgInfo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType()
709 DecodeIITType(NextElt, Infos, OutputTable); in DecodeIITType()
755 static Type *DecodeFixedType(ArrayRef<Intrinsic::IITDescriptor> &Infos, in DecodeFixedType() argument
758 IITDescriptor D = Infos.front(); in DecodeFixedType()
759 Infos = Infos.slice(1); in DecodeFixedType()
774 return VectorType::get(DecodeFixedType(Infos, Tys, Context),D.Vector_Width); in DecodeFixedType()
776 return PointerType::get(DecodeFixedType(Infos, Tys, Context), in DecodeFixedType()
782 Elts[i] = DecodeFixedType(Infos, Tys, Context); in DecodeFixedType()
808 Type *EltTy = DecodeFixedType(Infos, Tys, Context); in DecodeFixedType()