diff -r bb35cb393bbb -r 1a87cbfa3c2b src/mem/slicc/symbols/StateMachine.py --- a/src/mem/slicc/symbols/StateMachine.py Fri Feb 18 14:35:15 2011 -0500 +++ b/src/mem/slicc/symbols/StateMachine.py Fri Feb 18 17:58:06 2011 -0500 @@ -883,7 +883,7 @@ void $c_ident::${{action.ident}}(${{self.TBEType.c_ident}}*& m_tbe_ptr, ${{self.EntryType.c_ident}}*& m_cache_entry_ptr, const Address& addr) { - DPRINTF(RubyGenerated, "executing\\n"); + DPRINTF(RubyGenerated, "executing ${{action.ident}}\\n"); ${{action["c_code"]}} } @@ -898,7 +898,7 @@ void $c_ident::${{action.ident}}(${{self.TBEType.c_ident}}*& m_tbe_ptr, const Address& addr) { - DPRINTF(RubyGenerated, "executing\\n"); + DPRINTF(RubyGenerated, "executing ${{action.ident}}\\n"); ${{action["c_code"]}} } @@ -913,7 +913,7 @@ void $c_ident::${{action.ident}}(${{self.EntryType.c_ident}}*& m_cache_entry_ptr, const Address& addr) { - DPRINTF(RubyGenerated, "executing\\n"); + DPRINTF(RubyGenerated, "executing ${{action.ident}}\\n"); ${{action["c_code"]}} } @@ -928,7 +928,7 @@ void $c_ident::${{action.ident}}(const Address& addr) { - DPRINTF(RubyGenerated, "executing\\n"); + DPRINTF(RubyGenerated, "executing ${{action.ident}}\\n"); ${{action["c_code"]}} }