Searched refs:temp_pos (Results 1 - 4 of 4) sorted by relevance
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_InstructionPrinter.hpp | 41 temp_pos = 12, enumerator in enum:InstructionPrinter::LayoutConstants
|
H A D | c1_InstructionPrinter.cpp | 322 fill_to(temp_pos , filler); output()->print("tid" ); 334 fill_to(temp_pos ); print_temp(instr);
|
H A D | c1_LinearScan.hpp | 281 void add_temp(LIR_Opr opr, int temp_pos, IntervalUseKind use_kind); 285 void add_temp(int reg_num, int temp_pos, IntervalUseKind use_kind, BasicType type);
|
H A D | c1_LinearScan.cpp | 933 void LinearScan::add_temp(LIR_Opr opr, int temp_pos, IntervalUseKind use_kind) { argument 934 TRACE_LINEAR_SCAN(2, tty->print(" temp "); opr->print(tty); tty->print_cr(" temp_pos %d (%d)", temp_pos, use_kind)); 939 add_temp(opr->vreg_number(), temp_pos, use_kind, opr->type_register()); 944 add_temp(reg, temp_pos, use_kind, opr->type_register()); 948 add_temp(reg, temp_pos, use_kind, opr->type_register()); 1014 void LinearScan::add_temp(int reg_num, int temp_pos, IntervalUseKind use_kind, BasicType type) { argument 1025 interval->add_range(temp_pos, temp_pos + 1); 1026 interval->add_use_pos(temp_pos, use_kin [all...] |
Completed in 1177 milliseconds