Searched refs:isConst (Results 1 - 4 of 4) sorted by relevance

/dalvik/vm/compiler/codegen/x86/
H A DLowerHelper.cpp902 int isConst = isVirtualRegConstant(vA, type, tmpValue, true/*updateRefCount*/); local
903 if(isConst == 3) {
931 if(isConst == 1) dumpImmToMem(vA, OpndSize_32, tmpValue[0]);
932 if(isConst == 2) dumpImmToMem(vA+1, OpndSize_32, tmpValue[1]);
975 int isConst = isVirtualRegConstant(vB, getTypeFromIntSize(size), tmpValue, false/*updateRefCount*/); local
976 if(isConst > 0) {
987 if(isConst == 1 || isConst == 3) dumpImmToMem(vB, OpndSize_32, tmpValue[0]);
988 if(isConst == 2 || isConst
1052 int isConst = isVirtualRegConstant(vA, getTypeFromIntSize(size), tmpValue, false/*updateRefCount*/); local
1113 int isConst = isVirtualRegConstant(vA, getTypeFromIntSize(size), tmpValue, false/*updateRefCount*/); local
1275 int isConst = isVirtualRegConstant(vA, type, tmpValue, local
1328 int isConst = isVirtualRegConstant(vA, getTypeFromIntSize(size), tmpValue, local
1715 int isConst; local
[all...]
H A DAnalysisO1.h196 bool isConst; member in struct:ConstVRInfo
244 bool isConst; member in struct:compileTableEntry
H A DBytecodeVisitor.cpp452 //! set "isConst" to false
469 constVRTable[indexL].isConst = false;
472 constVRTable[indexH].isConst = false;
477 //! set "isConst" to true
497 constVRTable[indexL].isConst = true;
505 constVRTable[indexH].isConst = true;
520 //compileTable[indexOrig].isConst = false;
542 //for other opcode, if update the register, set isConst to false
564 infoArray[entry].isConst = true;
737 infoArray[entry].isConst
[all...]
H A DAnalysisO1.cpp758 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 local
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
[all...]

Completed in 119 milliseconds