summaryrefslogtreecommitdiff
path: root/src/mem/slicc
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2009-08-04 09:37:27 -0700
committerNathan Binkert <nate@binkert.org>2009-08-04 09:37:27 -0700
commitbd7af84d5ecd037fe4ab1a66948c51d23eb0eb0d (patch)
tree7fd186f24efbc70e43f7ff9bc9c8ab86363087a5 /src/mem/slicc
parentf5c21eaa1a9a1305773eb62e0594efa250cbc792 (diff)
downloadgem5-bd7af84d5ecd037fe4ab1a66948c51d23eb0eb0d.tar.xz
slicc: better error messages when the python parser fails
Diffstat (limited to 'src/mem/slicc')
-rw-r--r--src/mem/slicc/parser/parser.py15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/mem/slicc/parser/parser.py b/src/mem/slicc/parser/parser.py
index 1c7d582ec..c042ba2c1 100644
--- a/src/mem/slicc/parser/parser.py
+++ b/src/mem/slicc/parser/parser.py
@@ -100,8 +100,15 @@ t_SEMICOLON = r';'
t_ASSIGN = r':='
t_DOT = r'\.'
-class TokenError(Exception): pass
-class ParseError(Exception): pass
+class TokenError(Exception):
+ def __init__(self, msg, t):
+ super(TokenError, self).__init__(msg)
+ self.token = t
+
+class ParseError(Exception):
+ def __init__(self, msg, t):
+ super(ParseError, self).__init__(msg)
+ self.token = t
def t_error(t):
raise TokenError("Illegal character", t)
@@ -157,7 +164,7 @@ def p_file(p):
p[0] = [ x for x in p[1] if x is not None ]
def p_error(t):
- raise ParseError(t)
+ raise ParseError("Syntax error", t)
def p_empty(p):
"empty :"
@@ -544,7 +551,7 @@ def scan(filenames):
try:
results = yacc.parse(file(filename, 'r').read())
except (TokenError, ParseError), e:
- raise type(e), tuple([filename] + [ i for i in e ])
+ sys.exit("%s: %s:%d" % (e, filename, e.token.lineno))
for result in results:
result.add(hh, cc)