Searched refs:cur_bci (Results 1 - 14 of 14) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp122 int cur_bci() const { return _bc_start - _start; } function in class:ciBytecodeStream
205 return cur_bci() + bytecode().get_offset_s2(cur_bc_raw());
216 return cur_bci() + bytecode().get_offset_s4(cur_bc_raw());
227 return cur_bci() + get_int_table(index); }
H A DciMethodBlocks.cpp115 int bci = s.cur_bci();
183 dest_bci = s.cur_bci() + sw.dest_offset_at(i);
186 dest_bci = s.cur_bci() + sw.default_offset();
202 dest_bci = s.cur_bci() + sw.pair_at(i).offset();
205 dest_bci = s.cur_bci() + sw.default_offset();
H A DbcEscapeAnalyzer.cpp362 while (s.next() != ciBytecodeStream::EOBC() && s.cur_bci() < limit_bci) {
789 dest_bci = s.cur_bci() + sw.dest_offset_at(i);
793 dest_bci = s.cur_bci() + sw.default_offset();
807 dest_bci = s.cur_bci() + sw.pair_at(i).offset();
811 dest_bci = s.cur_bci() + sw.default_offset();
973 int fall_through_bci = s.cur_bci();
H A DciTypeFlow.cpp821 _trap_bci = str->cur_bci();
829 log->begin_elem("uncommon_trap method='%d' bci='%d'", mid, str->cur_bci());
869 tty->print_cr(">> Interpreting bytecode %d:%s", str->cur_bci(),
1645 assert(str->cur_bci() == limit(), "bad block end");
1654 int current_bci = str->cur_bci();
2325 str.cur_bci() < limit) {
/openjdk7/hotspot/src/share/vm/opto/
H A DparseHelper.cpp412 int cur_bci = bci(); local
414 (target_bci <= cur_bci) && count_invocations() && UseOnStackReplacement;
425 ciProfileData* data = md->bci_to_data(cur_bci);
436 ciProfileData* data = md->bci_to_data(cur_bci);
452 set_bci(cur_bci);
H A Dparse3.cpp234 set_bci(iter().cur_bci()); // put it back
H A DdoCall.cpp582 set_bci(iter().cur_bci()); // put it back
673 set_bci(iter().cur_bci()); // put it back
H A Dparse1.cpp1370 set_parse_bci(iter().cur_bci());
2172 dump_bci( iter.cur_bci() );
H A DgraphKit.cpp811 int cur_bci = jvms->bci(); local
812 if (cur_method != NULL && cur_bci != InvocationEntryBci) {
813 Bytecodes::Code code = cur_method->java_code_at_bci(cur_bci);
H A Dparse2.cpp953 Bytecodes::name(iter().cur_bc()), iter().cur_bci());
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp68 void handle_exceptions(BlockBegin* current, int cur_bci);
147 BlockBegin* BlockListBuilder::make_block_at(int cur_bci, BlockBegin* predecessor) { argument
148 assert(method()->bci_block_start().at(cur_bci), "wrong block starts of MethodLivenessAnalyzer");
150 BlockBegin* block = _bci2block->at(cur_bci);
152 block = new BlockBegin(cur_bci);
154 _bci2block->at_put(cur_bci, block);
157 assert(predecessor == NULL || predecessor->bci() < cur_bci, "targets for backward branches must already exist");
182 void BlockListBuilder::handle_exceptions(BlockBegin* current, int cur_bci) { argument
190 if (h->covers(cur_bci)) {
231 int cur_bci local
[all...]
H A Dc1_IR.cpp173 int cur_bci = bci(); local
174 if (cur_method != NULL && cur_bci != SynchronizationEntryBCI) {
175 Bytecodes::Code code = cur_method->java_code_at_bci(cur_bci);
H A Dc1_GraphBuilder.hpp203 int bci() const { return stream()->cur_bci(); }
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp66 return iter()->cur_bci();

Completed in 94 milliseconds