Home
last modified time | relevance | path

Searched refs:getInt32Fast (Results 1 – 9 of 9) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DJSValue.cpp37 return getInt32Fast(); in toInteger()
45 return getInt32Fast(); in toIntegerPreserveNaN()
DJSNumberCell.h406 result = getInt32Fast(); in getNumber()
419 arg = getInt32Fast(); in numberToInt32()
439 arg = toUInt32SlowCase(getInt32Fast(), ignored); in numberToUInt32()
DJSValue.h161 int32_t getInt32Fast() const;
DJSImmediate.h712 inline int32_t JSValuePtr::getInt32Fast() const in getInt32Fast() function
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.cpp113 return v1.getInt32Fast() < v2.getInt32Fast(); in jsLess()
138 return v1.getInt32Fast() <= v2.getInt32Fast(); in jsLessEq()
204 concatenate(asString(v1)->value().rep(), v2.getInt32Fast()) : in jsAdd()
1828 int32_t left = src1.getInt32Fast(); in privateExecute()
1829 int32_t right = src2.getInt32Fast(); in privateExecute()
1884 …uePtr result = JSValuePtr::makeInt32Fast(dividendValue.getInt32Fast() % divisorValue.getInt32Fast(… in privateExecute()
1935 …callFrame[dst] = JSValuePtr(jsNumber(callFrame, val.getInt32Fast() << (shift.getInt32Fast() & 0x1f… in privateExecute()
2865 jsByteArray->setIndex(i, jsValue.getInt32Fast()); in privateExecute()
3145 …lock()->immediateSwitchJumpTable(tableIndex).offsetForValue(scrutinee.getInt32Fast(), defaultOffse… in privateExecute()
4309 concatenate(asString(v1)->value().rep(), v2.getInt32Fast()) : in cti_op_add()
[all …]
/external/webkit/JavaScriptCore/jit/
DJITInlineMethods.h123 return getConstantOperand(src).getInt32Fast(); in getConstantOperandImmediateInt()
/external/webkit/JavaScriptCore/bytecompiler/
DBytecodeGenerator.cpp1690 …ASSERT(JSValuePtr::makeInt32Fast(key) && (JSValuePtr::makeInt32Fast(key).getInt32Fast() == value)); in keyForImmediateSwitch()
/external/webkit/JavaScriptCore/parser/
DNodes.cpp2105 if ((typeForTable & ~SwitchNumber) || !jsValue || (jsValue.getInt32Fast() != value)) { in processClauseList()
/external/webkit/JavaScriptCore/
DChangeLog1679 * isInt32Fast() getInt32Fast() - fast check/access for integer immediates.
1787 (JSC::JSValuePtr::getInt32Fast):