Home | History | Annotate | Download | only in x87

Lines Matching defs:shift

492     static const int shift = Field::kShift;
494 if (shift != 0) {
495 sar(reg, shift);
502 static const int shift = Field::kShift;
506 if (shift < kSmiTagSize) {
507 shl(reg, kSmiTagSize - shift);
508 } else if (shift > kSmiTagSize) {
509 sar(reg, shift - kSmiTagSize);