Searched defs:numstackframes (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A Djvmticmlr.h89 jint numstackframes; /* number of methods on the stack */ member in struct:_PCStackInfo
90 jmethodID* methods; /* array of numstackframes method ids */
91 jint* bcis; /* array of numstackframes bytecode indices */
/openjdk7/jdk/src/share/javavm/export/
H A Djvmticmlr.h89 jint numstackframes; /* number of methods on the stack */ member in struct:_PCStackInfo
90 jmethodID* methods; /* array of numstackframes method ids */
91 jint* bcis; /* array of numstackframes bytecode indices */
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp1695 jint numstackframes = 0; local
1713 numstackframes=0;
1715 numstackframes++;
1717 assert(numstackframes != 0, "numstackframes must be nonzero.");
1718 record->pcinfo[scope].methods = (jmethodID *)NEW_RESOURCE_ARRAY(jmethodID, numstackframes);
1719 record->pcinfo[scope].bcis = (jint *)NEW_RESOURCE_ARRAY(jint, numstackframes);
1720 record->pcinfo[scope].numstackframes = numstackframes;

Completed in 39 milliseconds