Home | History | Annotate | Download | only in x86

Lines Matching refs:isConst

758     for(k = 0; k < num_compile_entries; k++) compileTable[k].isConst = false;
808 //set isConst to true for CONST & MOVE MOVE_OBJ?
809 //clear isConst to true for MOVE, MOVE_OBJ, MOVE_RESULT, MOVE_EXCEPTION ...
810 bool isConst = getConstInfo(bb); //will reset isConst if a VR is updated by the bytecode
850 if(!isConst && !isDeadStmt) //isDeadStmt is false when DSE_OPT is not enabled
896 } else { //isConst || isDeadStmt
2778 int isConst = isVirtualRegConstant(vrNum, type, value, false); //do not update refCount
2779 if(isConst == 1 || isConst == 3) {
2782 if(getRegSize(type) == OpndSize_64 && (isConst == 2 || isConst == 3)) {
2785 if(isConst != 3 && compileTable[index].physicalReg != PhysicalReg_Null)
2906 ALOGI("constVRTable VR %d isConst %d value %x", constVRTable[k].regNum, constVRTable[k].isConst, constVRTable[k].value);
2920 isConstL = constVRTable[indexL].isConst;
2923 isConstH = constVRTable[indexH].isConst;
4560 if(!constVRTable[k].isConst) continue;
4741 ALOGI("regNum %d physicalType %d refCount %d isConst %d physicalReg %d type %d",
4743 compileTable[jj].refCount, compileTable[jj].isConst, compileTable[jj].physicalReg, compileTable[jj].gType);