Home
last modified time | relevance | path

Searched refs:OpPlusPlus (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/bytecompiler/
DNodesCodegen.cpp533 return (oper == OpPlusPlus) ? generator.emitPreInc(srcDst) : generator.emitPreDec(srcDst); in emitPreIncOrDec()
540 …return (oper == OpPlusPlus) ? generator.emitPostInc(dst, srcDst) : generator.emitPostDec(dst, srcD… in emitPostIncOrDec()
600 if (m_operator == OpPlusPlus) in emitBytecode()
605 …oldValue = (m_operator == OpPlusPlus) ? generator.emitPostInc(generator.finalDestination(dst), val… in emitBytecode()
623 if (m_operator == OpPlusPlus) in emitBytecode()
628 …oldValue = (m_operator == OpPlusPlus) ? generator.emitPostInc(generator.finalDestination(dst), val… in emitBytecode()
639 return emitThrowReferenceError(generator, m_operator == OpPlusPlus in emitBytecode()
736 … r0 = generator.emitLoad(generator.finalDestination(dst), (m_operator == OpPlusPlus) ? 1.0 : -1.0); in emitBytecode()
773 if (m_operator == OpPlusPlus) in emitBytecode()
791 if (m_operator == OpPlusPlus) in emitBytecode()
[all …]
/external/webkit/Source/JavaScriptCore/parser/
DJSParser.cpp2099 expr = context.makePostfixNode(expr, OpPlusPlus, subExprStart, lastTokenEnd(), tokenEnd()); in parseUnaryExpression()
2139 …expr = context.makePrefixNode(expr, OpPlusPlus, context.unaryTokenStackLastStart(tokenStackDepth),… in parseUnaryExpression()
DNodes.h72 OpPlusPlus, enumerator