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

  /external/webkit/JavaScriptCore/jit/
JITArithmetic.cpp 59 addSlowCase(branch32(Equal, regT0, Imm32(0)));
67 addSlowCase(branch32(Above, regT1, Imm32(JSValue::LowestTag)));
115 addSlowCase(notInt32Op1);
116 addSlowCase(notInt32Op2);
178 addSlowCase(notInt32Op1);
179 addSlowCase(notInt32Op2);
241 addSlowCase(notInt32Op1);
242 addSlowCase(notInt32Op2);
288 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag)));
296 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag)))
    [all...]
JITCall.cpp 107 addSlowCase(branchPtr(NotEqual, Address(regT0), ImmPtr(m_globalData->jsFunctionVPtr)));
160 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::CellTag)));
162 addSlowCase(branch32(NotEqual, Address(regT2, OBJECT_OFFSETOF(Structure, m_typeInfo) + OBJECT_OFFSETOF(TypeInfo, m_type)), Imm32(ObjectType)));
257 addSlowCase(branchPtr(NotEqual, Address(regT0), ImmPtr(m_globalData->jsFunctionVPtr)));
325 addSlowCase(jumpToSlow);
329 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::CellTag)));
493 addSlowCase(branchPtr(NotEqual, Address(regT0), ImmPtr(m_globalData->jsFunctionVPtr)));
553 addSlowCase(branchPtr(NotEqual, Address(regT0), ImmPtr(m_globalData->jsFunctionVPtr)));
622 addSlowCase(jumpToSlow);
JITInlineMethods.h 218 ALWAYS_INLINE void JIT::addSlowCase(Jump jump)
225 ALWAYS_INLINE void JIT::addSlowCase(JumpList jumpList)
547 addSlowCase(branch32(NotEqual, tagFor(virtualRegisterIndex), Imm32(JSValue::CellTag)));
553 addSlowCase(branch32(NotEqual, tag, Imm32(JSValue::CellTag)));
700 addSlowCase(emitJumpIfJSCell(reg));
714 addSlowCase(emitJumpIfNotJSCell(reg));
779 addSlowCase(emitJumpIfNotImmediateInteger(reg));
784 addSlowCase(emitJumpIfNotImmediateIntegers(reg1, reg2, scratch));
789 addSlowCase(emitJumpIfNotImmediateNumber(reg));
JITPropertyAccess.cpp 279 addSlowCase(branch32(NotEqual, regT3, Imm32(JSValue::Int32Tag)));
281 addSlowCase(branchPtr(NotEqual, Address(regT0), ImmPtr(m_globalData->jsArrayVPtr)));
284 addSlowCase(branch32(AboveOrEqual, regT2, Address(regT0, OBJECT_OFFSETOF(JSArray, m_vectorLength))));
288 addSlowCase(branch32(Equal, regT1, Imm32(JSValue::EmptyValueTag)));
320 addSlowCase(branch32(NotEqual, regT3, Imm32(JSValue::Int32Tag)));
322 addSlowCase(branchPtr(NotEqual, Address(regT0), ImmPtr(m_globalData->jsArrayVPtr)));
323 addSlowCase(branch32(AboveOrEqual, regT2, Address(regT0, OBJECT_OFFSETOF(JSArray, m_vectorLength))));
391 addSlowCase(structureCheck);
470 addSlowCase(branchPtrWithPatch(NotEqual, Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)), structureToCompare, ImmPtr(reinterpret_cast<void*>(patchGetByIdDefaultStructure))));
    [all...]
JITOpcodes.cpp 429 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag)));
436 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag)));
442 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag)));
443 addSlowCase(branch32(NotEqual, regT3, Imm32(JSValue::Int32Tag)));
489 addSlowCase(branchTest32(Zero, Address(regT0, OBJECT_OFFSETOF(Structure, m_typeInfo.m_flags)), Imm32(ImplementsDefaultHasInstance)));
640 addSlowCase(branchPtr(NotEqual, Address(regT0), ImmPtr(m_globalData->jsStringVPtr)));
696 addSlowCase(branchPtr(NotEqual, regT1, Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure))));
731 addSlowCase(branchTest32(NonZero, regT0, Imm32(~1)));
766 addSlowCase(branch32(Above, regT1, Imm32(JSValue::LowestTag)));
772 addSlowCase(isNotInteger)
    [all...]
JIT.h 367 void addSlowCase(Jump);
368 void addSlowCase(JumpList);
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Identifier.h 102 return addSlowCase(exec, r);
112 return addSlowCase(globalData, r);
115 static PassRefPtr<UString::Rep> addSlowCase(ExecState*, UString::Rep* r);
116 static PassRefPtr<UString::Rep> addSlowCase(JSGlobalData*, UString::Rep* r);
Identifier.cpp 209 PassRefPtr<UString::Rep> Identifier::addSlowCase(JSGlobalData* globalData, UString::Rep* r)
230 PassRefPtr<UString::Rep> Identifier::addSlowCase(ExecState* exec, UString::Rep* r)
232 return addSlowCase(&exec->globalData(), r);

Completed in 326 milliseconds