Searched refs:bottom (Results 1 - 25 of 25) sorted by relevance

/dalvik/vm/
H A DReferenceTable.h41 Object** table; /* bottom of the list */
93 * "bottom". To include the entire table, pass in "pRef->table" as the
94 * bottom.
98 Object** dvmFindInReferenceTable(const ReferenceTable* pRef, Object** bottom,
104 * We stop searching for a match after examining the element at "bottom".
109 bool dvmRemoveFromReferenceTable(ReferenceTable* pRef, Object** bottom,
H A DReferenceTable.cpp100 Object** dvmFindInReferenceTable(const ReferenceTable* pRef, Object** bottom, argument
106 while (--ptr >= bottom) {
116 * examining the element at "bottom".
121 bool dvmRemoveFromReferenceTable(ReferenceTable* pRef, Object** bottom, argument
129 * Scan from the most-recently-added entry up to the bottom entry for
132 ptr = dvmFindInReferenceTable(pRef, bottom, obj);
/dalvik/vm/compiler/template/armv5te/
H A DTEMPLATE_INVOKE_METHOD_CHAIN.S18 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
19 cmp r10, r9 @ bottom < interpStackEnd?
H A DTEMPLATE_INVOKE_METHOD_NO_OPT.S15 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
16 cmp r10, r9 @ bottom < interpStackEnd?
H A DTEMPLATE_INVOKE_METHOD_NATIVE.S9 cmp r10, r9 @ bottom < interpStackEnd?
/dalvik/vm/compiler/template/mips/
H A DTEMPLATE_INVOKE_METHOD_CHAIN.S22 sub t0, t0, t6 # t0<- bottom (newsave-outsSize)
23 bgeu t0, t9, 1f # bottom < interpStackEnd?
H A DTEMPLATE_INVOKE_METHOD_NO_OPT.S17 sub t0, t0, t6 # t0<- bottom (newsave-outsSize)
18 bgeu t0, t9, 1f # bottom < interpStackEnd?
H A DTEMPLATE_INVOKE_METHOD_NATIVE.S10 bgeu t0, t9, 1f # bottom < interpStackEnd?
/dalvik/vm/mterp/c/
H A DgotoTargets.cpp683 /* falling through to JNI code or off the bottom of the stack */
843 u1* bottom; variable
844 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
845 if (bottom < self->interpStackEnd) {
848 self->interpStackStart, self->interpStackEnd, bottom,
849 (u1*) fp - bottom, self->interpStackSize,
855 //ALOGD("+++ fp=%p newFp=%p newSave=%p bottom=%p",
856 // fp, newFp, newSaveArea, bottom);
/dalvik/vm/arch/arm/
H A DCallOldABI.S138 @ and the VM preserves an overflow region at the bottom, so it should be
/dalvik/vm/mterp/out/
H A DInterpC-mips.cpp1874 /* falling through to JNI code or off the bottom of the stack */
2034 u1* bottom; variable
2035 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
2036 if (bottom < self->interpStackEnd) {
2039 self->interpStackStart, self->interpStackEnd, bottom,
2040 (u1*) fp - bottom, self->interpStackSize,
2046 //ALOGD("+++ fp=%p newFp=%p newSave=%p bottom=%p",
2047 // fp, newFp, newSaveArea, bottom);
H A DInterpC-x86.cpp1950 /* falling through to JNI code or off the bottom of the stack */
2110 u1* bottom; variable
2111 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
2112 if (bottom < self->interpStackEnd) {
2115 self->interpStackStart, self->interpStackEnd, bottom,
2116 (u1*) fp - bottom, self->interpStackSize,
2122 //ALOGD("+++ fp=%p newFp=%p newSave=%p bottom=%p",
2123 // fp, newFp, newSaveArea, bottom);
H A DInterpC-allstubs.cpp3769 /* falling through to JNI code or off the bottom of the stack */
3929 u1* bottom; variable
3930 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
3931 if (bottom < self->interpStackEnd) {
3934 self->interpStackStart, self->interpStackEnd, bottom,
3935 (u1*) fp - bottom, self->interpStackSize,
3941 //ALOGD("+++ fp=%p newFp=%p newSave=%p bottom=%p",
3942 // fp, newFp, newSaveArea, bottom);
H A DInterpC-portable.cpp3717 /* falling through to JNI code or off the bottom of the stack */
3877 u1* bottom; local
3878 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
3879 if (bottom < self->interpStackEnd) {
3882 self->interpStackStart, self->interpStackEnd, bottom,
3883 (u1*) fp - bottom, self->interpStackSize,
3889 //ALOGD("+++ fp=%p newFp=%p newSave=%p bottom=%p",
3890 // fp, newFp, newSaveArea, bottom);
H A DInterpAsm-armv5te-vfp.S16199 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
16200 cmp r3, r9 @ bottom < interpStackEnd?
H A DInterpAsm-armv7-a-neon.S16136 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
16137 cmp r3, r9 @ bottom < interpStackEnd?
H A DInterpAsm-armv7-a.S16136 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
16137 cmp r3, r9 @ bottom < interpStackEnd?
H A DInterpAsm-x86.S16189 sub %ecx, %eax # %eax<- bottom; (newSaveArea - outsSize)
16190 cmp TMP_SPILL1(%ebp), %eax # compare interpStackEnd and bottom
H A DInterpAsm-armv5te.S16657 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
16658 cmp r3, r9 @ bottom < interpStackEnd?
/dalvik/vm/mterp/x86/
H A Dfooter.S512 sub %ecx, %eax # %eax<- bottom; (newSaveArea - outsSize)
513 cmp TMP_SPILL1(%ebp), %eax # compare interpStackEnd and bottom
/dalvik/vm/compiler/template/out/
H A DCompilerTemplateAsm-armv5te.S239 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
240 cmp r10, r9 @ bottom < interpStackEnd?
307 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
308 cmp r10, r9 @ bottom < interpStackEnd?
418 cmp r10, r9 @ bottom < interpStackEnd?
1312 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
1313 cmp r10, r9 @ bottom < interpStackEnd?
1384 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
1385 cmp r10, r9 @ bottom < interpStackEnd?
1503 cmp r10, r9 @ bottom < interpStackEn
[all...]
H A DCompilerTemplateAsm-armv5te-vfp.S239 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
240 cmp r10, r9 @ bottom < interpStackEnd?
307 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
308 cmp r10, r9 @ bottom < interpStackEnd?
418 cmp r10, r9 @ bottom < interpStackEnd?
1581 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
1582 cmp r10, r9 @ bottom < interpStackEnd?
1653 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
1654 cmp r10, r9 @ bottom < interpStackEnd?
1772 cmp r10, r9 @ bottom < interpStackEn
[all...]
H A DCompilerTemplateAsm-armv7-a-neon.S239 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
240 cmp r10, r9 @ bottom < interpStackEnd?
307 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
308 cmp r10, r9 @ bottom < interpStackEnd?
418 cmp r10, r9 @ bottom < interpStackEnd?
1581 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
1582 cmp r10, r9 @ bottom < interpStackEnd?
1653 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
1654 cmp r10, r9 @ bottom < interpStackEnd?
1772 cmp r10, r9 @ bottom < interpStackEn
[all...]
H A DCompilerTemplateAsm-armv7-a.S239 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
240 cmp r10, r9 @ bottom < interpStackEnd?
307 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
308 cmp r10, r9 @ bottom < interpStackEnd?
418 cmp r10, r9 @ bottom < interpStackEnd?
1581 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
1582 cmp r10, r9 @ bottom < interpStackEnd?
1653 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
1654 cmp r10, r9 @ bottom < interpStackEnd?
1772 cmp r10, r9 @ bottom < interpStackEn
[all...]
/dalvik/vm/mterp/armv5te/
H A Dfooter.S555 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
556 cmp r3, r9 @ bottom < interpStackEnd?

Completed in 432 milliseconds