OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:int32Constant
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/JavaScriptCore/dfg/
DFGGraph.cpp
101
if (op ==
Int32Constant
) {
102
printf("%s$%u{%d|0x%08x}", hasPrinted ? ", " : "", node.constantNumber(), node.
int32Constant
(), node.
int32Constant
());
DFGNode.h
84
macro(
Int32Constant
, NodeResultJS | NodeIsConstant) \
284
int32_t
int32Constant
()
286
ASSERT(op ==
Int32Constant
);
292
ASSERT(op ==
Int32Constant
);
DFGJITCompiler.h
257
return graph()[nodeIndex].op ==
Int32Constant
;
272
return graph()[nodeIndex].
int32Constant
();
DFGJITCodeGenerator.h
296
return jsNumber(node.
int32Constant
());
[
all
...]
DFGByteCodeParser.cpp
191
// replace it with a
Int32Constant
(which is what would happen if
258
if (node.op ==
Int32Constant
)
286
NodeIndex resultIndex = addToGraph(
Int32Constant
, OpInfo(constant));
325
return m_graph[index].op ==
Int32Constant
;
340
return m_graph[index].
int32Constant
();
[
all
...]
Completed in 122 milliseconds