Searched refs:ballot (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGPredictionPropagationPhase.cpp691 DoubleBallot ballot; local
697 ballot = VoteDouble;
699 ballot = VoteValue;
701 m_graph.voteNode(node->child1(), ballot, weight);
702 m_graph.voteNode(node->child2(), ballot, weight);
710 DoubleBallot ballot; local
716 ballot = VoteDouble;
718 ballot = VoteValue;
720 m_graph.voteNode(node->child1(), ballot, weight);
721 m_graph.voteNode(node->child2(), ballot, weigh
732 DoubleBallot ballot; local
747 DoubleBallot ballot; local
[all...]
H A DDFGVariableAccessData.h172 void vote(unsigned ballot, float weight = 1) argument
174 ASSERT(ballot < 2);
175 m_votes[ballot] += weight;
H A DDFGGraph.h720 void voteNode(Node* node, unsigned ballot, float weight = 1) argument
732 node->variableAccessData()->vote(ballot, weight);
735 void voteNode(Edge edge, unsigned ballot, float weight = 1) argument
737 voteNode(edge.node(), ballot, weight);
740 void voteChildren(Node* node, unsigned ballot, float weight = 1) argument
747 voteNode(m_varArgChildren[childIdx], ballot, weight);
754 voteNode(node->child1(), ballot, weight);
757 voteNode(node->child2(), ballot, weight);
760 voteNode(node->child3(), ballot, weight);

Completed in 222 milliseconds