Home | History | Annotate | Download | only in arm

Lines Matching refs:offset_8

1360     int offset_8 = x.offset_;
1361 if (offset_8 < 0) {
1362 offset_8 = -offset_8;
1365 if (!is_uint8(offset_8)) {
1373 DCHECK(offset_8 >= 0); // no masking needed
1374 instr |= B | (offset_8 >> 4)*B8 | (offset_8 & 0xf);
1407 int offset_8 = x.offset_;
1408 DCHECK((offset_8 & 3) == 0); // offset must be an aligned word offset
1409 offset_8 >>= 2;
1410 if (offset_8 < 0) {
1411 offset_8 = -offset_8;
1414 DCHECK(is_uint8(offset_8)); // unsigned word offset must fit in a byte
1421 DCHECK(offset_8 >= 0); // no masking needed
1422 emit(instr | am | x.rn_.code()*B16 | crd.code()*B12 | offset_8);