Searched refs:pos_const (Results 1 - 6 of 6) sorted by relevance

/art/compiler/optimizing/
H A Dintrinsics_mips.cc3017 int32_t pos_const = pos.GetConstant()->AsIntConstant()->GetValue(); local
3018 if (pos_const == 0) {
3027 DCHECK_GT(pos_const, 0);
3028 __ Addiu32(AT, AT, -pos_const, TMP);
H A Dintrinsics_mips64.cc2119 int32_t pos_const = pos.GetConstant()->AsIntConstant()->GetValue(); local
2120 if (pos_const == 0) {
2129 DCHECK_GT(pos_const, 0);
2130 __ Addiu32(AT, AT, -pos_const);
H A Dintrinsics_arm64.cc2214 int32_t pos_const = pos.GetConstant()->AsIntConstant()->GetValue(); local
2215 if (pos_const == 0) {
2225 __ Subs(temp, temp, pos_const);
H A Dintrinsics_arm_vixl.cc2156 int32_t pos_const = Int32ConstantFrom(pos); local
2157 if (pos_const == 0) {
2171 __ Subs(temp, temp, pos_const);
H A Dintrinsics_x86.cc1193 int32_t pos_const = pos.GetConstant()->AsIntConstant()->GetValue(); local
1194 if (pos_const == 0) {
1208 __ subl(temp, Immediate(pos_const));
H A Dintrinsics_x86_64.cc973 int32_t pos_const = pos.GetConstant()->AsIntConstant()->GetValue(); local
974 if (pos_const == 0) {
988 __ subl(temp, Immediate(pos_const));

Completed in 66 milliseconds