Home | History | Annotate | Download | only in arm

Lines Matching defs:shift

1383     static const int shift = Field::kShift;
1384 static const int mask = Field::kMask >> shift << kSmiTagSize;
1387 if (shift < kSmiTagSize) {
1388 mov(dst, Operand(src, LSL, kSmiTagSize - shift));
1390 } else if (shift > kSmiTagSize) {
1391 mov(dst, Operand(src, LSR, shift - kSmiTagSize));