diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2011-03-18 14:12:01 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2011-03-18 14:12:01 -0500 |
commit | 847ba941ea345f01b2f5176432b6541902a41d2b (patch) | |
tree | 0941a91a6d9e643916640c203328bd9d69ee9c38 /src/mem/slicc/parser.py | |
parent | cc14689a86d4a17bc8d8c77a24539d45e7f78da9 (diff) | |
download | gem5-847ba941ea345f01b2f5176432b6541902a41d2b.tar.xz |
SLICC: Remove the keyword wake_up_all_dependents
In order to add stall and wait facility for protocols, a keyword
wake_up_all_dependents was introduced. This patch removes the keyword,
instead this functionality is now implemented as function call.
Diffstat (limited to 'src/mem/slicc/parser.py')
-rw-r--r-- | src/mem/slicc/parser.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mem/slicc/parser.py b/src/mem/slicc/parser.py index 448954e63..fcf3c71ac 100644 --- a/src/mem/slicc/parser.py +++ b/src/mem/slicc/parser.py @@ -160,7 +160,6 @@ class SLICC(Grammar): 'peek' : 'PEEK', 'stall_and_wait' : 'STALL_AND_WAIT', 'wake_up_dependents' : 'WAKE_UP_DEPENDENTS', - 'wake_up_all_dependents' : 'WAKE_UP_ALL_DEPENDENTS', 'enqueue' : 'ENQUEUE', 'copy_head' : 'COPY_HEAD', 'check_allocate' : 'CHECK_ALLOCATE', @@ -582,10 +581,6 @@ class SLICC(Grammar): "statement : WAKE_UP_DEPENDENTS '(' var ')' SEMI" p[0] = ast.WakeUpDependentsStatementAST(self, p[3]) - def p_statement__wake_up_all_dependents(self, p): - "statement : WAKE_UP_ALL_DEPENDENTS '(' ')' SEMI" - p[0] = ast.WakeUpAllDependentsStatementAST(self) - def p_statement__peek(self, p): "statement : PEEK '(' var ',' type pairs ')' statements" p[0] = ast.PeekStatementAST(self, p[3], p[5], p[6], p[8], "peek") |