OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:constantNumber
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/JavaScriptCore/dfg/
DFGGraph.cpp
102
printf("%s$%u{%d|0x%08x}", hasPrinted ? ", " : "", node.
constantNumber
(), node.int32Constant(), node.int32Constant());
106
printf("%s$%u{%f})", hasPrinted ? ", " : "", node.
constantNumber
(), node.numericConstant());
110
printf("%s$%u", hasPrinted ? ", " : "", node.
constantNumber
());
DFGByteCodeParser.cpp
223
return getInt32Constant(JSC::toInt32(valueOfDoubleConstant(index)), node.
constantNumber
());
241
return getInt32Constant(v.asInt32(), node.
constantNumber
());
243
return getInt32Constant(JSC::toInt32(v.uncheckedGetNumber()), node.
constantNumber
());
259
return getDoubleConstant(valueOfInt32Constant(index), node.
constantNumber
());
273
return getDoubleConstant(v.uncheckedGetNumber(), node.
constantNumber
());
350
return m_codeBlock->getConstant(FirstConstantRegisterIndex + m_graph[index].
constantNumber
());
[
all
...]
DFGNode.h
222
unsigned
constantNumber
()
DFGJITCompiler.h
282
unsigned constantIndex = graph()[nodeIndex].
constantNumber
();
Completed in 2169 milliseconds