OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:liveRegs
(Results
1 - 5
of
5
) sorted by null
/dalvik/vm/analysis/
VfyBasicBlock.h
35
* "
liveRegs
" indicates the set of registers that are live at the end of
46
BitVector*
liveRegs
; /* liveness for each register */
Liveness.cpp
147
assert(workBlock->
liveRegs
!= NULL);
148
dvmCopyBitVector(workBits, workBlock->
liveRegs
);
151
dumpLiveState(vdata, 0xfffd, workBlock->
liveRegs
);
183
BitVector* lineBits = vdata->registerLines[curIdx].
liveRegs
;
185
lineBits = vdata->registerLines[curIdx].
liveRegs
=
216
pred->changed = dvmCheckMergeBitVectors(pred->
liveRegs
, workBits);
220
dumpLiveState(vdata, 0xfffa, pred->
liveRegs
);
251
if (vdata->registerLines[checkIdx].
liveRegs
== NULL) {
253
"GLITCH: no
liveRegs
for GC point 0x%04x", checkIdx);
256
} else if (vdata->registerLines[checkIdx].
liveRegs
!= NULL)
[
all
...]
CodeVerify.h
131
* If live-precise register maps are enabled, the "
liveRegs
" vector will
141
BitVector*
liveRegs
;
VfyBasicBlock.cpp
94
newBlock->
liveRegs
= dvmAllocBitVector(vdata->insnRegCount, false);
95
if (newBlock->
liveRegs
== NULL) {
547
dvmFreeBitVector(block->
liveRegs
);
CodeVerify.cpp
[
all
...]
Completed in 74 milliseconds