Searched refs:bci (Results 226 - 245 of 245) sorted by relevance

12345678910

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp728 // patch throwing pc into return address (has bci & oop map)
1104 Register bci = rax, method = rbx; local
1107 // Retrieve bci
1108 __ movl(bci, Address(rbp, 2*BytesPerWord));
1111 int call_offset = __ call_RT(noreg, noreg, CAST_FROM_FN_PTR(address, counter_overflow), bci, method);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp2606 case EK_BCI: // PH: transmit R(bci), store bci
2610 case EK_BCID: // POH: transmit D(R(bci)), store bci
2614 case EK_BCO: // OH: transmit D(R(bci)), store D(bci)
4237 int bci = to_bci(bii);
4238 putu2(bci);
4240 putu2(to_bci(bii) - bci);
4254 int bci
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp429 void CompileTask::print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg) { argument
456 st->print("@ %d ", bci); // print bci
1065 // Positive OSROnlyBCI means only compile that bci. Negative means don't compile that BCI.
1186 assert(osr_bci == InvocationEntryBci || (0 <= osr_bci && osr_bci < method->code_size()), "bci out of range");
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageWriter.java1240 public int encodeBCI(int bci) {
1242 return code.encodeBCI(bci);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_InstructionPrinter.cpp320 fill_to(bci_pos , filler); output()->print("bci" );
367 case addressTag: output()->print("bci:%d", t->as_AddressConstant()->value()); break;
592 // print block bci range
593 output()->print("[%d, %d]", x->bci(), (end == NULL ? -1 : end->printable_bci()));
H A Dc1_LIR.hpp1548 void set_profiled_bci(int bci) { _profiled_bci = bci; } argument
2155 void profile_call(ciMethod* method, int bci, ciMethod* callee, LIR_Opr mdo, LIR_Opr recv, LIR_Opr t1, ciKlass* cha_klass) { argument
2156 append(new LIR_OpProfileCall(lir_profile_call, method, bci, callee, mdo, recv, t1, cha_klass));
H A Dc1_IR.cpp173 int cur_bci = bci();
H A Dc1_LinearScan.cpp2279 assert(d1->bci() == d2->bci(), "not equal");
2320 if (info->stack()->bci() != SynchronizationEntryBCI && !info->scope()->method()->is_native()) {
2321 Bytecodes::Code code = info->scope()->method()->java_code_at_bci(info->stack()->bci());
2900 return new IRScopeDebugInfo(cur_scope, cur_state->bci(), locals, expressions, monitors, caller_debug_info);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp662 int vf_bci = jvf->bci();
H A DjvmtiExport.cpp1303 current_bci = st.bci();
1726 record->pcinfo[scope].bcis[stackframe] = sd->bci();
H A DjvmtiEnv.cpp2781 jvmti_table[index].start_location = (jlocation) stream.bci();
H A Djvm.cpp181 line_number = vfst.method()->line_number_from_bci(vfst.bci());
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp390 // failures when searching for the corresponding bci => add a nop
476 // failures when searching for the corresponding bci => add a nop
2565 void LIR_Assembler::setup_md_access(ciMethod* method, int bci, argument
2569 data = md->bci_to_data(bci);
2964 int bci = op->profiled_bci(); local
2970 ciProfileData* data = md->bci_to_data(bci);
2993 Bytecodes::Code bc = method->java_code_at_bci(bci);
H A Dinterp_masm_sparc.cpp1749 // See if return_bci is equal to bci[n]:
1753 // return_bci is equal to bci[n]. Increment the count.
2220 static bool verify_return_address(methodOopDesc* m, int bci) { argument
2223 + in_bytes(constMethodOopDesc::codes_offset()) + bci;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp65 line_number = vfst.method()->line_number_from_bci(vfst.bci());
H A Dthread.cpp2592 // search for the current bci in that string.
2597 jio_snprintf(buffer, sizeof(buffer), "%d", sd->bci());
2603 // Check that the bci found is bracketed by terminators.
3012 java_lang_Throwable::print_stack_element(st, jvf->method(), jvf->bci());
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1357 u2 bci = cfs->get_u2_fast(); // start_pc local
1359 guarantee_property(bci < code_length,
1361 (*write_stream)->write_pair(bci, line);
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp165 line_number = vfst.method()->line_number_from_bci(vfst.bci());
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.cpp1332 ciProfileData* data = methodData->bci_to_data(jvms->bci());
H A Dtype.cpp169 return TypeRawPtr::make((address)(intptr_t)type->as_return_address()->bci());

Completed in 292 milliseconds

12345678910