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

  /external/webkit/JavaScriptCore/assembler/
MacroAssembler.h 302 return branchTest32(cond, reg, mask);
307 return branchTest32(cond, reg, mask);
312 return branchTest32(cond, address, mask);
317 return branchTest32(cond, address, mask);
MacroAssemblerARM.h 425 Jump branchTest32(Condition cond, RegisterID reg, RegisterID mask)
432 Jump branchTest32(Condition cond, RegisterID reg, Imm32 mask = Imm32(-1))
443 Jump branchTest32(Condition cond, Address address, Imm32 mask = Imm32(-1))
446 return branchTest32(cond, ARMRegisters::S1, mask);
449 Jump branchTest32(Condition cond, BaseIndex address, Imm32 mask = Imm32(-1))
452 return branchTest32(cond, ARMRegisters::S1, mask);
840 failureCases.append(branchTest32(Zero, dest));
MacroAssemblerX86Common.h 486 failureCases.append(branchTest32(Zero, dest));
681 Jump branchTest32(Condition cond, RegisterID reg, RegisterID mask)
688 Jump branchTest32(Condition cond, RegisterID reg, Imm32 mask = Imm32(-1))
701 Jump branchTest32(Condition cond, Address address, Imm32 mask = Imm32(-1))
711 Jump branchTest32(Condition cond, BaseIndex address, Imm32 mask = Imm32(-1))
MacroAssemblerARMv7.h 796 Jump branchTest32(Condition cond, RegisterID reg, RegisterID mask)
803 Jump branchTest32(Condition cond, RegisterID reg, Imm32 mask = Imm32(-1))
810 Jump branchTest32(Condition cond, Address address, Imm32 mask = Imm32(-1))
813 // use addressTempRegister incase the branchTest32 we call uses dataTempRegister. :-/
815 return branchTest32(cond, addressTempRegister, mask);
818 Jump branchTest32(Condition cond, BaseIndex address, Imm32 mask = Imm32(-1))
821 // use addressTempRegister incase the branchTest32 we call uses dataTempRegister. :-/
823 return branchTest32(cond, addressTempRegister, mask);
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITOpcodes.cpp 461 emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
489 addSlowCase(branchTest32(Zero, Address(regT0, OBJECT_OFFSETOF(Structure, m_typeInfo.m_flags)), Imm32(ImplementsDefaultHasInstance)));
502 branchTest32(NonZero, regT2).linkTo(loop, this);
731 addSlowCase(branchTest32(NonZero, regT0, Imm32(~1)));
787 emitJumpSlowToHot(branchTest32(Zero, regT0), target); // Inverted.
828 emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
    [all...]
JITArithmetic.cpp 149 emitJumpSlowToHot(branchTest32(Zero, regT0), target);
212 emitJumpSlowToHot(branchTest32(NonZero, regT0), target);
275 emitJumpSlowToHot(branchTest32(Zero, regT0), target);
    [all...]
JITInlineMethods.h 687 return branchTest32(Zero, reg, Imm32(JSImmediate::TagMask));
708 return branchTest32(NonZero, reg, Imm32(JSImmediate::TagMask));
757 return branchTest32(NonZero, reg, Imm32(JSImmediate::TagTypeNumber));
766 return branchTest32(Zero, reg, Imm32(JSImmediate::TagTypeNumber));
  /external/webkit/JavaScriptCore/yarr/
RegexJIT.cpp 609 state.jumpToBacktrack(branchTest32(Zero, countRegister), this);
730 state.jumpToBacktrack(branchTest32(Zero, countRegister), this);
    [all...]

Completed in 300 milliseconds