Lines Matching refs:info
125 LOGE("Tried to get info on a non-existant temp: r%d",reg);
151 RegisterInfo *info = getRegInfo(cUnit, reg);
152 if (info->live && info->dirty) {
153 info->dirty = false;
155 dvmCompilerS2VReg(cUnit, info->sReg) << 2,
642 static void flushAllRegsBody(CompilationUnit *cUnit, RegisterInfo *info,
647 if (info[i].live && info[i].dirty) {
648 if (info[i].pair) {
649 flushRegWide(cUnit, info[i].reg, info[i].partner);
651 flushReg(cUnit, info[i].reg);
681 RegisterInfo *info = getRegInfo(cUnit, reg);
682 if ((info->reg == reg) && (info->sReg == sReg) && info->live) {
686 info->live = true;
689 info->live = false;
691 info->sReg = sReg;
705 RegisterInfo *info = getRegInfo(cUnit, reg);
706 info->pair = false;
711 RegisterInfo *info = getRegInfo(cUnit, reg);
712 info->dirty = false;
717 RegisterInfo *info = getRegInfo(cUnit, reg);
718 info->dirty = true;
723 RegisterInfo *info = getRegInfo(cUnit, reg);
724 info->inUse = true;
730 RegisterInfo *info = getRegInfo(cUnit, reg);
731 return (info && info->live && info->dirty);
797 // Can reuse - update the register usage info