Searched defs:std_entry (Results 1 - 4 of 4) sorted by relevance
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_IR.hpp | 303 BlockBegin* std_entry() const { return start()->end()->as_Base()->std_entry(); } function in class:IR
|
H A D | c1_IR.cpp | 849 BlockBegin* std_entry = ((Base*)start_block->end())->std_entry(); local 866 compute_dominator(std_entry, start_block); 871 if (ready_for_processing(std_entry)) { 872 sort_into_work_list(std_entry); 874 assert(false, "the std_entry must be ready for processing (otherwise, the method has no start block)");
|
H A D | c1_GraphBuilder.cpp | 126 BlockBegin* std_entry = make_block_at(0, NULL); local 128 std_entry->set(BlockBegin::std_entry_flag); 2850 BlockBegin* GraphBuilder::setup_start_block(int osr_bci, BlockBegin* std_entry, BlockBegin* osr_entry, ValueStack* state) { argument 2857 // necesary if std_entry is also a backward branch target because 2862 if (std_entry->number_of_preds() > 0 || count_invocations() || count_backedges()) { 2863 new_header_block = header_block(std_entry, BlockBegin::std_entry_flag, state); 2865 new_header_block = std_entry; 2877 start->set_state(state->copy(ValueStack::StateAfter, std_entry->bci())); 2878 base->set_state(state->copy(ValueStack::StateAfter, std_entry->bci())); 2880 if (base->std_entry() [all...] |
H A D | c1_LIR.hpp | 1967 void std_entry(LIR_Opr receiver) { append(new LIR_Op0(lir_std_entry, receiver)); } function in class:LIR_List
|
Completed in 47 milliseconds