Home | History | Annotate | Download | only in x64

Lines Matching defs:shift

709   // The src register contains a *positive* smi value. The shift is the
715 SmiIndex SmiToIndex(Register dst, Register src, int shift);
718 SmiIndex SmiToNegativeIndex(Register dst, Register src, int shift);
1046 static const int shift = Field::kShift;
1048 if (shift != 0) {
1049 shrp(reg, Immediate(shift));
1060 static const int shift = Field::kShift;
1065 if (shift < kSmiShift) {
1066 shlp(reg, Immediate(kSmiShift - shift));
1067 } else if (shift > kSmiShift) {
1068 sarp(reg, Immediate(shift - kSmiShift));