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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp277 void add_use (Value value, int from, int to, IntervalUseKind use_kind);
279 void add_def (LIR_Opr opr, int def_pos, IntervalUseKind use_kind);
280 void add_use (LIR_Opr opr, int from, int to, IntervalUseKind use_kind);
281 void add_temp(LIR_Opr opr, int temp_pos, IntervalUseKind use_kind);
283 void add_def (int reg_num, int def_pos, IntervalUseKind use_kind, BasicType type);
284 void add_use (int reg_num, int from, int to, IntervalUseKind use_kind, BasicType type);
285 void add_temp(int reg_num, int temp_pos, IntervalUseKind use_kind, BasicType type);
618 void add_use_pos(int pos, IntervalUseKind use_kind);
H A Dc1_LinearScan.cpp881 void LinearScan::add_use(Value value, int from, int to, IntervalUseKind use_kind) { argument
888 add_use(opr, from, to, use_kind);
893 void LinearScan::add_def(LIR_Opr opr, int def_pos, IntervalUseKind use_kind) { argument
894 TRACE_LINEAR_SCAN(2, tty->print(" def "); opr->print(tty); tty->print_cr(" def_pos %d (%d)", def_pos, use_kind));
899 add_def(opr->vreg_number(), def_pos, use_kind, opr->type_register());
904 add_def(reg, def_pos, use_kind, opr->type_register());
908 add_def(reg, def_pos, use_kind, opr->type_register());
913 void LinearScan::add_use(LIR_Opr opr, int from, int to, IntervalUseKind use_kind) { argument
914 TRACE_LINEAR_SCAN(2, tty->print(" use "); opr->print(tty); tty->print_cr(" from %d to %d (%d)", from, to, use_kind));
919 add_use(opr->vreg_number(), from, to, use_kind, op
933 add_temp(LIR_Opr opr, int temp_pos, IntervalUseKind use_kind) argument
954 add_def(int reg_num, int def_pos, IntervalUseKind use_kind, BasicType type) argument
999 add_use(int reg_num, int from, int to, IntervalUseKind use_kind, BasicType type) argument
1014 add_temp(int reg_num, int temp_pos, IntervalUseKind use_kind, BasicType type) argument
4307 add_use_pos(int pos, IntervalUseKind use_kind) argument
[all...]

Completed in 41 milliseconds