HomeSort by: relevance | last modified time | path
    Searched defs:m_acc (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
tree-tailcall.cc 75 To do this, we maintain two accumulators (a_acc and m_acc) that indicate
76 when we reach the return x statement, we should return a_acc + x * m_acc
88 We rewrite this to a gimple equivalent of return m_acc * x + a_acc.
99 a_acc + (a + m * f(...)) * m_acc = (a_acc + a * m_acc) + (m * m_acc) * f(...).
101 I.e. we increase a_acc by a * m_acc, multiply m_acc by m and
127 static tree m_acc, a_acc; variable
859 m_acc_arg = m_acc;
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-tailcall.cc 75 To do this, we maintain two accumulators (a_acc and m_acc) that indicate
76 when we reach the return x statement, we should return a_acc + x * m_acc
88 We rewrite this to a gimple equivalent of return m_acc * x + a_acc.
99 a_acc + (a + m * f(...)) * m_acc = (a_acc + a * m_acc) + (m * m_acc) * f(...).
101 I.e. we increase a_acc by a * m_acc, multiply m_acc by m and
127 static tree m_acc, a_acc; variable
859 m_acc_arg = m_acc;
    [all...]

Completed in 15 milliseconds