Lines Matching refs:m_stack
33 : m_stack((AstScope**)rtl_allocateZeroMemory(sizeof(AstScope*) * STACKSIZE_INCREMENT)) in AstStack()
43 if (m_stack[i]) in ~AstStack()
44 delete(m_stack[i]); in ~AstStack()
47 rtl_freeMemory(m_stack); in ~AstStack()
59 return m_stack[m_top - 1]; in top()
66 return m_stack[0]; in bottom()
87 if ( m_stack[i - 1] ) in topNonNull()
88 return m_stack[i - 1]; in topNonNull()
108 tmp[i] = m_stack[i]; in push()
110 rtl_freeMemory(m_stack); in push()
111 m_stack = tmp; in push()
115 m_stack[m_top++] = pScope; in push()
126 pScope = m_stack[--m_top]; in pop()