Searched refs:m_liveVariables (Results 1 – 2 of 2) sorted by relevance
110 for (vector<Variable*>::iterator i = m_liveVariables.begin(); i != m_liveVariables.end(); i++) in ~VariableScope()119 m_liveVariables.push_back(variable); in allocate()137 …vector<Variable*>::iterator pos = std::find(m_liveVariables.begin(), m_liveVariables.end(), variab… in removeLive()138 DE_ASSERT(pos != m_liveVariables.end()); in removeLive()141 m_liveVariables.erase(pos); in removeLive()
72 std::vector<Variable*>& getLiveVariables (void) { return m_liveVariables; } in getLiveVariables()73 const std::vector<Variable*>& getLiveVariables (void) const { return m_liveVariables; } in getLiveVariables()80 …std::vector<Variable*> m_liveVariables; //!< Live variables (available for expression) that ca… member in rsg::VariableScope