HomeSort by relevance Sort by last modified time
    Searched defs:shift_operand (Results 1 - 6 of 6) sorted by null

  /external/v8/src/compiler/arm/
instruction-selector-arm.cc 714 InstructionOperand shift_operand; local
715 if (TryMatchShift(selector, &opcode, right, &value_operand, &shift_operand)) {
717 value_operand, shift_operand);
840 InstructionOperand shift_operand; local
842 &shift_operand)) {
843 Emit(opcode, g.DefineAsRegister(node), value_operand, shift_operand);
1038 InstructionOperand shift_operand; local
    [all...]
  /external/v8/src/compiler/ia32/
instruction-selector-ia32.cc 728 InstructionOperand shift_operand; local
730 shift_operand = g.UseImmediate(shift);
732 shift_operand = g.UseFixed(shift, ecx);
736 shift_operand};
    [all...]
  /external/v8/src/compiler/mips/
instruction-selector-mips.cc 573 InstructionOperand shift_operand; local
575 shift_operand = g.UseImmediate(m.node());
577 shift_operand = g.UseUniqueRegister(m.node());
584 shift_operand};
    [all...]
  /external/v8/src/compiler/ppc/
instruction-selector-ppc.cc 878 InstructionOperand shift_operand; local
880 shift_operand = g.UseImmediate(m.node());
882 shift_operand = g.UseUniqueRegister(m.node());
887 shift_operand};
    [all...]
  /external/v8/src/compiler/s390/
instruction-selector-s390.cc 902 InstructionOperand shift_operand; local
904 shift_operand = g.UseImmediate(m.node());
906 shift_operand = g.UseUniqueRegister(m.node());
911 shift_operand};
    [all...]
  /external/v8/src/compiler/x87/
instruction-selector-x87.cc 689 InstructionOperand shift_operand; local
691 shift_operand = g.UseImmediate(shift);
693 shift_operand = g.UseFixed(shift, ecx);
697 shift_operand};
    [all...]

Completed in 248 milliseconds