Home
last modified time | relevance | path

Searched refs:defV (Results 1 – 3 of 3) sorted by relevance

/dalvik/vm/compiler/
DDataflow.c912 static inline void handleLiveInUse(BitVector *useV, BitVector *defV, in handleLiveInUse() argument
916 if (!dvmIsBitSet(defV, dalvikRegId)) { in handleLiveInUse()
922 static inline void handleLiveInDef(BitVector *defV, int dalvikRegId) in handleLiveInDef() argument
924 dvmCompilerSetBit(defV, dalvikRegId); in handleLiveInDef()
934 BitVector *useV, *defV, *liveInV; in dvmCompilerFindLiveIn() local
943 defV = bb->dataFlowInfo->defV = in dvmCompilerFindLiveIn()
955 handleLiveInUse(useV, defV, liveInV, dInsn->vA); in dvmCompilerFindLiveIn()
957 handleLiveInUse(useV, defV, liveInV, dInsn->vA); in dvmCompilerFindLiveIn()
958 handleLiveInUse(useV, defV, liveInV, dInsn->vA+1); in dvmCompilerFindLiveIn()
961 handleLiveInUse(useV, defV, liveInV, dInsn->vB); in dvmCompilerFindLiveIn()
[all …]
DLoop.c44 dvmCopyBitVector(entry->dataFlowInfo->defV, in handlePhiPlacement()
49 dvmIntersectBitVectors(phiV, entry->dataFlowInfo->defV, in handlePhiPlacement()
50 loopBody->dataFlowInfo->defV); in handlePhiPlacement()
51 dvmIntersectBitVectors(phiV, entry->dataFlowInfo->defV, in handlePhiPlacement()
52 loopBranch->dataFlowInfo->defV); in handlePhiPlacement()
DDataflow.h90 BitVector *defV; member