Searched refs:use_pos (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_InstructionPrinter.hpp40 use_pos = 7, enumerator in enum:InstructionPrinter::LayoutConstants
H A Dc1_LinearScan.cpp4837 inline void LinearScanWalker::set_use_pos(int reg, Interval* i, int use_pos, bool only_process_use_pos) {
4838 assert(use_pos != 0, "must use exclude_from_use to set use_pos to 0");
4841 if (_use_pos[reg] > use_pos) {
4842 _use_pos[reg] = use_pos;
4849 inline void LinearScanWalker::set_use_pos(Interval* i, int use_pos, bool only_process_use_pos) {
4851 if (use_pos != -1) {
4852 set_use_pos(i->assigned_reg(), i, use_pos, only_process_use_pos);
4853 set_use_pos(i->assigned_regHi(), i, use_pos, only_process_use_pos);
5369 TRACE_LINEAR_SCAN(4, for (int i = _first_reg; i <= _last_reg; i++) tty->print_cr(" reg %d: use_pos
[all...]
H A Dc1_InstructionPrinter.cpp321 fill_to(use_pos , filler); output()->print("use" );
333 fill_to(use_pos ); output()->print("%d", instr->use_count());
H A Dc1_LinearScan.hpp737 void set_use_pos(int reg, Interval* i, int use_pos, bool only_process_use_pos);
738 void set_use_pos(Interval* i, int use_pos, bool only_process_use_pos);

Completed in 54 milliseconds