Home | History | Annotate | Download | only in ia32

Lines Matching defs:shift

511     static const int shift = Field::kShift;
513 if (shift != 0) {
514 sar(reg, shift);
521 static const int shift = Field::kShift;
525 if (shift < kSmiTagSize) {
526 shl(reg, kSmiTagSize - shift);
527 } else if (shift > kSmiTagSize) {
528 sar(reg, shift - kSmiTagSize);