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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp2058 LIR_Opr index_op = idx.result(); local
2061 if (index_op->is_constant()) {
2063 addr = new LIR_Address(base_op, index_op->as_jint(), dst_type);
2067 if (!index_op->is_illegal() && index_op->type() == T_INT) {
2069 __ convert(Bytecodes::_i2l, index_op, tmp);
2070 index_op = tmp;
2073 addr = new LIR_Address(base_op, index_op, LIR_Address::Scale(log2_scale), 0, dst_type);
2075 addr = generate_address(base_op, index_op, log2_scale, 0, dst_type);
2077 if (index_op
2143 LIR_Opr index_op = idx.result(); local
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp1159 LIR_Opr index_op = offset; local
1174 __ add(base_op, index_op, tmp);
1177 addr = new LIR_Address(base_op, index_op, type);

Completed in 39 milliseconds