Searched defs:dest_pos_constant (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dintrinsics_arm.cc1405 int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue(); local
1408 DCHECK_GE(src_pos_constant, dest_pos_constant);
1409 } else if (src_pos_constant < dest_pos_constant) {
1431 int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue(); local
1432 __ cmp(src_pos.AsRegister<Register>(), ShifterOperand(dest_pos_constant));
H A Dintrinsics_arm64.cc2025 int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue(); local
2028 DCHECK_GE(src_pos_constant, dest_pos_constant);
2029 } else if (src_pos_constant < dest_pos_constant) {
H A Dintrinsics_x86_64.cc1161 int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue(); local
1164 DCHECK_GE(src_pos_constant, dest_pos_constant);
1165 } else if (src_pos_constant < dest_pos_constant) {
1183 int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue(); local
1184 __ cmpl(src_pos.AsRegister<CpuRegister>(), Immediate(dest_pos_constant));

Completed in 56 milliseconds