HomeSort by relevance Sort by last modified time
    Searched refs:shiftAmount (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCodeGenerator.h 340 void shiftOp(NodeType op, MacroAssembler::RegisterID op1, int32_t shiftAmount, MacroAssembler::RegisterID result)
344 m_jit.rshift32(op1, Imm32(shiftAmount), result);
347 m_jit.lshift32(op1, Imm32(shiftAmount), result);
350 m_jit.urshift32(op1, Imm32(shiftAmount), result);
356 void shiftOp(NodeType op, MacroAssembler::RegisterID op1, MacroAssembler::RegisterID shiftAmount, MacroAssembler::RegisterID result)
360 m_jit.rshift32(op1, shiftAmount, result);
363 m_jit.lshift32(op1, shiftAmount, result);
366 m_jit.urshift32(op1, shiftAmount, result);
    [all...]
DFGNonSpeculativeJIT.cpp 252 int shiftAmount = valueOfInt32Constant(node.child2) & 0x1f;
254 ASSERT(shiftAmount);
255 shiftOp(op, op1.registerID(), shiftAmount, result.registerID());
  /external/webkit/Source/JavaScriptCore/assembler/
ARMv7Assembler.h 197 unsigned shiftAmount : 5;
287 encoding.shiftAmount = 8 + leadingZeros;
868 void asr(RegisterID rd, RegisterID rm, int32_t shiftAmount)
872 ShiftTypeAndAmount shift(SRType_ASR, shiftAmount);
    [all...]
MacroAssemblerMIPS.h 258 void lshift32(RegisterID shiftAmount, RegisterID dest)
260 m_assembler.sllv(dest, dest, shiftAmount);
318 void rshift32(RegisterID shiftAmount, RegisterID dest)
320 m_assembler.srav(dest, dest, shiftAmount);
328 void urshift32(RegisterID shiftAmount, RegisterID dest)
330 m_assembler.srlv(dest, dest, shiftAmount);
    [all...]

Completed in 56 milliseconds