summaryrefslogtreecommitdiff
path: root/src/mem/slicc/symbols/Transition.py
diff options
context:
space:
mode:
authorDavid Hashe <david.hashe@amd.com>2015-07-20 09:15:18 -0500
committerDavid Hashe <david.hashe@amd.com>2015-07-20 09:15:18 -0500
commitee0d414fa8dac2371b439778374ec585b358e549 (patch)
tree94d386b04002226fcf816c64c589d544e67504af /src/mem/slicc/symbols/Transition.py
parent6a288d9de3422024b9e99caa8b3717d98e467314 (diff)
downloadgem5-ee0d414fa8dac2371b439778374ec585b358e549.tar.xz
slicc: support for transitions with a wildcard next state
This patches adds support for transitions of the form: transition(START, EVENTS, *) { ACTIONS } This allows a machine to collapse states that differ only in the next state transition to collapse into one, and can help shorten/simplfy some protocols significantly. When * is encountered as an end state of a transition, the next state is determined by calling the machine-specific getNextState function. The next state is determined before any actions of the transition execute, and therefore the next state calculation cannot depend on any of the transition actions.
Diffstat (limited to 'src/mem/slicc/symbols/Transition.py')
-rw-r--r--src/mem/slicc/symbols/Transition.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/mem/slicc/symbols/Transition.py b/src/mem/slicc/symbols/Transition.py
index 901d4a0e8..9ecd6c54b 100644
--- a/src/mem/slicc/symbols/Transition.py
+++ b/src/mem/slicc/symbols/Transition.py
@@ -26,6 +26,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
from slicc.symbols.Symbol import Symbol
+from slicc.symbols.State import WildcardState
class Transition(Symbol):
def __init__(self, table, machine, state, event, nextState, actions,
@@ -35,7 +36,19 @@ class Transition(Symbol):
self.state = machine.states[state]
self.event = machine.events[event]
- self.nextState = machine.states[nextState]
+ if nextState == '*':
+ # check to make sure there is a getNextState function declared
+ found = False
+ for func in machine.functions:
+ if func.c_ident == 'getNextState':
+ found = True
+ break
+ if found == False:
+ fatal("Machine uses a wildcard transition without getNextState defined")
+ self.nextState = WildcardState(machine.symtab,
+ '*', location)
+ else:
+ self.nextState = machine.states[nextState]
self.actions = [ machine.actions[a] for a in actions ]
self.request_types = [ machine.request_types[s] for s in request_types ]
self.resources = {}