Home | History | Annotate | Download | only in quick

Lines Matching full:info_hi

551     RegisterInfo* info_hi = GetRegInfo(rl.high_reg);
557 if (info_hi->is_temp) {
558 info_hi->pair = false;
559 info_hi->def_start = NULL;
560 info_hi->def_end = NULL;
672 RegisterInfo* info_hi = GetRegInfo(high_reg);
673 info_lo->pair = info_hi->pair = true;
675 info_hi->partner = low_reg;
783 RegisterInfo* info_hi = AllocLive(GetSRegHi(loc.s_reg_low), kAnyReg);
786 match = match && (info_hi != NULL);
788 match = match && (IsFpReg(info_lo->reg) == IsFpReg(info_hi->reg));
792 match &= ((info_hi->reg - info_lo->reg) == 1);
795 if (match && (info_lo->pair || info_hi->pair)) {
796 match = (info_lo->pair == info_hi->pair);
797 match &= ((info_lo->reg == info_hi->partner) &&
798 (info_hi->reg == info_lo->partner));
803 loc.high_reg = info_hi->reg;
816 if (info_hi) {
817 Clobber(info_hi->reg);
818 FreeTemp(info_hi->reg);
819 if (info_hi->pair)
820 Clobber(info_hi->partner);