Searched refs:std_entry (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.hpp303 BlockBegin* std_entry() const { return start()->end()->as_Base()->std_entry(); } function in class:IR
H A Dc1_IR.cpp849 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 Dc1_GraphBuilder.hpp355 BlockBegin* setup_start_block(int osr_bci, BlockBegin* std_entry, BlockBegin* osr_entry, ValueStack* init_state);
H A Dc1_GraphBuilder.cpp126 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 Dc1_Instruction.hpp2038 Base(BlockBegin* std_entry, BlockBegin* osr_entry) : BlockEnd(illegalType, NULL, false) {
2039 assert(std_entry->is_set(BlockBegin::std_entry_flag), "std entry must be flagged");
2043 s->append(std_entry); // must be default sux!
2048 BlockBegin* std_entry() const { return default_sux(); }
H A Dc1_InstructionPrinter.cpp781 output()->print("std entry B%d", x->std_entry()->block_id());
H A Dc1_LIR.hpp1967 void std_entry(LIR_Opr receiver) { append(new LIR_Op0(lir_std_entry, receiver)); } function in class:LIR_List
H A Dc1_LIRGenerator.cpp2572 __ std_entry(LIR_OprFact::illegalOpr);

Completed in 373 milliseconds