Searched refs:isProved (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DCallLinkStatus.h69 CallLinkStatus& setIsProved(bool isProved) argument
71 m_isProved = isProved;
116 bool isProved() const { return m_isProved; } function in class:JSC::CallLinkStatus
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGDCEPhase.cpp98 if (node->child1().isProved() || node->child1().useKind() == UntypedUse) {
129 if (!edge || edge.isProved() || edge.useKind() == UntypedUse)
161 if (edge.isProved() || edge.useKind() == UntypedUse)
170 if (!(edge.isProved() || edge.useKind() == UntypedUse))
184 if (edge.isProved() || edge.useKind() == UntypedUse)
H A DDFGCommon.h217 inline bool isProved(ProofStatus proofStatus) function in namespace:JSC::DFG
223 inline ProofStatus proofStatusForIsProved(bool isProved) argument
225 return isProved ? IsProved : NeedsCheck;
H A DDFGEdge.h116 bool isProved() const
160 return shiftedValue | (static_cast<uintptr_t>(useKind) << 1) | DFG::isProved(proofStatus);
166 return (static_cast<uintptr_t>(useKind) << 1) | DFG::isProved(proofStatus);
H A DDFGByteCodeParser.cpp1231 if (callLinkStatus.isProved()) {

Completed in 110 milliseconds