Searched refs:valueOfJSConstant (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGGraph.h202 return speculationFromValue(node->valueOfJSConstant(m_codeBlock));
288 JSValue value = valueOfJSConstant(node);
295 if (!getJSFunction(valueOfJSConstant(node)))
303 JSValue value = valueOfJSConstant(node);
312 JSValue valueOfJSConstant(Node* node) function in class:JSC::DFG::Graph
314 return node->valueOfJSConstant(m_codeBlock);
318 return valueOfJSConstant(node).asInt32();
322 return valueOfJSConstant(node).asNumber();
326 return valueOfJSConstant(node).asBoolean();
330 JSCell* function = getJSFunction(valueOfJSConstant(nod
[all...]
H A DDFGByteCodeParser.cpp496 JSValue v = valueOfJSConstant(node);
554 return isJSConstant(node) && valueOfJSConstant(node).isInt32();
557 JSValue valueOfJSConstant(Node* node)
565 return valueOfJSConstant(node).asInt32();
702 JSValue value = valueOfJSConstant(node);
1150 callLinkStatus = CallLinkStatus(m_graph.valueOfJSConstant(callTarget)).setIsProved(true);
2387 JSValue a = valueOfJSConstant(op1);
2388 JSValue b = valueOfJSConstant(op2);
2403 JSValue a = valueOfJSConstant(op1);
2404 JSValue b = valueOfJSConstant(op
[all...]
H A DDFGBackwardsPropagationPhase.cpp84 JSValue immediateValue = node->valueOfJSConstant(codeBlock());
130 JSValue immediateValue = shiftAmount->valueOfJSConstant(codeBlock());
H A DDFGNode.h377 JSValue valueOfJSConstant(CodeBlock* codeBlock) function in struct:JSC::DFG::Node
394 return isConstant() && valueOfJSConstant(codeBlock).isInt32();
399 bool result = isConstant() && valueOfJSConstant(codeBlock).isDouble();
407 bool result = isConstant() && valueOfJSConstant(codeBlock).isNumber();
414 return isConstant() && valueOfJSConstant(codeBlock).isBoolean();
H A DDFGArgumentsSimplificationPhase.cpp213 && !source->valueOfJSConstant(codeBlock()))
605 JSValue value = node->child1()->valueOfJSConstant(codeBlock());
H A DDFGGraph.cpp254 JSValue value = valueOfJSConstant(node);
H A DDFGPredictionPropagationPhase.cpp144 changed |= setPrediction(speculationFromValue(m_graph.valueOfJSConstant(node)));
H A DDFGFixupPhase.cpp962 JSString* string = jsCast<JSString*>(m_graph.valueOfJSConstant(edge.node()).asCell());
1388 JSValue value = m_graph.valueOfJSConstant(oldNode);
H A DDFGSpeculativeJIT.h554 JSValue valueOfJSConstant(Node* node) { return m_jit.graph().valueOfJSConstant(node); } function in class:JSC::DFG::SpeculativeJIT
561 return valueOfJSConstant(node).isNull();
606 return MacroAssembler::Imm64(JSValue::encode(valueOfJSConstant(node)));
H A DDFGSpeculativeJIT.cpp435 JSValue value = valueOfJSConstant(node);
453 if (valueOfJSConstant(node).isCell())
578 m_jit.move(TrustedImmPtr(valueOfJSConstant(plan.node()).asCell()), plan.gpr());
605 m_jit.move(Imm32(valueOfJSConstant(plan.node()).tag()), plan.gpr());
608 m_jit.move(Imm32(valueOfJSConstant(plan.node()).payload()), plan.gpr());
1965 return ValueRecovery::constant(valueOfJSConstant(node));
2606 JSValue jsValue = valueOfJSConstant(valueUse.node());
H A DDFGSpeculativeJIT32_64.cpp61 JSValue jsValue = valueOfJSConstant(edge.node());
132 m_jit.move(Imm32(valueOfJSConstant(edge.node()).tag()), tagGPR);
133 m_jit.move(Imm32(valueOfJSConstant(edge.node()).payload()), payloadGPR);
1115 JSValue jsValue = valueOfJSConstant(edge.node());
1196 JSValue jsValue = valueOfJSConstant(edge.node());
2443 if (compileStrictEqForConstant(node, node->child1(), valueOfJSConstant(node->child2().node())))
H A DDFGSpeculativeJIT64.cpp65 JSValue jsValue = valueOfJSConstant(edge.node());
142 JSValue jsValue = valueOfJSConstant(edge.node());
1141 JSValue jsValue = valueOfJSConstant(edge.node());
1218 JSValue jsValue = valueOfJSConstant(edge.node());
2364 if (compileStrictEqForConstant(node, node->child1(), valueOfJSConstant(node->child2().node())))
H A DDFGAbstractState.cpp280 forNode(node).set(m_graph.valueOfJSConstant(node));

Completed in 295 milliseconds