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

  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssembler.h 312 return branchTest32(cond, reg, mask);
317 return branchTest32(cond, reg, mask);
322 return branchTest32(cond, address, mask);
327 return branchTest32(cond, address, mask);
MacroAssemblerARM.h 467 return branchTest32(cond, ARMRegisters::S1, mask);
470 Jump branchTest32(Condition cond, RegisterID reg, RegisterID mask)
477 Jump branchTest32(Condition cond, RegisterID reg, TrustedImm32 mask = TrustedImm32(-1))
488 Jump branchTest32(Condition cond, Address address, TrustedImm32 mask = TrustedImm32(-1))
491 return branchTest32(cond, ARMRegisters::S1, mask);
494 Jump branchTest32(Condition cond, BaseIndex address, TrustedImm32 mask = TrustedImm32(-1))
497 return branchTest32(cond, ARMRegisters::S1, mask);
929 failureCases.append(branchTest32(Zero, dest));
    [all...]
MacroAssemblerMIPS.h     [all...]
MacroAssemblerARMv7.h 699 failureCases.append(branchTest32(Zero, dest));
    [all...]
MacroAssemblerX86Common.h 653 failureCases.append(branchTest32(Zero, dest));
861 Jump branchTest32(Condition cond, RegisterID reg, RegisterID mask)
868 Jump branchTest32(Condition cond, RegisterID reg, TrustedImm32 mask = TrustedImm32(-1))
881 Jump branchTest32(Condition cond, Address address, TrustedImm32 mask = TrustedImm32(-1))
891 Jump branchTest32(Condition cond, BaseIndex address, TrustedImm32 mask = TrustedImm32(-1))
    [all...]
MacroAssemblerSH4.h     [all...]
  /external/webkit/Source/JavaScriptCore/jit/
ThunkGenerators.cpp 120 MacroAssembler::Jump exponentIsZero = jit.branchTest32(MacroAssembler::Zero, SpecializedThunkJIT::regT0);
123 MacroAssembler::Jump exponentIsEven = jit.branchTest32(MacroAssembler::Zero, SpecializedThunkJIT::regT0, MacroAssembler::TrustedImm32(1));
128 jit.branchTest32(MacroAssembler::NonZero, SpecializedThunkJIT::regT0).linkTo(startLoop, &jit);
JITArithmetic.cpp 312 emitJumpSlowToHot(branchTest32(Zero, regT0), target);
340 emitJumpSlowToHot(branchTest32(Zero, regT0), target);
366 emitJumpSlowToHot(branchTest32(Zero, regT0), target);
394 emitJumpSlowToHot(branchTest32(Zero, regT0), target);
465 emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
493 emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
519 emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
547 emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
619 emitJumpSlowToHot(branchTest32(invert ? Zero : NonZero, regT0), target);
647 emitJumpSlowToHot(branchTest32(invert ? Zero : NonZero, regT0), target)
    [all...]
SpecializedThunkJIT.h 65 m_failures.append(branchTest32(NonZero, Address(dst, OBJECT_OFFSETOF(JSString, m_fiberCount))));
JITInlineMethods.h 88 failures.append(branchTest32(NonZero, Address(src, OBJECT_OFFSETOF(JSString, m_fiberCount))));
712 return branchTest32(Zero, reg, TrustedImm32(TagMask));
733 return branchTest32(NonZero, reg, TrustedImm32(TagMask));
774 return branchTest32(NonZero, reg, TrustedImm32(TagTypeNumber));
783 return branchTest32(Zero, reg, TrustedImm32(TagTypeNumber));
JITArithmetic32_64.cpp 58 addSlowCase(branchTest32(Zero, regT0, TrustedImm32(0x7fffffff)));
173 emitJumpSlowToHot(branchTest32(Zero, regT0), target);
260 emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
348 emitJumpSlowToHot(branchTest32(invert ? Zero : NonZero, regT0), target);
    [all...]
JITOpcodes32_64.cpp 545 emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
604 branchTest32(NonZero, regT2).linkTo(loop, this);
    [all...]
JITOpcodes.cpp     [all...]
JITPropertyAccess.cpp 58 failures.append(jit.branchTest32(NonZero, Address(regT0, OBJECT_OFFSETOF(JSString, m_fiberCount))));
    [all...]
JITPropertyAccess32_64.cpp 275 failures.append(jit.branchTest32(NonZero, Address(regT0, OBJECT_OFFSETOF(JSString, m_fiberCount))));
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGSpeculativeJIT.cpp 446 MacroAssembler::Jump resultNonZero = m_jit.branchTest32(MacroAssembler::NonZero, result.registerID());
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp     [all...]

Completed in 739 milliseconds