Home
last modified time | relevance | path

Searched refs:LowestTag (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/jit/
DJITArithmetic32_64.cpp65 addSlowCase(branch32(Above, regT1, TrustedImm32(JSValue::LowestTag))); in emit_op_negate()
453 failures.append(branch32(AboveOrEqual, regT1, TrustedImm32(JSValue::LowestTag))); in emitRightShiftSlowCase()
475 … Jump notDouble = branch32(Above, regT1, TrustedImm32(JSValue::LowestTag)); // op1 is not a double in emitRightShiftSlowCase()
856 addSlowCase(branch32(Above, regT1, TrustedImm32(JSValue::LowestTag))); in emitAdd32Constant()
965 addSlowCase(branch32(Above, regT1, TrustedImm32(JSValue::LowestTag))); in emitSub32Constant()
1022 addSlowCase(branch32(Above, regT1, TrustedImm32(JSValue::LowestTag))); in emitBinaryDoubleOp()
1027 Jump doubleOp2 = branch32(Below, regT3, TrustedImm32(JSValue::LowestTag)); in emitBinaryDoubleOp()
1099 addSlowCase(branch32(Above, regT3, TrustedImm32(JSValue::LowestTag))); in emitBinaryDoubleOp()
DJITOpcodes32_64.cpp912 Jump notNumber = branch32(Above, regT1, Imm32(JSValue::LowestTag)); in emitSlow_op_jfalse()
948 Jump notNumber = branch32(Above, regT1, Imm32(JSValue::LowestTag)); in emitSlow_op_jtrue()
1047 addSlowCase(branch32(Below, regT1, TrustedImm32(JSValue::LowestTag))); in emit_op_eq()
1097 addSlowCase(branch32(Below, regT1, TrustedImm32(JSValue::LowestTag))); in emit_op_neq()
1150 addSlowCase(branch32(Below, regT2, TrustedImm32(JSValue::LowestTag))); in compileOpStrictEq()
DJSInterfaceJIT.h270 Jump isDouble = branch32(Below, scratch, TrustedImm32(JSValue::LowestTag)); in emitLoadDouble()
/external/webkit/Source/JavaScriptCore/runtime/
DJSValue.h277 enum { LowestTag = DeletedValueTag }; enumerator
DJSValueInlineMethods.h291 return tag() < LowestTag; in isDouble()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2010-05-2424532 (JSC::JSValue::isDouble): Added a LowestTag for clarity.