• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/

Lines Matching defs:cond

1707     void branchDouble(JITCompiler::DoubleCondition cond, FPRReg left, FPRReg right, BlockIndex destination)
1710 return addBranch(m_jit.branchDouble(cond, left, right), destination);
1712 JITCompiler::Jump notTaken = m_jit.branchDouble(JITCompiler::invert(cond), left, right);
1730 void branch32(JITCompiler::RelationalCondition cond, T left, U right, BlockIndex destination)
1733 return addBranch(m_jit.branch32(cond, left, right), destination);
1735 JITCompiler::Jump notTaken = m_jit.branch32(JITCompiler::invert(cond), left, right);
1742 void branchTest32(JITCompiler::ResultCondition cond, T value, U mask, BlockIndex destination)
1744 ASSERT(JITCompiler::isInvertible(cond));
1747 return addBranch(m_jit.branchTest32(cond, value, mask), destination);
1749 JITCompiler::Jump notTaken = m_jit.branchTest32(JITCompiler::invert(cond), value, mask);
1756 void branchTest32(JITCompiler::ResultCondition cond, T value, BlockIndex destination)
1758 ASSERT(JITCompiler::isInvertible(cond));
1761 return addBranch(m_jit.branchTest32(cond, value), destination);
1763 JITCompiler::Jump notTaken = m_jit.branchTest32(JITCompiler::invert(cond), value);
1771 void branch64(JITCompiler::RelationalCondition cond, T left, U right, BlockIndex destination)
1774 return addBranch(m_jit.branch64(cond, left, right), destination);
1776 JITCompiler::Jump notTaken = m_jit.branch64(JITCompiler::invert(cond), left, right);
1784 void branchPtr(JITCompiler::RelationalCondition cond, T left, U right, BlockIndex destination)
1787 return addBranch(m_jit.branchPtr(cond, left, right), destination);
1789 JITCompiler::Jump notTaken = m_jit.branchPtr(JITCompiler::invert(cond), left, right);
1796 void branchTestPtr(JITCompiler::ResultCondition cond, T value, U mask, BlockIndex destination)
1798 ASSERT(JITCompiler::isInvertible(cond));
1801 return addBranch(m_jit.branchTestPtr(cond, value, mask), destination);
1803 JITCompiler::Jump notTaken = m_jit.branchTestPtr(JITCompiler::invert(cond), value, mask);
1810 void branchTestPtr(JITCompiler::ResultCondition cond, T value, BlockIndex destination)
1812 ASSERT(JITCompiler::isInvertible(cond));
1815 return addBranch(m_jit.branchTestPtr(cond, value), destination);
1817 JITCompiler::Jump notTaken = m_jit.branchTestPtr(JITCompiler::invert(cond), value);
1824 void branchTest8(JITCompiler::ResultCondition cond, T value, U mask, BlockIndex destination)
1826 ASSERT(JITCompiler::isInvertible(cond));
1829 return addBranch(m_jit.branchTest8(cond, value, mask), destination);
1831 JITCompiler::Jump notTaken = m_jit.branchTest8(JITCompiler::invert(cond), value, mask);
1838 void branchTest8(JITCompiler::ResultCondition cond, T value, BlockIndex destination)
1840 ASSERT(JITCompiler::isInvertible(cond));
1843 return addBranch(m_jit.branchTest8(cond, value), destination);
1845 JITCompiler::Jump notTaken = m_jit.branchTest8(JITCompiler::invert(cond), value);