Searched refs:bcis (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A Djvmticmlr.h43 * The "methods" and "bcis" fields in each PCStackInfo struct specify a
85 * the methods array maps to same element in the bcis array.
91 jint* bcis; /* array of numstackframes bytecode indices */ member in struct:_PCStackInfo
/openjdk7/jdk/src/share/javavm/export/
H A Djvmticmlr.h43 * The "methods" and "bcis" fields in each PCStackInfo struct specify a
85 * the methods array maps to same element in the bcis array.
91 jint* bcis; /* array of numstackframes bytecode indices */ member in struct:_PCStackInfo
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compilation.cpp436 GrowableArray<intptr_t>* bcis = new GrowableArray<intptr_t>(num_handlers); local
445 bcis->trunc_to(0);
453 int e = bcis->find(handler->handler_bci());
463 bcis->append(handler->handler_bci());
478 exception_handler_table()->add_subtable(info->pco(), bcis, scope_depths, pcos);
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp1256 typeArrayHandle bcis (THREAD,
1259 if (methods.is_null() || bcis.is_null()) {
1268 int bci = bcis->ushort_at(index);
1313 typeArrayHandle bcis (thread,
1316 if (methods.is_null() || bcis.is_null()) {
1325 int bci = bcis->ushort_at(index);
1371 typeArrayOop bcis = oopFactory::new_shortArray(trace_chunk_size, CHECK); local
1372 typeArrayHandle new_bcis(THREAD, bcis);
1585 typeArrayHandle bcis(THREAD, b);
1589 backtrace->obj_at_put(trace_bcis_offset, bcis());
1610 typeArrayOop bcis = typeArrayOop(b); local
1670 typeArrayOop bcis = typeArrayOop(chunk->obj_at(trace_bcis_offset)); local
1701 typeArrayOop bcis = typeArrayOop(chunk->obj_at(trace_bcis_offset)); local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DdoCall.cpp602 GrowableArray<int>* bcis = new (C->node_arena()) GrowableArray<int>(C->node_arena(), 8, 0, -1); local
626 bcis->append(h_bci);
630 int len = bcis->length();
641 int handler_bci = bcis->at(i);
/openjdk7/jdk/src/share/demo/jvmti/compiledMethodLoad/
H A DcompiledMethodLoad.c101 record->bcis[i]);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp1719 record->pcinfo[scope].bcis = (jint *)NEW_RESOURCE_ARRAY(jint, numstackframes);
1726 record->pcinfo[scope].bcis[stackframe] = sd->bci();

Completed in 53 milliseconds