Searched refs:op_id (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp205 // access to LIR_Ops and Blocks indexed by op_id
207 LIR_Op* lir_op_with_id(int op_id) const { assert(op_id >= 0 && op_id <= max_lir_op_id() && op_id % 2 == 0, "op_id out of range or not even"); return _lir_ops.at(op_id >> 1); }
208 BlockBegin* block_of_op_with_id(int op_id) const { assert(_block_of_op.length() > 0 && op_id >= 0 && op_id <
210 is_block_begin(int op_id) argument
213 has_call(int op_id) argument
214 has_info(int op_id) argument
[all...]
H A Dc1_LinearScan.cpp441 int op_id = op->id(); local
443 if (op_id == -1) {
446 assert(op->code() == lir_move, "only moves can have a op_id of -1");
461 assert(interval == Interval::end() || interval->spill_definition_pos() >= op_id, "invalid order");
464 while (interval != Interval::end() && interval->spill_definition_pos() == op_id) {
477 TRACE_LINEAR_SCAN(4, tty->print_cr("inserting move after definition of interval %d to stack slot %d at op_id %d", interval->reg_num(), interval->canonical_spill_slot() - LinearScan::nof_regs, op_id));
516 int op_id = 0; local
521 block->set_first_lir_instruction_id(op_id);
527 op->set_id(op_id);
1357 int op_id = op->id(); local
1660 split_child_at_op_id(Interval* interval, int op_id, LIR_OpVisitState::OprMode mode) argument
1688 interval_at_op_id(int reg_num, int op_id) argument
1992 int op_id = op->id(); local
2163 color_lir_opr(LIR_Opr opr, int op_id, LIR_OpVisitState::OprMode mode) argument
2777 append_scope_value(int op_id, Value value, GrowableArray<ScopeValue*>* scope_values) argument
2834 compute_debug_info_for_scope(int op_id, IRScope* cur_scope, ValueStack* cur_state, ValueStack* innermost_state) argument
2904 compute_debug_info(CodeEmitInfo* info, int op_id) argument
2935 int op_id = op->id(); local
3275 int op_id = op->id(); local
4163 split_child_at_op_id(int op_id, LIR_OpVisitState::OprMode mode) argument
4214 split_child_before_op_id(int op_id) argument
4236 split_child_covers(int op_id, LIR_OpVisitState::OprMode mode) argument
4476 covers(int op_id, LIR_OpVisitState::OprMode mode) const argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.hpp88 int op_id = op->id(); local
91 add_temp(reg_num(opr), op_id, noUse, T_ILLEGAL); local

Completed in 42 milliseconds