2012-12-02 12:36:55 +01:00
|
|
|
#!/usr/bin/python
|
2013-01-10 11:10:45 +01:00
|
|
|
#
|
|
|
|
# Cppcheck - A tool for static C/C++ code analysis
|
|
|
|
# Copyright (C) 2007-2013 Daniel Marjamaeki and Cppcheck team.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2012-12-02 12:36:55 +01:00
|
|
|
|
2013-01-09 19:15:13 +01:00
|
|
|
import os
|
2013-01-09 19:22:40 +01:00
|
|
|
import sys
|
2012-12-02 12:36:55 +01:00
|
|
|
import re
|
|
|
|
import glob
|
2013-01-09 19:41:03 +01:00
|
|
|
import argparse
|
2012-12-02 12:36:55 +01:00
|
|
|
|
2013-03-02 16:45:26 +01:00
|
|
|
|
2013-01-04 03:38:40 +01:00
|
|
|
class MatchCompiler:
|
2013-01-07 22:27:57 +01:00
|
|
|
def __init__(self, verify_mode=False):
|
|
|
|
self._verifyMode = verify_mode
|
2013-01-04 03:56:21 +01:00
|
|
|
self._reset()
|
2013-01-04 03:38:40 +01:00
|
|
|
|
2013-01-04 03:56:21 +01:00
|
|
|
def _reset(self):
|
2013-01-04 04:47:01 +01:00
|
|
|
self._rawMatchFunctions = []
|
2013-01-04 03:56:21 +01:00
|
|
|
self._matchStrs = {}
|
2013-01-04 04:47:01 +01:00
|
|
|
self._matchFunctionCache = {}
|
|
|
|
|
|
|
|
def _generateCacheSignature(self, pattern, endToken=None, varId=None, isFindMatch=False):
|
|
|
|
sig = pattern
|
|
|
|
|
|
|
|
if endToken:
|
|
|
|
sig += '|ENDTOKEN'
|
|
|
|
else:
|
|
|
|
sig += '|NO-ENDTOKEN'
|
|
|
|
|
|
|
|
if varId:
|
|
|
|
sig += '|VARID'
|
|
|
|
else:
|
|
|
|
sig += '|NO-VARID'
|
|
|
|
|
|
|
|
if isFindMatch:
|
|
|
|
sig += '|ISFINDMATCH'
|
|
|
|
else:
|
|
|
|
sig += '|NORMALMATCH'
|
|
|
|
|
|
|
|
return sig
|
|
|
|
|
|
|
|
def _lookupMatchFunctionId(self, pattern, endToken=None, varId=None, isFindMatch=False):
|
|
|
|
signature = self._generateCacheSignature(pattern, endToken, varId, isFindMatch)
|
|
|
|
|
|
|
|
if signature in self._matchFunctionCache:
|
|
|
|
return self._matchFunctionCache[signature]
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
def _insertMatchFunctionId(self, id, pattern, endToken=None, varId=None, isFindMatch=False):
|
|
|
|
signature = self._generateCacheSignature(pattern, endToken, varId, isFindMatch)
|
|
|
|
|
|
|
|
# function signature should not be in the cache
|
|
|
|
assert(self._lookupMatchFunctionId(pattern, endToken, varId, isFindMatch) == None)
|
|
|
|
|
|
|
|
self._matchFunctionCache[signature] = id
|
2013-01-04 03:56:21 +01:00
|
|
|
|
|
|
|
def _insertMatchStr(self, look_for):
|
2013-01-04 03:38:40 +01:00
|
|
|
prefix = 'matchStr'
|
|
|
|
|
|
|
|
# Add entry if needed
|
2013-01-04 03:56:21 +01:00
|
|
|
if look_for not in self._matchStrs:
|
|
|
|
pos = len(self._matchStrs) + 1
|
|
|
|
self._matchStrs[look_for] = pos
|
2013-01-04 03:38:40 +01:00
|
|
|
|
2013-01-04 03:56:21 +01:00
|
|
|
return prefix + str(self._matchStrs[look_for])
|
2013-01-04 03:38:40 +01:00
|
|
|
|
2013-01-04 03:56:21 +01:00
|
|
|
def _compileCmd(self, tok):
|
2013-01-04 03:38:40 +01:00
|
|
|
if tok == '%any%':
|
|
|
|
return 'true'
|
|
|
|
elif tok == '%bool%':
|
|
|
|
return 'tok->isBoolean()'
|
|
|
|
elif tok == '%char%':
|
|
|
|
return '(tok->type()==Token::eChar)'
|
|
|
|
elif tok == '%comp%':
|
|
|
|
return 'tok->isComparisonOp()'
|
|
|
|
elif tok == '%num%':
|
|
|
|
return 'tok->isNumber()'
|
2013-03-01 11:52:44 +01:00
|
|
|
elif tok == '%cop%':
|
|
|
|
return 'tok->isConstOp()'
|
2013-01-04 03:38:40 +01:00
|
|
|
elif tok == '%op%':
|
|
|
|
return 'tok->isOp()'
|
|
|
|
elif tok == '%or%':
|
2013-01-04 03:56:21 +01:00
|
|
|
return '(tok->str()==' + self._insertMatchStr('|') + ')/* | */'
|
2013-01-04 03:38:40 +01:00
|
|
|
elif tok == '%oror%':
|
2013-01-04 03:56:21 +01:00
|
|
|
return '(tok->str()==' + self._insertMatchStr('||') + ')/* || */'
|
2013-01-04 03:38:40 +01:00
|
|
|
elif tok == '%str%':
|
|
|
|
return '(tok->type()==Token::eString)'
|
|
|
|
elif tok == '%type%':
|
2013-01-04 03:56:21 +01:00
|
|
|
return '(tok->isName() && tok->varId()==0U && tok->str() != ' + self._insertMatchStr('delete') + '/* delete */)'
|
2013-01-04 03:38:40 +01:00
|
|
|
elif tok == '%var%':
|
|
|
|
return 'tok->isName()'
|
|
|
|
elif tok == '%varid%':
|
|
|
|
return '(tok->isName() && tok->varId()==varid)'
|
2013-03-02 16:45:26 +01:00
|
|
|
elif (len(tok) > 2) and (tok[0] == "%"):
|
2013-01-04 03:38:40 +01:00
|
|
|
print ("unhandled:" + tok)
|
|
|
|
|
2013-01-04 03:56:21 +01:00
|
|
|
return '(tok->str()==' + self._insertMatchStr(tok) + ')/* ' + tok + ' */'
|
2013-01-04 03:38:40 +01:00
|
|
|
|
2013-05-15 18:18:58 +02:00
|
|
|
def _compilePattern(self, pattern, nr, varid, isFindMatch=False, tokenType="const Token"):
|
2013-01-04 03:38:40 +01:00
|
|
|
ret = ''
|
|
|
|
returnStatement = ''
|
|
|
|
|
|
|
|
if isFindMatch:
|
2013-05-15 18:18:58 +02:00
|
|
|
ret = '\n ' + tokenType + ' * tok = start_tok;\n'
|
2013-01-04 03:44:04 +01:00
|
|
|
returnStatement = 'continue;\n'
|
2013-01-04 03:38:40 +01:00
|
|
|
else:
|
|
|
|
arg2 = ''
|
|
|
|
if varid:
|
|
|
|
arg2 = ', const unsigned int varid'
|
|
|
|
|
2013-01-04 04:47:01 +01:00
|
|
|
ret = '// pattern: ' + pattern + '\n'
|
2013-05-15 18:18:58 +02:00
|
|
|
ret += 'static bool match' + str(nr) + '(' + tokenType + '* tok'+arg2+') {\n'
|
2013-01-04 03:44:04 +01:00
|
|
|
returnStatement = 'return false;\n'
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
tokens = pattern.split(' ')
|
|
|
|
gotoNextToken = ''
|
|
|
|
checked_varid = False
|
|
|
|
for tok in tokens:
|
|
|
|
if tok == '':
|
|
|
|
continue
|
|
|
|
ret += gotoNextToken
|
|
|
|
gotoNextToken = ' tok = tok->next();\n'
|
|
|
|
|
|
|
|
# if varid is provided, check that it's non-zero on first use
|
2013-03-02 16:45:26 +01:00
|
|
|
if varid and tok.find('%varid%') != -1 and checked_varid is False:
|
2013-01-04 03:38:40 +01:00
|
|
|
ret += ' if (varid==0U)\n'
|
|
|
|
ret += ' throw InternalError(tok, "Internal error. Token::Match called with varid 0. Please report this to Cppcheck developers");\n'
|
|
|
|
checked_varid = True
|
|
|
|
|
|
|
|
# [abc]
|
|
|
|
if (len(tok) > 2) and (tok[0] == '[') and (tok[-1] == ']'):
|
|
|
|
ret += ' if (!tok || tok->str().size()!=1U || !strchr("'+tok[1:-1]+'", tok->str()[0]))\n'
|
|
|
|
ret += ' ' + returnStatement
|
2013-01-04 03:09:41 +01:00
|
|
|
|
2013-01-04 03:38:40 +01:00
|
|
|
# a|b|c
|
|
|
|
elif tok.find('|') > 0:
|
|
|
|
tokens2 = tok.split('|')
|
|
|
|
logicalOp = None
|
|
|
|
neg = None
|
|
|
|
if "" in tokens2:
|
|
|
|
ret += ' if (tok && ('
|
|
|
|
logicalOp = ' || '
|
|
|
|
neg = ''
|
|
|
|
else:
|
|
|
|
ret += ' if (!tok || !('
|
|
|
|
logicalOp = ' || '
|
|
|
|
neg = ''
|
|
|
|
first = True
|
|
|
|
for tok2 in tokens2:
|
|
|
|
if tok2 == '':
|
|
|
|
continue
|
|
|
|
if not first:
|
|
|
|
ret += logicalOp
|
|
|
|
first = False
|
2013-01-04 03:56:21 +01:00
|
|
|
ret += neg + self._compileCmd(tok2)
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
if "" in tokens2:
|
|
|
|
ret += '))\n'
|
|
|
|
ret += ' tok = tok->next();\n'
|
|
|
|
gotoNextToken = ''
|
|
|
|
else:
|
|
|
|
ret += '))\n'
|
|
|
|
ret += ' ' + returnStatement
|
|
|
|
|
|
|
|
# !!a
|
2013-01-04 03:44:04 +01:00
|
|
|
elif tok[0:2] == "!!":
|
2013-01-04 03:56:21 +01:00
|
|
|
ret += ' if (tok && tok->str() == ' + self._insertMatchStr(tok[2:]) + ')/* ' + tok[2:] + ' */\n'
|
2013-01-04 03:09:41 +01:00
|
|
|
ret += ' ' + returnStatement
|
2013-01-04 03:38:40 +01:00
|
|
|
gotoNextToken = ' tok = tok ? tok->next() : NULL;\n'
|
2012-12-02 12:36:55 +01:00
|
|
|
|
2013-01-04 03:38:40 +01:00
|
|
|
else:
|
2013-01-04 03:56:21 +01:00
|
|
|
ret += ' if (!tok || !' + self._compileCmd(tok) + ')\n'
|
2013-01-04 03:38:40 +01:00
|
|
|
ret += ' ' + returnStatement
|
2012-12-02 12:36:55 +01:00
|
|
|
|
2013-01-04 03:38:40 +01:00
|
|
|
if isFindMatch:
|
|
|
|
ret += ' return start_tok;\n'
|
2012-12-02 12:36:55 +01:00
|
|
|
else:
|
2013-01-04 03:38:40 +01:00
|
|
|
ret += ' return true;\n'
|
|
|
|
ret += '}\n'
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
2013-01-04 03:56:21 +01:00
|
|
|
def _compileFindPattern(self, pattern, findmatchnr, endToken, varId):
|
2013-01-04 03:38:40 +01:00
|
|
|
more_args = ''
|
|
|
|
endCondition = ''
|
|
|
|
if endToken:
|
2013-05-15 18:18:58 +02:00
|
|
|
more_args += ', const Token * end'
|
2013-01-04 03:38:40 +01:00
|
|
|
endCondition = ' && start_tok != end'
|
|
|
|
if varId:
|
|
|
|
more_args += ', unsigned int varid'
|
|
|
|
|
2013-01-04 04:47:01 +01:00
|
|
|
ret = '// pattern: ' + pattern + '\n'
|
2013-06-02 13:57:25 +02:00
|
|
|
ret += 'template<class T> static T * findmatch' + str(findmatchnr) + '(T * start_tok'+more_args+') {\n'
|
2013-01-04 03:38:40 +01:00
|
|
|
ret += ' for (; start_tok' + endCondition + '; start_tok = start_tok->next()) {\n'
|
|
|
|
|
2013-05-15 18:18:58 +02:00
|
|
|
ret += self._compilePattern(pattern, -1, varId, True, 'T')
|
2013-01-04 03:38:40 +01:00
|
|
|
ret += ' }\n'
|
|
|
|
ret += ' return NULL;\n}\n'
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def parseMatch(self, line, pos1):
|
|
|
|
parlevel = 0
|
|
|
|
args = []
|
|
|
|
argstart = 0
|
|
|
|
pos = pos1
|
|
|
|
inString = False
|
|
|
|
while pos < len(line):
|
|
|
|
if inString:
|
|
|
|
if line[pos] == '\\':
|
|
|
|
pos += 1
|
|
|
|
elif line[pos] == '"':
|
|
|
|
inString = False
|
2012-12-08 19:29:16 +01:00
|
|
|
elif line[pos] == '"':
|
2013-01-04 03:38:40 +01:00
|
|
|
inString = True
|
|
|
|
elif line[pos] == '(':
|
|
|
|
parlevel += 1
|
|
|
|
if parlevel == 1:
|
|
|
|
argstart = pos + 1
|
|
|
|
elif line[pos] == ')':
|
|
|
|
parlevel -= 1
|
|
|
|
if parlevel == 0:
|
|
|
|
ret = []
|
|
|
|
ret.append(line[pos1:pos+1])
|
|
|
|
for arg in args:
|
|
|
|
ret.append(arg)
|
|
|
|
ret.append(line[argstart:pos])
|
|
|
|
return ret
|
|
|
|
elif line[pos] == ',' and parlevel == 1:
|
|
|
|
args.append(line[argstart:pos])
|
2012-12-08 19:29:16 +01:00
|
|
|
argstart = pos + 1
|
2013-01-04 03:38:40 +01:00
|
|
|
pos += 1
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
def _parseStringComparison(self, line, pos1):
|
|
|
|
startPos = 0
|
|
|
|
endPos = 0
|
|
|
|
pos = pos1
|
|
|
|
inString = False
|
|
|
|
while pos < len(line):
|
|
|
|
if inString:
|
|
|
|
if line[pos] == '\\':
|
|
|
|
pos += 1
|
|
|
|
elif line[pos] == '"':
|
|
|
|
inString = False
|
|
|
|
endPos = pos+1
|
|
|
|
return (startPos, endPos)
|
2012-12-31 01:40:58 +01:00
|
|
|
elif line[pos] == '"':
|
2013-01-04 03:38:40 +01:00
|
|
|
startPos = pos
|
|
|
|
inString = True
|
|
|
|
pos += 1
|
2012-12-31 15:30:27 +01:00
|
|
|
|
2013-01-04 03:38:40 +01:00
|
|
|
return None
|
2012-12-31 15:30:27 +01:00
|
|
|
|
2013-01-07 22:27:57 +01:00
|
|
|
def _compileVerifyTokenMatch(self, is_simplematch, verifyNumber, pattern, patternNumber, varId):
|
|
|
|
more_args = ''
|
|
|
|
if varId:
|
|
|
|
more_args = ', const unsigned int varid'
|
|
|
|
|
|
|
|
ret = 'static bool match_verify' + str(verifyNumber) + '(const Token *tok'+more_args+') {\n'
|
|
|
|
|
|
|
|
origMatchName = 'Match'
|
|
|
|
if is_simplematch:
|
|
|
|
origMatchName = 'simpleMatch'
|
|
|
|
assert(varId == None)
|
|
|
|
|
2013-01-09 18:56:00 +01:00
|
|
|
ret += ' bool res_compiled_match = match'+str(patternNumber)+'(tok'
|
2013-01-07 22:27:57 +01:00
|
|
|
if varId:
|
|
|
|
ret += ', varid'
|
|
|
|
ret += ');\n'
|
|
|
|
|
2013-01-09 18:56:00 +01:00
|
|
|
ret += ' bool res_parsed_match = Token::' + origMatchName + '(tok, "' + pattern + '"'
|
2013-01-07 22:27:57 +01:00
|
|
|
if varId:
|
|
|
|
ret += ', varid'
|
|
|
|
ret += ');\n'
|
|
|
|
|
|
|
|
ret += '\n'
|
|
|
|
# Don't use assert() here, it's disabled for optimized builds.
|
|
|
|
# We also need to verify builds in 'release' mode
|
2013-01-09 18:56:00 +01:00
|
|
|
ret += ' if (res_parsed_match != res_compiled_match) {\n'
|
|
|
|
# ret += ' std::cout << "res_parsed_match' + str(verifyNumber) + ': " << res_parsed_match << ", res_compiled_match: " << res_compiled_match << "\\n";\n'
|
|
|
|
# ret += ' if (tok)\n'
|
|
|
|
# ret += ' std::cout << "tok: " << tok->str();\n'
|
|
|
|
# ret += ' if (tok->next())\n'
|
|
|
|
# ret += ' std::cout << "tok next: " << tok->next()->str();\n'
|
2013-01-07 22:27:57 +01:00
|
|
|
ret += ' throw InternalError(tok, "Internal error. compiled match returned different result than parsed match");\n'
|
2013-01-09 18:56:00 +01:00
|
|
|
ret += ' }\n'
|
2013-01-07 22:27:57 +01:00
|
|
|
ret += ' return res_compiled_match;\n'
|
|
|
|
ret += '}\n'
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def _replaceSpecificTokenMatch(self, is_simplematch, line, start_pos, end_pos, pattern, tok, varId):
|
2013-01-07 21:39:49 +01:00
|
|
|
more_args = ''
|
|
|
|
if varId:
|
|
|
|
more_args = ',' + varId
|
|
|
|
|
|
|
|
# Compile function or use previously compiled one
|
|
|
|
patternNumber = self._lookupMatchFunctionId(pattern, None, varId, False)
|
|
|
|
|
2013-03-02 16:45:26 +01:00
|
|
|
if patternNumber is None:
|
2013-01-07 21:39:49 +01:00
|
|
|
patternNumber = len(self._rawMatchFunctions) + 1
|
|
|
|
self._insertMatchFunctionId(patternNumber, pattern, None, varId, False)
|
|
|
|
self._rawMatchFunctions.append(self._compilePattern(pattern, patternNumber, varId))
|
|
|
|
|
2013-01-07 22:27:57 +01:00
|
|
|
functionName = "match"
|
|
|
|
if self._verifyMode:
|
|
|
|
verifyNumber = len(self._rawMatchFunctions) + 1
|
|
|
|
self._rawMatchFunctions.append(self._compileVerifyTokenMatch(is_simplematch, verifyNumber, pattern, patternNumber, varId))
|
|
|
|
|
|
|
|
# inject verify function
|
|
|
|
functionName = "match_verify"
|
|
|
|
patternNumber = verifyNumber
|
|
|
|
|
|
|
|
return line[:start_pos]+functionName+str(patternNumber)+'('+tok+more_args+')'+line[start_pos+end_pos:]
|
2013-01-07 21:39:49 +01:00
|
|
|
|
2013-01-04 03:56:21 +01:00
|
|
|
def _replaceTokenMatch(self, line):
|
2013-01-04 03:38:40 +01:00
|
|
|
while True:
|
2013-01-07 22:27:57 +01:00
|
|
|
is_simplematch = False
|
2013-01-04 03:38:40 +01:00
|
|
|
pos1 = line.find('Token::Match(')
|
|
|
|
if pos1 == -1:
|
2013-01-07 22:27:57 +01:00
|
|
|
is_simplematch = True
|
2013-01-04 03:38:40 +01:00
|
|
|
pos1 = line.find('Token::simpleMatch(')
|
|
|
|
if pos1 == -1:
|
|
|
|
break
|
|
|
|
|
|
|
|
res = self.parseMatch(line, pos1)
|
2013-03-02 16:45:26 +01:00
|
|
|
if res is None:
|
2013-01-04 03:38:40 +01:00
|
|
|
break
|
2013-01-04 04:47:01 +01:00
|
|
|
|
2013-03-02 16:45:26 +01:00
|
|
|
assert(len(res) == 3 or len(res) == 4) # assert that Token::Match has either 2 or 3 arguments
|
2013-01-04 04:47:01 +01:00
|
|
|
|
2013-01-07 21:39:49 +01:00
|
|
|
end_pos = len(res[0])
|
|
|
|
tok = res[1]
|
|
|
|
raw_pattern = res[2]
|
|
|
|
varId = None
|
|
|
|
if len(res) == 4:
|
|
|
|
varId = res[3]
|
|
|
|
|
|
|
|
res = re.match(r'\s*"([^"]*)"\s*$', raw_pattern)
|
2013-03-02 16:45:26 +01:00
|
|
|
if res is None:
|
2013-01-07 21:39:49 +01:00
|
|
|
break # Non-const pattern - bailout
|
2013-01-04 04:47:01 +01:00
|
|
|
|
2013-01-07 21:39:49 +01:00
|
|
|
pattern = res.group(1)
|
2013-01-07 22:27:57 +01:00
|
|
|
line = self._replaceSpecificTokenMatch(is_simplematch, line, pos1, end_pos, pattern, tok, varId)
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
return line
|
|
|
|
|
2013-01-13 20:48:19 +01:00
|
|
|
def _compileVerifyTokenFindMatch(self, is_findsimplematch, verifyNumber, pattern, patternNumber, endToken, varId):
|
|
|
|
more_args = ''
|
|
|
|
if endToken:
|
2013-05-15 18:18:58 +02:00
|
|
|
more_args += ', const Token * endToken'
|
2013-01-13 20:48:19 +01:00
|
|
|
if varId:
|
|
|
|
more_args += ', const unsigned int varid'
|
|
|
|
|
2013-06-02 13:57:25 +02:00
|
|
|
ret = 'template < class T > static T * findmatch_verify' + str(verifyNumber) + '(T * tok'+more_args+') {\n'
|
2013-01-13 20:48:19 +01:00
|
|
|
|
|
|
|
origFindMatchName = 'findmatch'
|
|
|
|
if is_findsimplematch:
|
|
|
|
origMatchName = 'findsimplematch'
|
|
|
|
assert(varId == None)
|
|
|
|
|
2013-05-15 18:18:58 +02:00
|
|
|
ret += ' T * res_compiled_findmatch = findmatch'+str(patternNumber)+'(tok'
|
2013-01-13 20:48:19 +01:00
|
|
|
if endToken:
|
|
|
|
ret += ', endToken'
|
|
|
|
if varId:
|
|
|
|
ret += ', varid'
|
|
|
|
ret += ');\n'
|
|
|
|
|
2013-05-15 18:18:58 +02:00
|
|
|
ret += ' T * res_parsed_findmatch = Token::' + origFindMatchName + '(tok, "' + pattern + '"'
|
2013-01-13 20:48:19 +01:00
|
|
|
if endToken:
|
|
|
|
ret += ', endToken'
|
|
|
|
if varId:
|
|
|
|
ret += ', varid'
|
|
|
|
ret += ');\n'
|
|
|
|
|
|
|
|
ret += '\n'
|
|
|
|
# Don't use assert() here, it's disabled for optimized builds.
|
|
|
|
# We also need to verify builds in 'release' mode
|
|
|
|
ret += ' if (res_parsed_findmatch != res_compiled_findmatch) {\n'
|
|
|
|
ret += ' throw InternalError(tok, "Internal error. compiled findmatch returned different result than parsed findmatch");\n'
|
|
|
|
ret += ' }\n'
|
|
|
|
ret += ' return res_compiled_findmatch;\n'
|
|
|
|
ret += '}\n'
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def _replaceSpecificFindTokenMatch(self, is_findsimplematch, line, start_pos, end_pos, pattern, tok, endToken, varId):
|
2013-01-13 20:26:25 +01:00
|
|
|
more_args = ''
|
|
|
|
if endToken:
|
|
|
|
more_args += ',' + endToken
|
|
|
|
if varId:
|
|
|
|
more_args += ',' + varId
|
|
|
|
|
|
|
|
# Compile function or use previously compiled one
|
|
|
|
findMatchNumber = self._lookupMatchFunctionId(pattern, endToken, varId, True)
|
|
|
|
|
2013-03-02 16:45:26 +01:00
|
|
|
if findMatchNumber is None:
|
2013-01-13 20:26:25 +01:00
|
|
|
findMatchNumber = len(self._rawMatchFunctions) + 1
|
|
|
|
self._insertMatchFunctionId(findMatchNumber, pattern, endToken, varId, True)
|
|
|
|
self._rawMatchFunctions.append(self._compileFindPattern(pattern, findMatchNumber, endToken, varId))
|
|
|
|
|
2013-01-13 20:48:19 +01:00
|
|
|
functionName = "findmatch"
|
|
|
|
if self._verifyMode:
|
|
|
|
verifyNumber = len(self._rawMatchFunctions) + 1
|
|
|
|
self._rawMatchFunctions.append(self._compileVerifyTokenFindMatch(is_findsimplematch, verifyNumber, pattern, findMatchNumber, endToken, varId))
|
|
|
|
|
|
|
|
# inject verify function
|
|
|
|
functionName = "findmatch_verify"
|
|
|
|
findMatchNumber = verifyNumber
|
|
|
|
|
|
|
|
return line[:start_pos]+functionName+str(findMatchNumber)+'('+tok+more_args+')'+line[start_pos+end_pos:]
|
2013-01-13 20:26:25 +01:00
|
|
|
|
2013-01-04 03:56:21 +01:00
|
|
|
def _replaceTokenFindMatch(self, line):
|
2013-01-04 03:38:40 +01:00
|
|
|
pos1 = 0
|
|
|
|
while True:
|
2013-01-13 20:48:19 +01:00
|
|
|
is_findsimplematch = True
|
2013-01-04 03:38:40 +01:00
|
|
|
pos1 = line.find('Token::findsimplematch(')
|
|
|
|
if pos1 == -1:
|
2013-01-13 20:48:19 +01:00
|
|
|
is_findsimplematch = False
|
2013-01-04 03:38:40 +01:00
|
|
|
pos1 = line.find('Token::findmatch(')
|
|
|
|
if pos1 == -1:
|
|
|
|
break
|
|
|
|
|
|
|
|
res = self.parseMatch(line, pos1)
|
2013-03-02 16:45:26 +01:00
|
|
|
if res is None:
|
2013-01-04 03:38:40 +01:00
|
|
|
break
|
2013-01-13 20:17:30 +01:00
|
|
|
|
2013-03-02 16:45:26 +01:00
|
|
|
assert(len(res) >= 3 or len(res) < 6) # assert that Token::find(simple)match has either 2, 3 or four arguments
|
2013-01-13 20:17:30 +01:00
|
|
|
|
|
|
|
g0 = res[0]
|
2013-01-13 20:26:25 +01:00
|
|
|
tok = res[1]
|
2013-01-13 20:17:30 +01:00
|
|
|
pattern = res[2]
|
|
|
|
|
|
|
|
# Check for varId
|
|
|
|
varId = None
|
2013-01-13 20:48:19 +01:00
|
|
|
if not is_findsimplematch and g0.find("%varid%") != -1:
|
2013-01-13 20:17:30 +01:00
|
|
|
if len(res) == 5:
|
|
|
|
varId = res[4]
|
2013-01-04 03:38:40 +01:00
|
|
|
else:
|
2013-01-13 20:17:30 +01:00
|
|
|
varId = res[3]
|
|
|
|
|
|
|
|
# endToken support. We resolve the overloaded type by checking if varId is used or not.
|
|
|
|
# Function protoypes:
|
|
|
|
# Token *findsimplematch(const Token *tok, const char pattern[]);
|
|
|
|
# Token *findsimplematch(const Token *tok, const char pattern[], const Token *end);
|
|
|
|
# Token *findmatch(const Token *tok, const char pattern[], unsigned int varId = 0);
|
|
|
|
# Token *findmatch(const Token *tok, const char pattern[], const Token *end, unsigned int varId = 0);
|
|
|
|
endToken = None
|
2013-03-02 16:45:26 +01:00
|
|
|
if is_findsimplematch is True and len(res) == 4:
|
2013-01-13 20:17:30 +01:00
|
|
|
endToken = res[3]
|
2013-03-02 16:45:26 +01:00
|
|
|
elif is_findsimplematch is False:
|
2013-01-13 20:17:30 +01:00
|
|
|
if varId and len(res) == 5:
|
|
|
|
endToken = res[3]
|
2013-03-02 16:45:26 +01:00
|
|
|
elif varId is None and len(res) == 4:
|
2013-01-13 20:17:30 +01:00
|
|
|
endToken = res[3]
|
|
|
|
|
|
|
|
res = re.match(r'\s*"([^"]*)"\s*$', pattern)
|
2013-03-02 16:45:26 +01:00
|
|
|
if res is None:
|
2013-01-13 20:17:30 +01:00
|
|
|
break # Non-const pattern - bailout
|
|
|
|
|
|
|
|
pattern = res.group(1)
|
2013-01-13 20:48:19 +01:00
|
|
|
line = self._replaceSpecificFindTokenMatch(is_findsimplematch, line, pos1, len(g0), pattern, tok, endToken, varId)
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
return line
|
|
|
|
|
2013-01-04 03:56:21 +01:00
|
|
|
def _replaceCStrings(self, line):
|
2013-01-04 03:38:40 +01:00
|
|
|
while True:
|
|
|
|
match = re.search('str\(\) (==|!=) "', line)
|
|
|
|
if not match:
|
|
|
|
match = re.search('strAt\(.+?\) (==|!=) "', line)
|
|
|
|
if not match:
|
|
|
|
break
|
|
|
|
|
|
|
|
res = self._parseStringComparison(line, match.start())
|
2013-03-02 16:45:26 +01:00
|
|
|
if res is None:
|
2013-01-04 03:38:40 +01:00
|
|
|
break
|
|
|
|
|
|
|
|
startPos = res[0]
|
|
|
|
endPos = res[1]
|
|
|
|
text = line[startPos+1:endPos-1]
|
2013-01-04 03:56:21 +01:00
|
|
|
line = line[:startPos] + self._insertMatchStr(text) + line[endPos:]
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
return line
|
|
|
|
|
|
|
|
def convertFile(self, srcname, destname):
|
2013-01-04 03:56:21 +01:00
|
|
|
self._reset()
|
|
|
|
|
2013-01-04 03:38:40 +01:00
|
|
|
fin = open(srcname, "rt")
|
|
|
|
srclines = fin.readlines()
|
|
|
|
fin.close()
|
|
|
|
|
|
|
|
header = '#include "token.h"\n'
|
|
|
|
header += '#include "errorlogger.h"\n'
|
|
|
|
header += '#include <string>\n'
|
|
|
|
header += '#include <cstring>\n'
|
2013-01-09 18:56:00 +01:00
|
|
|
# header += '#include <iostream>\n'
|
2013-01-04 03:38:40 +01:00
|
|
|
code = ''
|
|
|
|
|
|
|
|
for line in srclines:
|
|
|
|
# Compile Token::Match and Token::simpleMatch
|
2013-01-04 03:56:21 +01:00
|
|
|
line = self._replaceTokenMatch(line)
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
# Compile Token::findsimplematch
|
2013-06-02 13:57:25 +02:00
|
|
|
line = self._replaceTokenFindMatch(line)
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
# Cache plain C-strings in C++ strings
|
2013-01-04 03:56:21 +01:00
|
|
|
line = self._replaceCStrings(line)
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
code += line
|
|
|
|
|
|
|
|
# Compute string list
|
|
|
|
stringList = ''
|
2013-01-04 03:56:21 +01:00
|
|
|
for match in sorted(self._matchStrs, key=self._matchStrs.get):
|
|
|
|
stringList += 'static const std::string matchStr' + str(self._matchStrs[match]) + '("' + match + '");\n'
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
# Compute matchFunctions
|
|
|
|
strFunctions = ''
|
2013-01-04 04:47:01 +01:00
|
|
|
for function in self._rawMatchFunctions:
|
2013-01-04 03:44:04 +01:00
|
|
|
strFunctions += function
|
2013-01-04 03:38:40 +01:00
|
|
|
|
|
|
|
fout = open(destname, 'wt')
|
|
|
|
fout.write(header+stringList+strFunctions+code)
|
|
|
|
fout.close()
|
|
|
|
|
2013-03-02 16:45:26 +01:00
|
|
|
|
2013-01-11 16:21:17 +01:00
|
|
|
def main():
|
|
|
|
# Main program
|
|
|
|
build_dir = 'build'
|
|
|
|
|
|
|
|
# Check if we are invoked from the right place
|
|
|
|
if not os.path.exists('lib') and not os.path.exists('samples'):
|
|
|
|
print('Please invoke from the top level cppcheck source dir. Example: tools/matchcompiler.py')
|
|
|
|
sys.exit(-1)
|
|
|
|
|
|
|
|
# Create build directory if needed
|
|
|
|
if not os.path.exists(build_dir):
|
|
|
|
os.makedirs(build_dir)
|
|
|
|
if not os.path.isdir(build_dir):
|
|
|
|
raise Exception(build_dir + ' is not a directory')
|
|
|
|
|
|
|
|
# Argument handling
|
|
|
|
parser = argparse.ArgumentParser(description='Compile Token::Match() calls into native C++ code')
|
|
|
|
parser.add_argument('--verify', action='store_true', default=False,
|
2013-03-02 16:45:26 +01:00
|
|
|
help='verify compiled matches against on-the-fly parser. Slow!')
|
2013-01-11 16:21:17 +01:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
mc = MatchCompiler(verify_mode=args.verify)
|
|
|
|
|
|
|
|
# convert all lib/*.cpp files
|
|
|
|
for f in glob.glob('lib/*.cpp'):
|
|
|
|
print (f + ' => ' + build_dir + '/' + f[4:])
|
|
|
|
mc.convertFile(f, build_dir + '/'+f[4:])
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|