Home
last modified time | relevance | path

Searched refs:constantNumber (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/dfg/
DDFGGraph.cpp102 …printf("%s$%u{%d|0x%08x}", hasPrinted ? ", " : "", node.constantNumber(), node.int32Constant(), no… in dump()
106 printf("%s$%u{%f})", hasPrinted ? ", " : "", node.constantNumber(), node.numericConstant()); in dump()
110 printf("%s$%u", hasPrinted ? ", " : "", node.constantNumber()); in dump()
DDFGByteCodeParser.cpp223 … return getInt32Constant(JSC::toInt32(valueOfDoubleConstant(index)), node.constantNumber()); in toInt32()
241 return getInt32Constant(v.asInt32(), node.constantNumber()); in toInt32()
243 … return getInt32Constant(JSC::toInt32(v.uncheckedGetNumber()), node.constantNumber()); in toInt32()
259 return getDoubleConstant(valueOfInt32Constant(index), node.constantNumber()); in toNumber()
273 return getDoubleConstant(v.uncheckedGetNumber(), node.constantNumber()); in toNumber()
350 … return m_codeBlock->getConstant(FirstConstantRegisterIndex + m_graph[index].constantNumber()); in valueOfJSConstant()
DDFGNode.h222 unsigned constantNumber() in constantNumber() function
DDFGJITCompiler.h282 unsigned constantIndex = graph()[nodeIndex].constantNumber(); in valueOfJSConstant()