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

/art/compiler/optimizing/
H A Dintrinsics_arm.cc1403 int32_t src_pos_constant = src_pos.GetConstant()->AsIntConstant()->GetValue(); local
1408 DCHECK_GE(src_pos_constant, dest_pos_constant);
1409 } else if (src_pos_constant < dest_pos_constant) {
1416 || (src_pos_constant >= dest_pos.GetConstant()->AsIntConstant()->GetValue()));
1422 __ cmp(dest_pos.AsRegister<Register>(), ShifterOperand(src_pos_constant));
H A Dintrinsics_arm64.cc2023 int32_t src_pos_constant = src_pos.GetConstant()->AsIntConstant()->GetValue(); local
2028 DCHECK_GE(src_pos_constant, dest_pos_constant);
2029 } else if (src_pos_constant < dest_pos_constant) {
2035 || (src_pos_constant >= dest_pos.GetConstant()->AsIntConstant()->GetValue()));
2041 __ Cmp(WRegisterFrom(dest_pos), src_pos_constant); local
H A Dintrinsics_x86_64.cc1159 int32_t src_pos_constant = src_pos.GetConstant()->AsIntConstant()->GetValue(); local
1164 DCHECK_GE(src_pos_constant, dest_pos_constant);
1165 } else if (src_pos_constant < dest_pos_constant) {
1174 __ cmpl(dest_pos.AsRegister<CpuRegister>(), Immediate(src_pos_constant));

Completed in 37 milliseconds