Searched refs:interpStackSize (Results 1 – 9 of 9) sorted by relevance
/dalvik/vm/interp/ |
D | Stack.c | 83 self->interpStackSize, method->clazz->descriptor, method->name); in dvmPushInterpFrame() 156 self->interpStackSize, method->name); in dvmPushJNIFrame() 230 self->interpStackSize, method->name); in dvmPushLocalFrame() 870 assert((u1*) fp >= interpStackStart - thread->interpStackSize); in dvmComputeVagueFrameDepth() 1042 self->interpStackStart - self->interpStackSize); in dvmHandleStackOverflow() 1044 self->interpStackEnd = self->interpStackStart - self->interpStackSize; in dvmHandleStackOverflow() 1077 newStackEnd = (self->interpStackStart - self->interpStackSize) in dvmCleanupStackOverflow() 1340 origSize = thread->interpStackSize; in dvmDumpRunningThreadStack()
|
/dalvik/vm/ |
D | Thread.c | 230 static Thread* allocThread(int interpStackSize); 907 static Thread* allocThread(int interpStackSize) in allocThread() argument 921 assert(interpStackSize >= kMinStackSize && interpStackSize <=kMaxStackSize); in allocThread() 938 stackBottom = (u1*) malloc(interpStackSize); in allocThread() 946 memset(stackBottom, 0xc5, interpStackSize); // stop valgrind complaints in allocThread() 948 stackBottom = mmap(NULL, interpStackSize, PROT_READ | PROT_WRITE, in allocThread() 960 thread->interpStackSize = interpStackSize; in allocThread() 961 thread->interpStackStart = stackBottom + interpStackSize; in allocThread() 965 dvmInitInterpStack(thread, interpStackSize); in allocThread() 1008 thread->threadId, thread->interpStackStart - thread->interpStackSize); in prepareThread() [all …]
|
D | Thread.h | 138 int interpStackSize; member
|
/dalvik/vm/mterp/c/ |
D | gotoTargets.c | 858 (u1*) fp - bottom, self->interpStackSize,
|
/dalvik/vm/mterp/out/ |
D | InterpC-x86-atom.c | 2180 (u1*) fp - bottom, self->interpStackSize,
|
D | InterpC-x86.c | 2117 (u1*) fp - bottom, self->interpStackSize,
|
D | InterpC-portstd.c | 4015 (u1*) fp - bottom, self->interpStackSize, in INTERP_FUNC_NAME()
|
D | InterpC-allstubs.c | 3986 (u1*) fp - bottom, self->interpStackSize,
|
D | InterpC-portdbg.c | 4265 (u1*) fp - bottom, self->interpStackSize, in INTERP_FUNC_NAME()
|