Searched defs:cur_bci (Results 1 - 5 of 5) 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); }
/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 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);
/openjdk7/hotspot/src/share/vm/c1/
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.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...]

Completed in 53 milliseconds