Searched refs:_block_of_op (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp154 BlockBeginArray _block_of_op; // mapping from LIR_Op id to the BlockBegin containing this instruction member in class:LinearScan
208 BlockBegin* block_of_op_with_id(int op_id) const { assert(_block_of_op.length() > 0 && op_id >= 0 && op_id <= max_lir_op_id() + 1, "op_id out of range"); return _block_of_op.at(op_id >> 1); }
H A Dc1_LinearScan.cpp101 , _block_of_op(0) // initialized later with correct length
514 _block_of_op = BlockBeginArray(num_instructions);
530 _block_of_op.at_put(idx, block);

Completed in 52 milliseconds