Home | History | Annotate | Download | only in x86

Lines Matching refs:shifter

2533 void X86Assembler::shll(Register operand, Register shifter) {
2534 EmitGenericShift(4, Operand(operand), shifter);
2543 void X86Assembler::shll(const Address& address, Register shifter) {
2544 EmitGenericShift(4, address, shifter);
2553 void X86Assembler::shrl(Register operand, Register shifter) {
2554 EmitGenericShift(5, Operand(operand), shifter);
2563 void X86Assembler::shrl(const Address& address, Register shifter) {
2564 EmitGenericShift(5, address, shifter);
2573 void X86Assembler::sarl(Register operand, Register shifter) {
2574 EmitGenericShift(7, Operand(operand), shifter);
2583 void X86Assembler::sarl(const Address& address, Register shifter) {
2584 EmitGenericShift(7, address, shifter);
2588 void X86Assembler::shld(Register dst, Register src, Register shifter) {
2589 DCHECK_EQ(ECX, shifter);
2606 void X86Assembler::shrd(Register dst, Register src, Register shifter) {
2607 DCHECK_EQ(ECX, shifter);
2629 void X86Assembler::roll(Register operand, Register shifter) {
2630 EmitGenericShift(0, Operand(operand), shifter);
2639 void X86Assembler::rorl(Register operand, Register shifter) {
2640 EmitGenericShift(1, Operand(operand), shifter);
3084 Register shifter) {
3086 CHECK_EQ(shifter, ECX);