2009-01-24 20:28:30 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2009-05-30 07:48:12 +02:00
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
2009-01-24 20:28:30 +01:00
|
|
|
*
|
|
|
|
* 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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-01-24 20:28:30 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "preprocessor.h"
|
|
|
|
#include "tokenize.h"
|
|
|
|
#include "token.h"
|
2009-05-19 21:19:15 +02:00
|
|
|
#include "filelister.h"
|
2009-01-24 20:28:30 +01:00
|
|
|
|
|
|
|
#include <algorithm>
|
2009-04-27 21:29:03 +02:00
|
|
|
#include <stdexcept>
|
2009-01-24 20:28:30 +01:00
|
|
|
#include <sstream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cctype>
|
2009-05-19 21:19:15 +02:00
|
|
|
#include <cstring>
|
2009-04-05 20:14:02 +02:00
|
|
|
#include <vector>
|
2009-07-22 18:47:50 +02:00
|
|
|
#include <set>
|
2009-12-09 17:13:48 +01:00
|
|
|
#include <stack>
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-06 19:38:53 +01:00
|
|
|
Preprocessor::Preprocessor(Settings *settings, ErrorLogger *errorLogger) : _settings(settings), _errorLogger(errorLogger)
|
2009-06-26 13:19:55 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
void Preprocessor::writeError(const std::string &fileName, const int linenr, ErrorLogger *errorLogger, const std::string &errorType, const std::string &errorText)
|
2009-05-19 21:19:15 +02:00
|
|
|
{
|
|
|
|
if (!errorLogger)
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::list<ErrorLogger::ErrorMessage::FileLocation> locationList;
|
|
|
|
ErrorLogger::ErrorMessage::FileLocation loc;
|
2009-12-09 17:13:48 +01:00
|
|
|
loc.line = linenr;
|
|
|
|
loc.file = fileName;
|
2009-05-19 21:19:15 +02:00
|
|
|
locationList.push_back(loc);
|
2009-12-09 17:13:48 +01:00
|
|
|
errorLogger->reportErr(ErrorLogger::ErrorMessage(locationList,
|
|
|
|
"error",
|
|
|
|
errorText,
|
|
|
|
errorType));
|
2009-05-19 21:19:15 +02:00
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
static char readChar(std::istream &istr)
|
|
|
|
{
|
|
|
|
char ch = (char)istr.get();
|
|
|
|
|
|
|
|
// Handling of newlines..
|
|
|
|
if (ch == '\r')
|
|
|
|
{
|
|
|
|
ch = '\n';
|
|
|
|
if ((char)istr.peek() == '\n')
|
|
|
|
(void)istr.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Just read the code into a string. Perform simple cleanup of the code */
|
2009-12-06 19:38:53 +01:00
|
|
|
std::string Preprocessor::read(std::istream &istr, const std::string &filename, Settings *settings)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
// Get filedata from stream..
|
|
|
|
bool ignoreSpace = true;
|
|
|
|
|
|
|
|
// need space.. #if( => #if (
|
|
|
|
bool needSpace = false;
|
|
|
|
|
|
|
|
// For the error report
|
|
|
|
int lineno = 1;
|
|
|
|
|
|
|
|
// handling <backspace><newline>
|
|
|
|
// when this is encountered the <backspace><newline> will be "skipped".
|
|
|
|
// on the next <newline>, extra newlines will be added
|
|
|
|
unsigned int newlines = 0;
|
|
|
|
|
|
|
|
std::ostringstream code;
|
|
|
|
for (char ch = readChar(istr); istr.good(); ch = readChar(istr))
|
|
|
|
{
|
|
|
|
if (ch == '\n')
|
|
|
|
++lineno;
|
|
|
|
|
|
|
|
// Replace assorted special chars with spaces..
|
2009-06-19 15:43:46 +02:00
|
|
|
if ((ch > 0) && (ch != '\n') && (std::isspace(ch) || std::iscntrl(ch)))
|
2009-01-24 20:28:30 +01:00
|
|
|
ch = ' ';
|
|
|
|
|
|
|
|
// Skip spaces after ' ' and after '#'
|
|
|
|
if (ch == ' ' && ignoreSpace)
|
|
|
|
continue;
|
2009-05-14 21:53:49 +02:00
|
|
|
ignoreSpace = bool(ch == ' ' || ch == '#' || ch == '\n');
|
2009-01-24 20:28:30 +01:00
|
|
|
|
|
|
|
if (needSpace)
|
|
|
|
{
|
|
|
|
if (ch == '(')
|
|
|
|
code << " ";
|
2009-06-19 15:43:46 +02:00
|
|
|
else if ((ch > 0) && ! std::isalpha(ch))
|
2009-01-24 20:28:30 +01:00
|
|
|
needSpace = false;
|
|
|
|
}
|
|
|
|
if (ch == '#')
|
|
|
|
needSpace = true;
|
|
|
|
|
2009-05-13 21:18:02 +02:00
|
|
|
// <backspace><newline>..
|
|
|
|
if (ch == '\\')
|
|
|
|
{
|
|
|
|
char chNext = 0;
|
2009-07-20 22:24:23 +02:00
|
|
|
for (;;)
|
2009-05-13 21:18:02 +02:00
|
|
|
{
|
|
|
|
chNext = (char)istr.peek();
|
2009-06-19 15:43:46 +02:00
|
|
|
if (chNext != '\n' && chNext != '\r' && (chNext > 0) &&
|
2009-05-13 21:18:02 +02:00
|
|
|
(std::isspace(chNext) || std::iscntrl(chNext)))
|
|
|
|
{
|
|
|
|
// Skip whitespace between <backspace> and <newline>
|
|
|
|
(void)readChar(istr);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chNext == '\n' || chNext == '\r')
|
|
|
|
{
|
|
|
|
++newlines;
|
|
|
|
(void)readChar(istr); // Skip the "<backspace><newline>"
|
|
|
|
}
|
|
|
|
else
|
|
|
|
code << "\\";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Just some code..
|
|
|
|
else
|
|
|
|
{
|
|
|
|
code << std::string(1, ch);
|
|
|
|
|
|
|
|
// if there has been <backspace><newline> sequences, add extra newlines..
|
|
|
|
if (ch == '\n' && newlines > 0)
|
|
|
|
{
|
|
|
|
code << std::string(newlines, '\n');
|
|
|
|
newlines = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-06 19:38:53 +01:00
|
|
|
return removeParantheses(removeComments(code.str(), filename, settings));
|
2009-05-13 21:18:02 +02:00
|
|
|
}
|
|
|
|
|
2009-10-10 09:29:06 +02:00
|
|
|
static bool hasbom(const std::string &str)
|
|
|
|
{
|
|
|
|
return bool(str.size() > 3 &&
|
2009-10-11 16:38:55 +02:00
|
|
|
static_cast<unsigned char>(str[0]) == 0xef &&
|
|
|
|
static_cast<unsigned char>(str[1]) == 0xbb &&
|
|
|
|
static_cast<unsigned char>(str[2]) == 0xbf);
|
2009-10-10 09:29:06 +02:00
|
|
|
}
|
2009-05-13 21:18:02 +02:00
|
|
|
|
|
|
|
|
2009-12-06 19:38:53 +01:00
|
|
|
std::string Preprocessor::removeComments(const std::string &str, const std::string &filename, Settings *settings)
|
2009-05-13 21:18:02 +02:00
|
|
|
{
|
|
|
|
// For the error report
|
|
|
|
int lineno = 1;
|
|
|
|
|
|
|
|
// handling <backspace><newline>
|
|
|
|
// when this is encountered the <backspace><newline> will be "skipped".
|
|
|
|
// on the next <newline>, extra newlines will be added
|
|
|
|
unsigned int newlines = 0;
|
|
|
|
std::ostringstream code;
|
2009-05-14 21:53:49 +02:00
|
|
|
char previous = 0;
|
2009-12-06 19:38:53 +01:00
|
|
|
std::vector<std::string> suppressionIDs;
|
|
|
|
|
2009-10-10 09:29:06 +02:00
|
|
|
for (std::string::size_type i = hasbom(str) ? 3 : 0; i < str.length(); ++i)
|
2009-05-13 21:18:02 +02:00
|
|
|
{
|
|
|
|
char ch = str[i];
|
|
|
|
if (ch < 0)
|
|
|
|
throw std::runtime_error("The code contains characters that are unhandled");
|
|
|
|
|
2009-12-06 19:38:53 +01:00
|
|
|
// We have finished a line that didn't contain any comment
|
|
|
|
// (the '\n' is swallowed when a // comment is detected)
|
|
|
|
if (ch == '\n' && !suppressionIDs.empty())
|
|
|
|
{
|
|
|
|
// Add the suppressions.
|
|
|
|
for (size_t j(0); j < suppressionIDs.size(); ++j)
|
|
|
|
settings->addSuppression(suppressionIDs[j], filename, lineno);
|
|
|
|
suppressionIDs.clear();
|
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
// Remove comments..
|
2009-05-14 21:53:49 +02:00
|
|
|
if (str.compare(i, 2, "//", 0, 2) == 0)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
2009-12-06 19:38:53 +01:00
|
|
|
size_t commentStart = i + 2;
|
2009-05-14 21:53:49 +02:00
|
|
|
i = str.find('\n', i);
|
|
|
|
if (i == std::string::npos)
|
|
|
|
break;
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-06 19:53:17 +01:00
|
|
|
if (settings && settings->_inlineSuppressions)
|
2009-12-06 19:38:53 +01:00
|
|
|
{
|
|
|
|
std::string comment(str, commentStart, i - commentStart);
|
|
|
|
std::istringstream iss(comment);
|
|
|
|
std::string word;
|
|
|
|
iss >> word;
|
|
|
|
if (word == "cppcheck-suppress")
|
|
|
|
{
|
|
|
|
iss >> word;
|
|
|
|
if (iss)
|
|
|
|
suppressionIDs.push_back(word);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-14 21:53:49 +02:00
|
|
|
code << "\n";
|
|
|
|
previous = '\n';
|
|
|
|
++lineno;
|
|
|
|
}
|
|
|
|
else if (str.compare(i, 2, "/*", 0, 2) == 0)
|
|
|
|
{
|
|
|
|
char chPrev = 0;
|
|
|
|
++i;
|
|
|
|
while (i < str.length() && (chPrev != '*' || ch != '/'))
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
2009-05-14 21:53:49 +02:00
|
|
|
chPrev = ch;
|
|
|
|
++i;
|
|
|
|
ch = str[i];
|
|
|
|
if (ch == '\n')
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
2009-08-19 23:27:47 +02:00
|
|
|
++newlines;
|
2009-01-24 20:28:30 +01:00
|
|
|
++lineno;
|
2009-05-14 21:53:49 +02:00
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// String or char constants..
|
|
|
|
else if (ch == '\"' || ch == '\'')
|
|
|
|
{
|
|
|
|
code << std::string(1, ch);
|
|
|
|
char chNext;
|
|
|
|
do
|
|
|
|
{
|
2009-05-13 21:18:02 +02:00
|
|
|
++i;
|
|
|
|
chNext = str[i];
|
2009-01-24 20:28:30 +01:00
|
|
|
if (chNext == '\\')
|
|
|
|
{
|
2009-05-13 21:18:02 +02:00
|
|
|
++i;
|
|
|
|
char chSeq = str[i];
|
2009-01-24 20:28:30 +01:00
|
|
|
if (chSeq == '\n')
|
|
|
|
++newlines;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
code << std::string(1, chNext);
|
|
|
|
code << std::string(1, chSeq);
|
2009-05-14 21:53:49 +02:00
|
|
|
previous = chSeq;
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2009-05-14 21:53:49 +02:00
|
|
|
{
|
2009-01-24 20:28:30 +01:00
|
|
|
code << std::string(1, chNext);
|
2009-05-14 21:53:49 +02:00
|
|
|
previous = chNext;
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
2009-08-13 23:22:51 +02:00
|
|
|
while (i < str.length() && chNext != ch && chNext != '\n');
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
2009-05-11 20:12:29 +02:00
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
|
|
|
|
// Just some code..
|
|
|
|
else
|
|
|
|
{
|
2009-05-14 21:53:49 +02:00
|
|
|
if (ch == ' ' && previous == ' ')
|
|
|
|
{
|
|
|
|
// Skip double white space
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
code << std::string(1, ch);
|
|
|
|
previous = ch;
|
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
|
|
|
|
// if there has been <backspace><newline> sequences, add extra newlines..
|
2009-12-06 19:38:53 +01:00
|
|
|
if (ch == '\n')
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
2009-12-06 19:38:53 +01:00
|
|
|
++lineno;
|
|
|
|
if (newlines > 0)
|
|
|
|
{
|
|
|
|
code << std::string(newlines, '\n');
|
|
|
|
newlines = 0;
|
|
|
|
previous = '\n';
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return code.str();
|
|
|
|
}
|
|
|
|
|
2009-09-11 23:34:24 +02:00
|
|
|
|
2009-10-04 07:25:30 +02:00
|
|
|
std::string Preprocessor::removeParantheses(const std::string &str)
|
|
|
|
{
|
2009-10-06 10:47:36 +02:00
|
|
|
if (str.find("\n#if") == std::string::npos && str.compare(0, 3, "#if") != 0)
|
2009-10-04 07:25:30 +02:00
|
|
|
return str;
|
|
|
|
|
|
|
|
std::istringstream istr(str.c_str());
|
|
|
|
std::ostringstream ret;
|
|
|
|
std::string line;
|
|
|
|
while (std::getline(istr, line))
|
|
|
|
{
|
2009-10-05 22:41:13 +02:00
|
|
|
if (line.compare(0, 3, "#if") == 0 || line.compare(0, 5, "#elif") == 0)
|
2009-10-04 07:25:30 +02:00
|
|
|
{
|
2009-10-04 15:41:50 +02:00
|
|
|
std::string::size_type pos;
|
|
|
|
pos = 0;
|
|
|
|
while ((pos = line.find(" (", pos)) != std::string::npos)
|
|
|
|
line.erase(pos, 1);
|
|
|
|
pos = 0;
|
|
|
|
while ((pos = line.find("( ", pos)) != std::string::npos)
|
|
|
|
line.erase(pos + 1, 1);
|
|
|
|
pos = 0;
|
|
|
|
while ((pos = line.find(" )", pos)) != std::string::npos)
|
|
|
|
line.erase(pos, 1);
|
|
|
|
pos = 0;
|
|
|
|
while ((pos = line.find(") ", pos)) != std::string::npos)
|
|
|
|
line.erase(pos + 1, 1);
|
|
|
|
|
|
|
|
// Remove inner paranthesis "((..))"..
|
|
|
|
pos = 0;
|
|
|
|
while ((pos = line.find("((", pos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
++pos;
|
|
|
|
std::string::size_type pos2 = line.find_first_of("()", pos + 1);
|
|
|
|
if (pos2 != std::string::npos && line[pos2] == ')')
|
|
|
|
{
|
|
|
|
line.erase(pos2, 1);
|
|
|
|
line.erase(pos, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-06 10:47:36 +02:00
|
|
|
// "#if(A) => #if A", but avoid "#if (defined A) || defined (B)"
|
|
|
|
if (line.compare(0, 4, "#if(") == 0 && line[line.length() - 1] == ')')
|
2009-10-04 07:25:30 +02:00
|
|
|
{
|
2009-10-06 10:47:36 +02:00
|
|
|
int ind = 0;
|
|
|
|
for (std::string::size_type i = 0; i < line.length(); ++i)
|
|
|
|
{
|
|
|
|
if (line[i] == '(')
|
|
|
|
++ind;
|
|
|
|
else if (line[i] == ')')
|
|
|
|
{
|
|
|
|
--ind;
|
|
|
|
if (ind == 0)
|
|
|
|
{
|
|
|
|
if (i == line.length() - 1)
|
|
|
|
{
|
|
|
|
line[3] = ' ';
|
|
|
|
line.erase(line.length() - 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-10-04 07:25:30 +02:00
|
|
|
}
|
2009-10-06 10:47:36 +02:00
|
|
|
|
|
|
|
if (line.compare(0, 4, "#if(") == 0)
|
|
|
|
line.insert(3, " ");
|
|
|
|
else if (line.compare(0, 4, "#elif(") == 0)
|
|
|
|
line.insert(5, " ");
|
2009-10-04 07:25:30 +02:00
|
|
|
}
|
|
|
|
ret << line << "\n";
|
|
|
|
}
|
2009-10-06 10:47:36 +02:00
|
|
|
|
2009-10-04 07:25:30 +02:00
|
|
|
return ret.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-11 23:34:24 +02:00
|
|
|
|
|
|
|
static void _removeAsm(std::string &str, const std::string::size_type pos)
|
2009-09-11 21:22:41 +02:00
|
|
|
{
|
2009-09-11 23:34:24 +02:00
|
|
|
unsigned int newlines = 0;
|
|
|
|
bool instr = false;
|
|
|
|
int parlevel = 0;
|
|
|
|
std::string::size_type pos2 = pos + 1;
|
|
|
|
while (pos2 < str.length())
|
2009-09-11 21:22:41 +02:00
|
|
|
{
|
2009-09-11 23:34:24 +02:00
|
|
|
if (str[pos2] == '\"')
|
|
|
|
instr = !instr;
|
|
|
|
|
|
|
|
else if (str[pos2] == '\n')
|
|
|
|
++newlines;
|
|
|
|
|
|
|
|
else if (!instr)
|
2009-09-11 21:22:41 +02:00
|
|
|
{
|
2009-09-11 23:34:24 +02:00
|
|
|
if (str[pos2] == '(')
|
|
|
|
++parlevel;
|
|
|
|
else if (str[pos2] == ')')
|
|
|
|
{
|
|
|
|
if (parlevel <= 1)
|
|
|
|
break;
|
|
|
|
--parlevel;
|
|
|
|
}
|
2009-09-11 21:22:41 +02:00
|
|
|
}
|
2009-09-11 23:34:24 +02:00
|
|
|
|
|
|
|
++pos2;
|
2009-09-11 21:22:41 +02:00
|
|
|
}
|
2009-09-11 23:34:24 +02:00
|
|
|
str.erase(pos + 1, pos2 - pos);
|
|
|
|
str.insert(pos, std::string(newlines, '\n'));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Preprocessor::removeAsm(std::string &str)
|
|
|
|
{
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
while ((pos = str.find("\nasm(", pos)) != std::string::npos)
|
2009-11-02 18:31:22 +01:00
|
|
|
{
|
|
|
|
_removeAsm(str, pos++);
|
|
|
|
str.insert(pos, "asm()");
|
|
|
|
}
|
2009-09-11 23:34:24 +02:00
|
|
|
|
|
|
|
pos = 0;
|
|
|
|
while ((pos = str.find("\nasm (", pos)) != std::string::npos)
|
2009-11-02 18:31:22 +01:00
|
|
|
{
|
|
|
|
_removeAsm(str, pos++);
|
|
|
|
str.insert(pos, "asm()");
|
|
|
|
}
|
2009-09-11 21:22:41 +02:00
|
|
|
|
|
|
|
pos = 0;
|
|
|
|
while ((pos = str.find("\nasm __volatile(", pos)) != std::string::npos)
|
2009-09-11 23:34:24 +02:00
|
|
|
_removeAsm(str, pos);
|
|
|
|
|
|
|
|
pos = 0;
|
|
|
|
while ((pos = str.find("\nasm __volatile (", pos)) != std::string::npos)
|
|
|
|
_removeAsm(str, pos);
|
2009-09-11 21:22:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-25 21:10:30 +02:00
|
|
|
void Preprocessor::preprocess(std::istream &istr, std::map<std::string, std::string> &result, const std::string &filename, const std::list<std::string> &includePaths)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
std::list<std::string> configs;
|
|
|
|
std::string data;
|
|
|
|
preprocess(istr, data, configs, filename, includePaths);
|
|
|
|
for (std::list<std::string>::const_iterator it = configs.begin(); it != configs.end(); ++it)
|
2009-07-25 21:10:30 +02:00
|
|
|
result[ *it ] = Preprocessor::getcode(data, *it, filename, _errorLogger);
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string Preprocessor::removeSpaceNearNL(const std::string &str)
|
|
|
|
{
|
|
|
|
std::string tmp;
|
|
|
|
int prev = -1;
|
|
|
|
for (unsigned int i = 0; i < str.size(); i++)
|
|
|
|
{
|
|
|
|
if (str[i] == ' ' &&
|
|
|
|
((i > 0 && tmp[prev] == '\n') ||
|
|
|
|
(i + 1 < str.size() && str[i+1] == '\n')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Ignore space that has new line in either side of it
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tmp.append(1, str[i]);
|
|
|
|
++prev;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Preprocessor::replaceIfDefined(const std::string &str)
|
|
|
|
{
|
|
|
|
std::string ret(str);
|
2009-06-21 08:03:42 +02:00
|
|
|
std::string::size_type pos;
|
|
|
|
|
|
|
|
pos = 0;
|
2009-01-24 20:28:30 +01:00
|
|
|
while ((pos = ret.find("#if defined(", pos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
std::string::size_type pos2 = ret.find(")", pos + 9);
|
|
|
|
if (pos2 > ret.length() - 1)
|
|
|
|
break;
|
|
|
|
if (ret[pos2+1] == '\n')
|
|
|
|
{
|
|
|
|
ret.erase(pos2, 1);
|
|
|
|
ret.erase(pos + 3, 9);
|
|
|
|
ret.insert(pos + 3, "def ");
|
|
|
|
}
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
|
2009-06-21 08:03:42 +02:00
|
|
|
pos = 0;
|
|
|
|
while ((pos = ret.find("#if !defined(", pos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
std::string::size_type pos2 = ret.find(")", pos + 9);
|
|
|
|
if (pos2 > ret.length() - 1)
|
|
|
|
break;
|
|
|
|
if (ret[pos2+1] == '\n')
|
|
|
|
{
|
|
|
|
ret.erase(pos2, 1);
|
|
|
|
ret.erase(pos + 3, 10);
|
|
|
|
ret.insert(pos + 3, "ndef ");
|
|
|
|
}
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
|
2009-10-04 15:41:50 +02:00
|
|
|
pos = 0;
|
|
|
|
while ((pos = ret.find("#elif defined(", pos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
std::string::size_type pos2 = ret.find(")", pos + 9);
|
|
|
|
if (pos2 > ret.length() - 1)
|
|
|
|
break;
|
|
|
|
if (ret[pos2+1] == '\n')
|
|
|
|
{
|
|
|
|
ret.erase(pos2, 1);
|
|
|
|
ret.erase(pos + 6, 8);
|
|
|
|
}
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Preprocessor::preprocess(std::istream &istr, std::string &processedFile, std::list<std::string> &resultConfigurations, const std::string &filename, const std::list<std::string> &includePaths)
|
|
|
|
{
|
2009-12-06 19:38:53 +01:00
|
|
|
processedFile = read(istr, filename, _settings);
|
2009-01-24 20:28:30 +01:00
|
|
|
|
|
|
|
// Replace all tabs with spaces..
|
|
|
|
std::replace(processedFile.begin(), processedFile.end(), '\t', ' ');
|
|
|
|
|
|
|
|
// Remove all indentation..
|
|
|
|
if (!processedFile.empty() && processedFile[0] == ' ')
|
|
|
|
processedFile.erase(0, processedFile.find_first_not_of(" "));
|
|
|
|
|
|
|
|
// Remove space characters that are after or before new line character
|
|
|
|
processedFile = removeSpaceNearNL(processedFile);
|
|
|
|
|
2009-09-11 21:22:41 +02:00
|
|
|
// Remove asm(...)
|
|
|
|
removeAsm(processedFile);
|
|
|
|
|
2009-07-22 20:11:27 +02:00
|
|
|
// Replace "defined A" with "defined(A)"
|
|
|
|
{
|
|
|
|
std::istringstream istr(processedFile.c_str());
|
|
|
|
std::ostringstream ostr;
|
|
|
|
std::string line;
|
|
|
|
while (std::getline(istr, line))
|
|
|
|
{
|
2009-10-05 22:41:13 +02:00
|
|
|
if (line.compare(0, 4, "#if ") == 0 || line.compare(0, 6, "#elif ") == 0)
|
2009-07-22 20:11:27 +02:00
|
|
|
{
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
while ((pos = line.find(" defined ")) != std::string::npos)
|
|
|
|
{
|
|
|
|
line[pos+8] = '(';
|
|
|
|
pos = line.find_first_of(" |&", pos + 8);
|
|
|
|
if (pos == std::string::npos)
|
|
|
|
line += ")";
|
|
|
|
else
|
|
|
|
line.insert(pos, ")");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ostr << line << "\n";
|
|
|
|
}
|
|
|
|
processedFile = ostr.str();
|
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
handleIncludes(processedFile, filename, includePaths);
|
|
|
|
|
|
|
|
processedFile = replaceIfDefined(processedFile);
|
|
|
|
|
|
|
|
// Get all possible configurations..
|
2009-11-20 19:18:57 +01:00
|
|
|
resultConfigurations = getcfgs(processedFile, filename);
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Get the DEF in this line: "#ifdef DEF"
|
|
|
|
std::string Preprocessor::getdef(std::string line, bool def)
|
|
|
|
{
|
|
|
|
// If def is true, the line must start with "#ifdef"
|
2009-06-14 22:37:18 +02:00
|
|
|
if (def && line.find("#ifdef ") != 0 && line.find("#if ") != 0 && line.find("#elif ") != 0 && line.find("#if defined ") != 0)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
// If def is false, the line must start with "#ifndef"
|
|
|
|
if (!def && line.find("#ifndef ") != 0)
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the "#ifdef" or "#ifndef"
|
2009-06-14 22:37:18 +02:00
|
|
|
if (line.find("#if defined ") == 0)
|
|
|
|
line.erase(0, 11);
|
|
|
|
else
|
|
|
|
line.erase(0, line.find(" "));
|
2009-01-24 20:28:30 +01:00
|
|
|
|
|
|
|
// Remove all spaces.
|
2009-12-11 19:28:37 +01:00
|
|
|
std::string::size_type pos = 0;
|
|
|
|
while ((pos = line.find(" ", pos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
const char chprev = (pos > 0) ? line[pos-1] : 0;
|
|
|
|
const char chnext = (pos + 1 < line.length()) ? line[pos+1] : 0;
|
|
|
|
if (std::isalnum(chprev) && std::isalnum(chnext))
|
|
|
|
++pos;
|
|
|
|
else
|
|
|
|
line.erase(pos, 1);
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
|
|
|
|
// The remaining string is our result.
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-11-20 19:18:57 +01:00
|
|
|
std::list<std::string> Preprocessor::getcfgs(const std::string &filedata, const std::string &filename)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
std::list<std::string> ret;
|
|
|
|
ret.push_back("");
|
|
|
|
|
|
|
|
std::list<std::string> deflist;
|
|
|
|
|
2009-07-22 18:47:50 +02:00
|
|
|
// constants defined through "#define" in the code..
|
|
|
|
std::set<std::string> defines;
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
// How deep into included files are we currently parsing?
|
|
|
|
// 0=>Source file, 1=>Included by source file, 2=>included by header that was included by source file, etc
|
|
|
|
int filelevel = 0;
|
|
|
|
|
2009-11-20 19:18:57 +01:00
|
|
|
unsigned int linenr = 0;
|
2009-01-24 20:28:30 +01:00
|
|
|
std::istringstream istr(filedata);
|
|
|
|
std::string line;
|
|
|
|
while (getline(istr, line))
|
|
|
|
{
|
2009-11-20 19:18:57 +01:00
|
|
|
++linenr;
|
|
|
|
|
2009-10-05 22:41:13 +02:00
|
|
|
if (line.compare(0, 6, "#file ") == 0)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
++filelevel;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (line == "#endfile")
|
|
|
|
{
|
|
|
|
if (filelevel > 0)
|
|
|
|
--filelevel;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-10-05 22:41:13 +02:00
|
|
|
else if (line.compare(0, 8, "#define ") == 0 && line.find("(", 8) == std::string::npos)
|
2009-07-22 18:47:50 +02:00
|
|
|
{
|
2009-07-25 13:58:34 +02:00
|
|
|
if (line.find(" ", 8) == std::string::npos)
|
|
|
|
defines.insert(line.substr(8));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string s = line.substr(8);
|
|
|
|
s[s.find(" ")] = '=';
|
|
|
|
defines.insert(s);
|
|
|
|
}
|
2009-07-22 18:47:50 +02:00
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
if (filelevel > 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
std::string def = getdef(line, true) + getdef(line, false);
|
|
|
|
if (!def.empty())
|
|
|
|
{
|
2009-11-20 19:18:57 +01:00
|
|
|
int par = 0;
|
|
|
|
for (std::string::size_type pos = 0; pos < def.length(); ++pos)
|
|
|
|
{
|
|
|
|
if (def[pos] == '(')
|
|
|
|
++par;
|
|
|
|
else if (def[pos] == ')')
|
|
|
|
{
|
|
|
|
--par;
|
|
|
|
if (par < 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (par != 0)
|
|
|
|
{
|
|
|
|
std::ostringstream line;
|
|
|
|
line << __LINE__;
|
|
|
|
|
|
|
|
ErrorLogger::ErrorMessage errmsg;
|
|
|
|
ErrorLogger::ErrorMessage::FileLocation loc;
|
|
|
|
loc.file = filename;
|
|
|
|
loc.line = linenr;
|
|
|
|
errmsg._callStack.push_back(loc);
|
|
|
|
errmsg._severity = "error";
|
|
|
|
errmsg._msg = "mismatching number of '(' and ')' in this line: " + def;
|
|
|
|
errmsg._id = "preprocessor" + line.str();
|
|
|
|
_errorLogger->reportErr(errmsg);
|
|
|
|
ret.clear();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-11-21 19:53:07 +01:00
|
|
|
// Replace defined constants
|
|
|
|
{
|
|
|
|
std::map<std::string, std::string> varmap;
|
|
|
|
for (std::set<std::string>::const_iterator it = defines.begin(); it != defines.end(); ++it)
|
|
|
|
{
|
2009-11-21 20:14:29 +01:00
|
|
|
std::string::size_type pos = it->find("=");
|
2009-11-21 19:53:07 +01:00
|
|
|
if (pos == std::string::npos)
|
|
|
|
continue;
|
2009-11-21 20:14:29 +01:00
|
|
|
const std::string varname(it->substr(0, pos));
|
|
|
|
const std::string value(it->substr(pos + 1));
|
2009-11-21 19:53:07 +01:00
|
|
|
varmap[varname] = value;
|
|
|
|
}
|
|
|
|
|
2009-12-13 17:18:27 +01:00
|
|
|
simplifyCondition(varmap, def, false);
|
2009-11-21 19:53:07 +01:00
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
if (! deflist.empty() && line.find("#elif ") == 0)
|
|
|
|
deflist.pop_back();
|
|
|
|
deflist.push_back(def);
|
|
|
|
def = "";
|
|
|
|
for (std::list<std::string>::const_iterator it = deflist.begin(); it != deflist.end(); ++it)
|
|
|
|
{
|
|
|
|
if (*it == "0")
|
|
|
|
break;
|
|
|
|
if (*it == "1")
|
|
|
|
continue;
|
2009-09-05 19:01:57 +02:00
|
|
|
|
|
|
|
// don't add "T;T":
|
|
|
|
// treat two and more similar nested conditions as one
|
|
|
|
if (def != *it)
|
|
|
|
{
|
|
|
|
if (! def.empty())
|
|
|
|
def += ";";
|
|
|
|
def += *it;
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
if (std::find(ret.begin(), ret.end(), def) == ret.end())
|
|
|
|
ret.push_back(def);
|
|
|
|
}
|
|
|
|
|
2009-07-22 18:47:50 +02:00
|
|
|
else if (line.find("#else") == 0 && ! deflist.empty())
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
std::string def((deflist.back() == "1") ? "0" : "1");
|
|
|
|
deflist.pop_back();
|
|
|
|
deflist.push_back(def);
|
|
|
|
}
|
|
|
|
|
2009-07-22 18:47:50 +02:00
|
|
|
else if (line.find("#endif") == 0 && ! deflist.empty())
|
2009-01-24 20:28:30 +01:00
|
|
|
deflist.pop_back();
|
|
|
|
}
|
|
|
|
|
2009-07-22 18:47:50 +02:00
|
|
|
// Remove defined constants from ifdef configurations..
|
|
|
|
for (std::list<std::string>::iterator it = ret.begin(); it != ret.end(); ++it)
|
|
|
|
{
|
2009-07-25 13:58:34 +02:00
|
|
|
std::string cfg(*it);
|
2009-07-22 18:47:50 +02:00
|
|
|
for (std::set<std::string>::const_iterator it2 = defines.begin(); it2 != defines.end(); ++it2)
|
|
|
|
{
|
|
|
|
std::string::size_type pos = 0;
|
2009-07-25 13:58:34 +02:00
|
|
|
|
|
|
|
// Get name of define
|
|
|
|
std::string defineName(*it2);
|
|
|
|
if (defineName.find("=") != std::string::npos)
|
|
|
|
defineName.erase(defineName.find("="));
|
|
|
|
|
|
|
|
// Remove ifdef configurations that match the defineName
|
|
|
|
while ((pos = cfg.find(defineName, pos)) != std::string::npos)
|
2009-07-22 18:47:50 +02:00
|
|
|
{
|
|
|
|
std::string::size_type pos1 = pos;
|
|
|
|
++pos;
|
2009-07-25 13:58:34 +02:00
|
|
|
if (pos1 > 0 && cfg[pos1-1] != ';')
|
2009-07-22 18:47:50 +02:00
|
|
|
continue;
|
2009-07-25 13:58:34 +02:00
|
|
|
std::string::size_type pos2 = pos1 + defineName.length();
|
|
|
|
if (pos2 < cfg.length() && cfg[pos2] != ';')
|
2009-07-22 18:47:50 +02:00
|
|
|
continue;
|
|
|
|
--pos;
|
2009-07-25 13:58:34 +02:00
|
|
|
cfg.erase(pos, defineName.length());
|
2009-07-22 18:47:50 +02:00
|
|
|
}
|
|
|
|
}
|
2009-07-25 13:58:34 +02:00
|
|
|
if (cfg.length() != it->length())
|
2009-07-22 18:47:50 +02:00
|
|
|
{
|
2009-07-25 13:58:34 +02:00
|
|
|
while (cfg.length() > 0 && cfg[0] == ';')
|
|
|
|
cfg.erase(0, 1);
|
2009-07-22 18:47:50 +02:00
|
|
|
|
2009-07-25 13:58:34 +02:00
|
|
|
while (cfg.length() > 0 && cfg[cfg.length()-1] == ';')
|
|
|
|
cfg.erase(cfg.length() - 1);
|
2009-07-22 18:47:50 +02:00
|
|
|
|
|
|
|
std::string::size_type pos = 0;
|
2009-07-25 13:58:34 +02:00
|
|
|
while ((pos = cfg.find(";;", pos)) != std::string::npos)
|
|
|
|
cfg.erase(pos, 1);
|
2009-07-22 18:47:50 +02:00
|
|
|
|
2009-07-25 13:58:34 +02:00
|
|
|
*it = cfg;
|
2009-07-22 18:47:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-26 13:19:55 +02:00
|
|
|
// convert configurations: "defined(A) && defined(B)" => "A;B"
|
|
|
|
for (std::list<std::string>::iterator it = ret.begin(); it != ret.end(); ++it)
|
|
|
|
{
|
|
|
|
std::string s(*it);
|
|
|
|
|
|
|
|
if (s.find("&&") != std::string::npos)
|
|
|
|
{
|
2009-11-20 19:18:57 +01:00
|
|
|
Tokenizer tokenizer(_settings, _errorLogger);
|
2009-06-26 13:19:55 +02:00
|
|
|
std::istringstream istr(s.c_str());
|
2009-11-20 19:18:57 +01:00
|
|
|
if (!tokenizer.tokenize(istr, filename.c_str()))
|
2009-11-09 00:11:52 +01:00
|
|
|
{
|
2009-11-20 19:18:57 +01:00
|
|
|
std::ostringstream line;
|
|
|
|
line << __LINE__;
|
|
|
|
|
|
|
|
ErrorLogger::ErrorMessage errmsg;
|
|
|
|
ErrorLogger::ErrorMessage::FileLocation loc;
|
|
|
|
loc.file = filename;
|
|
|
|
loc.line = 1;
|
|
|
|
errmsg._callStack.push_back(loc);
|
|
|
|
errmsg._severity = "error";
|
|
|
|
errmsg._msg = "Error parsing this: " + s;
|
|
|
|
errmsg._id = "preprocessor" + line.str();
|
|
|
|
_errorLogger->reportErr(errmsg);
|
2009-11-09 00:11:52 +01:00
|
|
|
}
|
2009-06-26 13:19:55 +02:00
|
|
|
|
2009-08-29 23:00:54 +02:00
|
|
|
|
2009-06-26 13:19:55 +02:00
|
|
|
const Token *tok = tokenizer.tokens();
|
2009-08-29 23:00:54 +02:00
|
|
|
std::list<std::string> varList;
|
2009-06-26 13:19:55 +02:00
|
|
|
while (tok)
|
|
|
|
{
|
|
|
|
if (Token::Match(tok, "defined ( %var% )"))
|
|
|
|
{
|
2009-08-29 23:00:54 +02:00
|
|
|
varList.push_back(tok->strAt(2));
|
2009-06-26 13:19:55 +02:00
|
|
|
tok = tok->tokAt(4);
|
|
|
|
if (tok && tok->str() == "&&")
|
|
|
|
{
|
|
|
|
tok = tok->next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (Token::Match(tok, "%var% ;"))
|
|
|
|
{
|
2009-08-29 23:00:54 +02:00
|
|
|
varList.push_back(tok->str());
|
2009-06-26 13:19:55 +02:00
|
|
|
tok = tok->tokAt(2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-29 23:00:54 +02:00
|
|
|
varList.sort();
|
|
|
|
s = "";
|
|
|
|
for (std::list<std::string>::iterator varIter = varList.begin(); varIter != varList.end(); ++varIter)
|
|
|
|
{
|
|
|
|
if (!s.empty())
|
|
|
|
s += ";";
|
|
|
|
|
|
|
|
s += *varIter;
|
|
|
|
}
|
|
|
|
|
2009-06-26 13:19:55 +02:00
|
|
|
if (!s.empty())
|
|
|
|
*it = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-29 23:00:54 +02:00
|
|
|
// Remove duplicates from the ret list..
|
2009-08-30 10:47:24 +02:00
|
|
|
ret.sort();
|
|
|
|
ret.unique();
|
2009-08-29 23:00:54 +02:00
|
|
|
|
2009-06-26 13:19:55 +02:00
|
|
|
// cleanup unhandled configurations..
|
|
|
|
for (std::list<std::string>::iterator it = ret.begin(); it != ret.end();)
|
|
|
|
{
|
2009-12-13 15:23:44 +01:00
|
|
|
const std::string s(*it + ";");
|
|
|
|
|
|
|
|
bool unhandled = false;
|
|
|
|
|
|
|
|
for (std::string::size_type pos = 0; pos < s.length(); ++pos)
|
|
|
|
{
|
|
|
|
const unsigned char c = s[pos];
|
|
|
|
|
|
|
|
// ok with ";"
|
|
|
|
if (c == ';')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// identifier..
|
|
|
|
if (std::isalpha(c) || c == '_')
|
|
|
|
{
|
|
|
|
while (std::isalnum(s[pos]) || s[pos] == '_')
|
|
|
|
++pos;
|
|
|
|
if (s[pos] == '=')
|
|
|
|
{
|
|
|
|
++pos;
|
|
|
|
while (std::isdigit(s[pos]))
|
|
|
|
++pos;
|
|
|
|
if (s[pos] != ';')
|
|
|
|
{
|
|
|
|
unhandled = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--pos;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// not ok..
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unhandled = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unhandled)
|
2009-06-26 13:19:55 +02:00
|
|
|
{
|
|
|
|
// unhandled ifdef configuration..
|
2009-07-25 23:16:18 +02:00
|
|
|
if (_errorLogger && _settings && _settings->_debug)
|
2009-12-13 15:23:44 +01:00
|
|
|
_errorLogger->reportOut("unhandled configuration: " + *it);
|
2009-06-26 13:19:55 +02:00
|
|
|
|
|
|
|
ret.erase(it++);
|
|
|
|
}
|
|
|
|
else
|
2009-12-13 15:23:44 +01:00
|
|
|
{
|
2009-06-26 13:19:55 +02:00
|
|
|
++it;
|
2009-12-13 15:23:44 +01:00
|
|
|
}
|
2009-06-26 13:19:55 +02:00
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-13 17:18:27 +01:00
|
|
|
void Preprocessor::simplifyCondition(const std::map<std::string, std::string> &variables, std::string &condition, bool match)
|
2009-11-21 19:53:07 +01:00
|
|
|
{
|
|
|
|
Tokenizer tokenizer;
|
2009-12-11 19:28:37 +01:00
|
|
|
std::istringstream istr(("(" + condition + ")").c_str());
|
2009-11-21 19:53:07 +01:00
|
|
|
tokenizer.tokenize(istr, "");
|
|
|
|
|
|
|
|
// replace variable names with values..
|
|
|
|
for (Token *tok = const_cast<Token *>(tokenizer.tokens()); tok; tok = tok->next())
|
|
|
|
{
|
2009-12-11 19:28:37 +01:00
|
|
|
if (!tok->isName())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (Token::Match(tok, "defined ( %var% )"))
|
|
|
|
{
|
2009-12-13 17:18:27 +01:00
|
|
|
if (variables.find(tok->strAt(2)) != variables.end())
|
|
|
|
tok->str("1");
|
|
|
|
else if (match)
|
2009-12-11 19:28:37 +01:00
|
|
|
tok->str("0");
|
|
|
|
else
|
2009-12-13 17:18:27 +01:00
|
|
|
continue;
|
2009-12-11 19:28:37 +01:00
|
|
|
tok->deleteNext();
|
|
|
|
tok->deleteNext();
|
|
|
|
tok->deleteNext();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Token::Match(tok, "defined %var%"))
|
|
|
|
{
|
2009-12-13 17:18:27 +01:00
|
|
|
if (variables.find(tok->strAt(1)) != variables.end())
|
|
|
|
tok->str("1");
|
|
|
|
else if (match)
|
2009-12-11 19:28:37 +01:00
|
|
|
tok->str("0");
|
|
|
|
else
|
2009-12-13 17:18:27 +01:00
|
|
|
continue;
|
2009-12-11 19:28:37 +01:00
|
|
|
tok->deleteNext();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-11-21 19:53:07 +01:00
|
|
|
const std::map<std::string, std::string>::const_iterator it = variables.find(tok->str());
|
|
|
|
if (it != variables.end())
|
2009-11-28 11:47:44 +01:00
|
|
|
{
|
|
|
|
if (it->second.empty())
|
|
|
|
tok->deleteThis();
|
|
|
|
else
|
|
|
|
tok->str(it->second);
|
|
|
|
}
|
2009-11-21 19:53:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// simplify calculations..
|
2009-12-11 22:32:44 +01:00
|
|
|
bool modified = true;
|
|
|
|
while (modified)
|
|
|
|
{
|
|
|
|
modified = false;
|
|
|
|
tokenizer.simplifyCalculations();
|
|
|
|
for (Token *tok = const_cast<Token *>(tokenizer.tokens()); tok; tok = tok->next())
|
|
|
|
{
|
|
|
|
if (Token::Match(tok, "! %num%"))
|
|
|
|
{
|
|
|
|
tok->deleteThis();
|
|
|
|
tok->str(tok->str() == "0" ? "1" : "0");
|
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-21 19:53:07 +01:00
|
|
|
|
2009-12-11 19:28:37 +01:00
|
|
|
if (Token::simpleMatch(tokenizer.tokens(), "( 1 )") ||
|
|
|
|
Token::simpleMatch(tokenizer.tokens(), "( 1 ||"))
|
|
|
|
condition = "1";
|
|
|
|
else if (Token::simpleMatch(tokenizer.tokens(), "( 0 )"))
|
|
|
|
condition = "0";
|
2009-11-21 19:53:07 +01:00
|
|
|
}
|
|
|
|
|
2009-07-30 10:10:34 +02:00
|
|
|
bool Preprocessor::match_cfg_def(const std::map<std::string, std::string> &cfg, std::string def)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
2009-06-26 13:19:55 +02:00
|
|
|
//std::cout << "cfg: \"" << cfg << "\" ";
|
|
|
|
//std::cout << "def: \"" << def << "\"";
|
|
|
|
|
2009-12-13 17:18:27 +01:00
|
|
|
simplifyCondition(cfg, def, true);
|
2009-11-21 19:53:07 +01:00
|
|
|
|
2009-07-30 10:10:34 +02:00
|
|
|
if (cfg.find(def) != cfg.end())
|
|
|
|
return true;
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
if (def == "0")
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (def == "1")
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-03 21:09:12 +02:00
|
|
|
std::string Preprocessor::getcode(const std::string &filedata, std::string cfg, const std::string &filename, ErrorLogger *errorLogger)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
std::ostringstream ret;
|
|
|
|
|
|
|
|
bool match = true;
|
|
|
|
std::list<bool> matching_ifdef;
|
|
|
|
std::list<bool> matched_ifdef;
|
|
|
|
|
2009-07-30 10:10:34 +02:00
|
|
|
// Create a map for the cfg for faster access to defines
|
|
|
|
std::map<std::string, std::string> cfgmap;
|
|
|
|
{
|
|
|
|
std::string::size_type pos = 0;
|
2009-10-10 21:58:45 +02:00
|
|
|
for (;;)
|
2009-07-30 10:10:34 +02:00
|
|
|
{
|
|
|
|
std::string::size_type pos2 = cfg.find_first_of(";=", pos);
|
|
|
|
if (pos2 == std::string::npos)
|
|
|
|
{
|
|
|
|
cfgmap[cfg.substr(pos)] = "";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (cfg[pos2] == ';')
|
|
|
|
{
|
|
|
|
cfgmap[cfg.substr(pos, pos2-pos)] = "";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string::size_type pos3 = pos2;
|
|
|
|
pos2 = cfg.find(";", pos2);
|
|
|
|
if (pos2 == std::string::npos)
|
|
|
|
{
|
|
|
|
cfgmap[cfg.substr(pos, pos3-pos)] = cfg.substr(pos3 + 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cfgmap[cfg.substr(pos, pos3-pos)] = cfg.substr(pos3 + 1, pos2 - pos3 - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pos = pos2 + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
std::istringstream istr(filedata);
|
|
|
|
std::string line;
|
|
|
|
while (getline(istr, line))
|
|
|
|
{
|
2009-10-05 22:41:13 +02:00
|
|
|
if (line.compare(0, 11, "#pragma asm") == 0)
|
2009-08-10 20:07:55 +02:00
|
|
|
{
|
|
|
|
ret << "\n";
|
|
|
|
bool found_end = false;
|
|
|
|
while (getline(istr, line))
|
|
|
|
{
|
|
|
|
ret << "\n";
|
2009-10-05 22:41:13 +02:00
|
|
|
if (line.compare(0, 14, "#pragma endasm") == 0)
|
2009-08-10 20:07:55 +02:00
|
|
|
{
|
|
|
|
found_end = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found_end)
|
|
|
|
break;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
std::string def = getdef(line, true);
|
|
|
|
std::string ndef = getdef(line, false);
|
|
|
|
|
2009-10-05 22:41:13 +02:00
|
|
|
if (line.compare(0, 8, "#define ") == 0 && line.find("(", 8) == std::string::npos)
|
2009-07-22 18:47:50 +02:00
|
|
|
{
|
2009-07-25 13:58:34 +02:00
|
|
|
std::string::size_type pos = line.find(" ", 8);
|
|
|
|
if (pos == std::string::npos)
|
2009-07-30 10:10:34 +02:00
|
|
|
cfgmap[line.substr(8)] = "";
|
2009-07-25 13:58:34 +02:00
|
|
|
else
|
2009-07-30 10:10:34 +02:00
|
|
|
cfgmap[line.substr(8, pos - 8)] = line.substr(pos + 1);
|
2009-07-22 18:47:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (line.find("#elif ") == 0)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
if (matched_ifdef.back())
|
|
|
|
{
|
|
|
|
matching_ifdef.back() = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-07-30 10:10:34 +02:00
|
|
|
if (match_cfg_def(cfgmap, def))
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
matching_ifdef.back() = true;
|
|
|
|
matched_ifdef.back() = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (! def.empty())
|
|
|
|
{
|
2009-07-30 10:10:34 +02:00
|
|
|
matching_ifdef.push_back(match_cfg_def(cfgmap, def));
|
2009-01-24 20:28:30 +01:00
|
|
|
matched_ifdef.push_back(matching_ifdef.back());
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (! ndef.empty())
|
|
|
|
{
|
2009-07-30 10:10:34 +02:00
|
|
|
matching_ifdef.push_back(! match_cfg_def(cfgmap, ndef));
|
2009-01-24 20:28:30 +01:00
|
|
|
matched_ifdef.push_back(matching_ifdef.back());
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (line == "#else")
|
|
|
|
{
|
|
|
|
if (! matched_ifdef.empty())
|
|
|
|
matching_ifdef.back() = ! matched_ifdef.back();
|
|
|
|
}
|
|
|
|
|
2009-03-18 00:10:26 +01:00
|
|
|
else if (line.compare(0, 6, "#endif") == 0)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
if (! matched_ifdef.empty())
|
|
|
|
matched_ifdef.pop_back();
|
|
|
|
if (! matching_ifdef.empty())
|
|
|
|
matching_ifdef.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!line.empty() && line[0] == '#')
|
|
|
|
{
|
|
|
|
match = true;
|
|
|
|
for (std::list<bool>::const_iterator it = matching_ifdef.begin(); it != matching_ifdef.end(); ++it)
|
|
|
|
match &= bool(*it);
|
|
|
|
}
|
|
|
|
|
2009-11-13 22:12:29 +01:00
|
|
|
// #error => return ""
|
|
|
|
if (match && line.compare(0, 6, "#error") == 0)
|
|
|
|
return "";
|
2009-05-17 18:51:29 +02:00
|
|
|
|
2009-12-11 19:28:37 +01:00
|
|
|
if (!match && line.compare(0, 8, "#define ") == 0)
|
2009-05-17 18:51:29 +02:00
|
|
|
{
|
|
|
|
// Remove define that is not part of this configuration
|
|
|
|
line = "";
|
|
|
|
}
|
2009-12-11 19:28:37 +01:00
|
|
|
else if (line.compare(0, 7, "#file \"") == 0 ||
|
|
|
|
line.compare(0, 8, "#endfile") == 0 ||
|
|
|
|
line.compare(0, 8, "#define ") == 0 ||
|
|
|
|
line.compare(0, 6, "#undef") == 0)
|
2009-03-08 08:45:53 +01:00
|
|
|
{
|
|
|
|
// We must not remove #file tags or line numbers
|
|
|
|
// are corrupted. File tags are removed by the tokenizer.
|
|
|
|
}
|
2009-11-28 17:24:16 +01:00
|
|
|
else if (!match || line.compare(0, 1, "#") == 0)
|
2009-03-15 13:23:12 +01:00
|
|
|
{
|
|
|
|
// Remove #if, #else, #pragma etc, leaving only
|
2009-06-14 06:21:20 +02:00
|
|
|
// #define, #undef, #file and #endfile. and also lines
|
2009-03-15 13:23:12 +01:00
|
|
|
// which are not part of this configuration.
|
2009-01-24 20:28:30 +01:00
|
|
|
line = "";
|
2009-03-15 13:23:12 +01:00
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
|
|
|
|
ret << line << "\n";
|
|
|
|
}
|
|
|
|
|
2009-04-03 21:09:12 +02:00
|
|
|
return expandMacros(ret.str(), filename, errorLogger);
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
|
2009-05-22 23:18:48 +02:00
|
|
|
int Preprocessor::getHeaderFileName(std::string &str)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
std::string result;
|
2009-05-22 22:59:07 +02:00
|
|
|
std::string::size_type i = str.find_first_of("<\"");
|
2009-01-24 20:28:30 +01:00
|
|
|
if (i == std::string::npos)
|
2009-05-22 23:18:48 +02:00
|
|
|
{
|
|
|
|
str = "";
|
|
|
|
return 0;
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-05-22 22:59:07 +02:00
|
|
|
char c = str[i];
|
|
|
|
if (c == '<')
|
|
|
|
c = '>';
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
for (i = i + 1; i < str.length(); ++i)
|
|
|
|
{
|
2009-05-22 22:59:07 +02:00
|
|
|
if (str[i] == c)
|
2009-01-24 20:28:30 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
result.append(1, str[i]);
|
|
|
|
}
|
|
|
|
|
2009-05-22 23:18:48 +02:00
|
|
|
str = result;
|
|
|
|
if (c == '"')
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 2;
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Preprocessor::handleIncludes(std::string &code, const std::string &filename, const std::list<std::string> &includePaths)
|
|
|
|
{
|
2009-04-05 20:14:02 +02:00
|
|
|
std::list<std::string> paths;
|
|
|
|
std::string path;
|
|
|
|
path = filename;
|
2009-01-24 20:28:30 +01:00
|
|
|
path.erase(1 + path.find_last_of("\\/"));
|
2009-04-05 20:14:02 +02:00
|
|
|
paths.push_back(path);
|
2009-01-24 20:28:30 +01:00
|
|
|
std::string::size_type pos = 0;
|
2009-04-05 20:14:02 +02:00
|
|
|
std::string::size_type endfilePos = 0;
|
2009-01-24 20:28:30 +01:00
|
|
|
std::map<std::string, bool> handledFiles;
|
2009-04-05 20:14:02 +02:00
|
|
|
endfilePos = pos;
|
2009-01-24 20:28:30 +01:00
|
|
|
while ((pos = code.find("#include", pos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
// Accept only includes that are at the start of a line
|
|
|
|
if (pos > 0 && code[pos-1] != '\n')
|
|
|
|
{
|
|
|
|
pos += 8; // length of "#include"
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-04-05 20:14:02 +02:00
|
|
|
// If endfile is encountered, we have moved to a next file in our stack,
|
|
|
|
// so remove last path in our list.
|
2009-10-10 22:23:48 +02:00
|
|
|
while ((endfilePos = code.find("\n#endfile", endfilePos)) != std::string::npos && endfilePos < pos)
|
2009-04-05 20:14:02 +02:00
|
|
|
{
|
|
|
|
paths.pop_back();
|
2009-10-10 22:23:48 +02:00
|
|
|
endfilePos += 9; // size of #endfile
|
2009-04-05 20:14:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
endfilePos = pos;
|
2009-01-24 20:28:30 +01:00
|
|
|
std::string::size_type end = code.find("\n", pos);
|
|
|
|
std::string filename = code.substr(pos, end - pos);
|
|
|
|
|
|
|
|
// Remove #include clause
|
|
|
|
code.erase(pos, end - pos);
|
|
|
|
|
2009-05-22 23:18:48 +02:00
|
|
|
int headerType = getHeaderFileName(filename);
|
|
|
|
if (headerType == 0)
|
2009-01-24 20:28:30 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
std::string tempFile = filename;
|
|
|
|
std::transform(tempFile.begin(), tempFile.end(), tempFile.begin(), static_cast < int(*)(int) > (std::tolower));
|
|
|
|
if (handledFiles.find(tempFile) != handledFiles.end())
|
|
|
|
{
|
|
|
|
// We have processed this file already once, skip
|
|
|
|
// it this time to avoid ethernal loop.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
handledFiles[ tempFile ] = true;
|
|
|
|
|
|
|
|
// filename contains now a file name e.g. "menu.h"
|
|
|
|
std::string processedFile;
|
2009-10-31 12:46:03 +01:00
|
|
|
bool fileOpened = false;
|
2009-01-24 20:28:30 +01:00
|
|
|
for (std::list<std::string>::const_iterator iter = includePaths.begin(); iter != includePaths.end(); ++iter)
|
|
|
|
{
|
|
|
|
std::ifstream fin;
|
|
|
|
fin.open((*iter + filename).c_str());
|
|
|
|
if (fin.is_open())
|
|
|
|
{
|
|
|
|
filename = *iter + filename;
|
2009-12-06 19:38:53 +01:00
|
|
|
processedFile = Preprocessor::read(fin, filename, _settings);
|
2009-10-31 12:46:03 +01:00
|
|
|
fileOpened = true;
|
2009-01-24 20:28:30 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-31 12:46:03 +01:00
|
|
|
if (headerType == 1 && !fileOpened)
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
2009-04-05 20:14:02 +02:00
|
|
|
filename = paths.back() + filename;
|
2009-01-24 20:28:30 +01:00
|
|
|
std::ifstream fin(filename.c_str());
|
2009-04-05 20:14:02 +02:00
|
|
|
if (fin.is_open())
|
2009-10-31 12:46:03 +01:00
|
|
|
{
|
2009-12-06 19:38:53 +01:00
|
|
|
processedFile = Preprocessor::read(fin, filename, _settings);
|
2009-10-31 12:46:03 +01:00
|
|
|
fileOpened = true;
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (processedFile.length() > 0)
|
|
|
|
{
|
|
|
|
// Replace all tabs with spaces..
|
|
|
|
std::replace(processedFile.begin(), processedFile.end(), '\t', ' ');
|
|
|
|
|
|
|
|
// Remove all indentation..
|
|
|
|
if (!processedFile.empty() && processedFile[0] == ' ')
|
|
|
|
processedFile.erase(0, processedFile.find_first_not_of(" "));
|
|
|
|
|
|
|
|
// Remove space characters that are after or before new line character
|
|
|
|
processedFile = removeSpaceNearNL(processedFile);
|
|
|
|
processedFile = "#file \"" + filename + "\"\n" + processedFile + "\n#endfile";
|
|
|
|
code.insert(pos, processedFile);
|
|
|
|
|
2009-04-05 20:14:02 +02:00
|
|
|
path = filename;
|
|
|
|
path.erase(1 + path.find_last_of("\\/"));
|
|
|
|
paths.push_back(path);
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
2009-10-31 12:46:03 +01:00
|
|
|
else if (!fileOpened)
|
2009-07-25 21:10:30 +02:00
|
|
|
{
|
2009-07-26 22:15:29 +02:00
|
|
|
if (headerType == 1 && _errorLogger && _settings && _settings->_verbose)
|
2009-07-25 21:10:30 +02:00
|
|
|
{
|
2009-07-26 22:15:29 +02:00
|
|
|
_errorLogger->reportOut("Include file: \"" + filename + "\" not found.");
|
2009-07-25 21:10:30 +02:00
|
|
|
}
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-08 17:14:34 +02:00
|
|
|
/** @brief Class that the preprocessor uses when it expands macros. This class represents a preprocessor macro */
|
|
|
|
class PreprocessorMacro
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
Tokenizer tokenizer;
|
|
|
|
std::vector<std::string> _params;
|
|
|
|
std::string _name;
|
|
|
|
std::string _macro;
|
2009-02-13 14:31:40 +01:00
|
|
|
bool _variadic;
|
2009-09-19 23:09:05 +02:00
|
|
|
const std::string _prefix;
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-06-19 16:42:47 +02:00
|
|
|
/** The macro has parantheses but no parameters.. "AAA()" */
|
|
|
|
bool _nopar;
|
|
|
|
|
2009-10-10 22:01:33 +02:00
|
|
|
/** disabled assignment operator */
|
|
|
|
void operator=(const PreprocessorMacro &);
|
2009-01-24 20:28:30 +01:00
|
|
|
public:
|
2009-09-19 23:09:05 +02:00
|
|
|
/**
|
|
|
|
* @param macro The code after #define, until end of line,
|
|
|
|
* e.g. "A(x) foo(x);"
|
|
|
|
*/
|
2009-07-08 17:14:34 +02:00
|
|
|
PreprocessorMacro(const std::string ¯o)
|
2009-09-19 23:09:05 +02:00
|
|
|
: _macro(macro), _prefix("__cppcheck__")
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
// Tokenize the macro to make it easier to handle
|
|
|
|
std::istringstream istr(macro.c_str());
|
2009-05-09 21:32:29 +02:00
|
|
|
tokenizer.createTokens(istr);
|
2009-01-24 20:28:30 +01:00
|
|
|
|
|
|
|
// macro name..
|
|
|
|
if (tokens() && tokens()->isName())
|
|
|
|
_name = tokens()->str();
|
|
|
|
|
2009-06-19 16:42:47 +02:00
|
|
|
_variadic = _nopar = false;
|
2009-02-13 14:31:40 +01:00
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
std::string::size_type pos = macro.find_first_of(" (");
|
|
|
|
if (pos != std::string::npos && macro[pos] == '(')
|
|
|
|
{
|
|
|
|
// Extract macro parameters
|
|
|
|
if (Token::Match(tokens(), "%var% ( %var%"))
|
|
|
|
{
|
|
|
|
for (const Token *tok = tokens()->tokAt(2); tok; tok = tok->next())
|
|
|
|
{
|
|
|
|
if (tok->str() == ")")
|
|
|
|
break;
|
2009-05-21 17:55:52 +02:00
|
|
|
if (Token::simpleMatch(tok, ". . . )"))
|
2009-02-13 14:31:40 +01:00
|
|
|
{
|
|
|
|
_variadic = true;
|
|
|
|
break;
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
if (tok->isName())
|
|
|
|
_params.push_back(tok->str());
|
|
|
|
}
|
|
|
|
}
|
2009-06-18 23:09:11 +02:00
|
|
|
|
|
|
|
else if (Token::Match(tokens(), "%var% ( . . . )"))
|
|
|
|
_variadic = true;
|
2009-06-19 16:42:47 +02:00
|
|
|
|
|
|
|
else if (Token::Match(tokens(), "%var% ( )"))
|
|
|
|
_nopar = true;
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-19 23:09:05 +02:00
|
|
|
/**
|
|
|
|
* To avoid name collisions, we will rename macro variables by
|
|
|
|
* adding _prefix in front of the name of each variable.
|
|
|
|
* Returns the macro with converted names
|
2009-10-02 21:17:20 +02:00
|
|
|
* @param result If return value is false, this is not touched. If
|
2009-09-21 22:27:06 +02:00
|
|
|
* return value is true, this will contain new macro line
|
|
|
|
* (all that comes after #define) e.g.
|
|
|
|
* "A(__cppcheck__x) foo(__cppcheck__x);"
|
2009-10-02 21:17:20 +02:00
|
|
|
* @param macro The macro which is about to cause name collision.
|
2009-09-21 22:27:06 +02:00
|
|
|
* @return true if code needs to be changed, false is no changes
|
|
|
|
* are required.
|
2009-09-19 23:09:05 +02:00
|
|
|
*/
|
2009-10-02 21:17:20 +02:00
|
|
|
bool renameMacroVariables(std::string &result, const PreprocessorMacro ¯o)
|
2009-09-19 23:09:05 +02:00
|
|
|
{
|
|
|
|
// No variables
|
|
|
|
if (_params.size() == 0)
|
2009-09-21 22:27:06 +02:00
|
|
|
return false;
|
2009-09-19 23:09:05 +02:00
|
|
|
|
|
|
|
// Already renamed
|
|
|
|
if (_params[0].compare(0, _prefix.length(), _prefix) == 0)
|
2009-09-21 22:27:06 +02:00
|
|
|
return false;
|
2009-09-19 23:09:05 +02:00
|
|
|
|
2009-10-02 21:17:20 +02:00
|
|
|
// Check does the macro contain tokens that have
|
|
|
|
// the same name as parameters in this macro.
|
|
|
|
const Token *tok = macro.tokens();
|
|
|
|
if (Token::Match(tok->next(), "("))
|
|
|
|
{
|
|
|
|
std::map<std::string, bool> paramMap;
|
|
|
|
for (unsigned int i = 0; i < _params.size(); ++i)
|
|
|
|
paramMap[_params[i]] = true;
|
|
|
|
|
|
|
|
bool collision = false;
|
|
|
|
tok = Token::findmatch(tok, ")", 0);
|
|
|
|
for (; tok; tok = tok->next())
|
|
|
|
{
|
|
|
|
if (paramMap.find(tok->str()) != paramMap.end())
|
|
|
|
{
|
|
|
|
// Name collision
|
|
|
|
collision = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!collision)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-21 22:27:06 +02:00
|
|
|
result = "";
|
2009-09-19 23:09:05 +02:00
|
|
|
result.append(_name);
|
|
|
|
result.append("(");
|
|
|
|
std::vector<std::string> values;
|
|
|
|
for (unsigned int i = 0; i < _params.size(); ++i)
|
|
|
|
{
|
|
|
|
if (i > 0)
|
|
|
|
result.append(",");
|
|
|
|
values.push_back(_prefix + _params[i]);
|
|
|
|
result.append(values.back());
|
|
|
|
}
|
|
|
|
|
|
|
|
result.append(") ");
|
|
|
|
std::string temp;
|
|
|
|
this->code(values, temp);
|
|
|
|
result.append(temp);
|
2009-09-21 22:27:06 +02:00
|
|
|
return true;
|
2009-09-19 23:09:05 +02:00
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
const Token *tokens() const
|
|
|
|
{
|
|
|
|
return tokenizer.tokens();
|
|
|
|
}
|
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
const std::vector<std::string> ¶ms() const
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
return _params;
|
|
|
|
}
|
|
|
|
|
2009-02-13 14:31:40 +01:00
|
|
|
bool variadic() const
|
|
|
|
{
|
|
|
|
return _variadic;
|
|
|
|
}
|
|
|
|
|
2009-06-19 16:42:47 +02:00
|
|
|
bool nopar() const
|
|
|
|
{
|
|
|
|
return _nopar;
|
|
|
|
}
|
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
const std::string &name() const
|
|
|
|
{
|
|
|
|
return _name;
|
|
|
|
}
|
|
|
|
|
2009-05-18 22:32:04 +02:00
|
|
|
bool code(const std::vector<std::string> ¶ms2, std::string ¯ocode) const
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
2009-06-19 16:42:47 +02:00
|
|
|
if (_nopar)
|
|
|
|
{
|
|
|
|
macrocode = _macro.substr(1 + _macro.find(")"));
|
|
|
|
if (macrocode.empty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
// Remove leading spaces
|
|
|
|
if ((pos = macrocode.find_first_not_of(" ")) > 0)
|
|
|
|
macrocode.erase(0, pos);
|
|
|
|
// Remove ending newline
|
|
|
|
if ((pos = macrocode.find_first_of("\r\n")) != std::string::npos)
|
|
|
|
macrocode.erase(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (_params.empty() && _variadic)
|
2009-06-18 23:09:11 +02:00
|
|
|
{
|
|
|
|
std::string s;
|
|
|
|
for (unsigned int i = 0; i < params2.size(); ++i)
|
|
|
|
{
|
|
|
|
if (i > 0)
|
|
|
|
s += ",";
|
|
|
|
s += params2[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
macrocode = _macro.substr(1 + _macro.find(")"));
|
|
|
|
if (macrocode.empty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
// Remove leading spaces
|
|
|
|
if ((pos = macrocode.find_first_not_of(" ")) > 0)
|
2009-06-19 15:47:40 +02:00
|
|
|
macrocode.erase(0, pos);
|
2009-06-18 23:09:11 +02:00
|
|
|
// Remove ending newline
|
|
|
|
if ((pos = macrocode.find_first_of("\r\n")) != std::string::npos)
|
|
|
|
macrocode.erase(pos);
|
|
|
|
// Replace "__VA_ARGS__" with parameters
|
2009-07-20 15:42:40 +02:00
|
|
|
pos = 0;
|
|
|
|
while ((pos = macrocode.find("__VA_ARGS__", pos)) != std::string::npos)
|
2009-06-18 23:09:11 +02:00
|
|
|
{
|
|
|
|
macrocode.erase(pos, 11);
|
|
|
|
macrocode.insert(pos, s);
|
2009-07-20 15:42:40 +02:00
|
|
|
pos += s.length();
|
2009-06-18 23:09:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (_params.empty())
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
|
|
|
std::string::size_type pos = _macro.find(" ");
|
|
|
|
if (pos == std::string::npos)
|
|
|
|
macrocode = "";
|
|
|
|
else
|
|
|
|
{
|
|
|
|
macrocode = _macro.substr(pos + 1);
|
|
|
|
if ((pos = macrocode.find_first_of("\r\n")) != std::string::npos)
|
|
|
|
macrocode.erase(pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const Token *tok = tokens();
|
|
|
|
while (tok && tok->str() != ")")
|
|
|
|
tok = tok->next();
|
|
|
|
if (tok)
|
|
|
|
{
|
2009-02-13 14:34:24 +01:00
|
|
|
bool optcomma = false;
|
2009-01-24 20:28:30 +01:00
|
|
|
while ((tok = tok->next()) != NULL)
|
|
|
|
{
|
|
|
|
std::string str = tok->str();
|
|
|
|
if (str == "##")
|
|
|
|
continue;
|
2009-01-25 14:30:15 +01:00
|
|
|
if (str[0] == '#' || tok->isName())
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
2009-10-14 20:40:17 +02:00
|
|
|
const bool stringify(str[0] == '#');
|
|
|
|
if (stringify)
|
2009-01-25 14:30:15 +01:00
|
|
|
{
|
|
|
|
str = str.erase(0, 1);
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
for (unsigned int i = 0; i < _params.size(); ++i)
|
|
|
|
{
|
|
|
|
if (str == _params[i])
|
|
|
|
{
|
2009-02-13 14:31:40 +01:00
|
|
|
if (_variadic && i == _params.size() - 1)
|
|
|
|
{
|
|
|
|
str = "";
|
2009-09-13 09:03:48 +02:00
|
|
|
for (unsigned int j = (unsigned int)_params.size() - 1; j < params2.size(); ++j)
|
2009-02-13 14:31:40 +01:00
|
|
|
{
|
2009-02-13 14:34:24 +01:00
|
|
|
if (optcomma || j > _params.size() - 1)
|
2009-02-13 14:31:40 +01:00
|
|
|
str += ",";
|
2009-02-13 14:34:24 +01:00
|
|
|
optcomma = false;
|
2009-02-13 14:31:40 +01:00
|
|
|
str += params2[j];
|
|
|
|
}
|
|
|
|
}
|
2009-05-18 22:32:04 +02:00
|
|
|
else if (i >= params2.size())
|
|
|
|
{
|
|
|
|
// Macro had more parameters than caller used.
|
|
|
|
macrocode = "";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (stringify)
|
2009-10-14 20:40:17 +02:00
|
|
|
{
|
|
|
|
const std::string &s(params2[i]);
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr << "\"";
|
|
|
|
for (std::string::size_type i = 0; i < s.size(); ++i)
|
|
|
|
{
|
|
|
|
if (s[i] == '\\' || s[i] == '\"')
|
|
|
|
ostr << '\\';
|
|
|
|
ostr << s[i];
|
|
|
|
}
|
|
|
|
str = ostr.str() + "\"";
|
|
|
|
}
|
2009-01-25 14:30:15 +01:00
|
|
|
else
|
|
|
|
str = params2[i];
|
2009-05-18 22:32:04 +02:00
|
|
|
|
2009-01-24 20:28:30 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-27 11:24:24 +02:00
|
|
|
if (_variadic && tok->str() == "," && tok->next() && tok->next()->str() == "##")
|
2009-02-13 14:34:24 +01:00
|
|
|
{
|
|
|
|
optcomma = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
optcomma = false;
|
2009-01-24 20:28:30 +01:00
|
|
|
macrocode += str;
|
2009-11-26 17:32:18 +01:00
|
|
|
if (Token::Match(tok, "%var% %var%"))
|
2009-01-24 20:28:30 +01:00
|
|
|
macrocode += " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-18 22:32:04 +02:00
|
|
|
return true;
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-12-06 19:17:59 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
static void skipstring(const std::string &line, std::string::size_type &pos)
|
|
|
|
{
|
|
|
|
const char ch = line[pos];
|
2009-11-18 23:34:00 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
++pos;
|
|
|
|
while (pos < line.size() && line[pos] != ch)
|
2009-12-06 19:17:59 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
if (line[pos] == '\\')
|
|
|
|
++pos;
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
}
|
2009-12-06 20:10:10 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
|
|
|
|
static bool getlines(std::istream &istr, std::string &line)
|
|
|
|
{
|
|
|
|
if (!istr.good())
|
|
|
|
return false;
|
|
|
|
line = "";
|
|
|
|
for (char ch = (char)istr.get(); istr.good(); ch = (char)istr.get())
|
|
|
|
{
|
|
|
|
if (ch == '\'' || ch == '\"')
|
2009-12-06 20:10:10 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
line += ch;
|
|
|
|
char c = 0;
|
|
|
|
while (istr.good() && c != ch)
|
2009-11-18 23:34:00 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
if (c == '\\')
|
2009-12-06 20:10:10 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
c = (char)istr.get();
|
|
|
|
if (!istr.good())
|
|
|
|
return true;
|
|
|
|
line += c;
|
2009-11-18 23:34:00 +01:00
|
|
|
}
|
2009-12-06 20:10:10 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
c = (char)istr.get();
|
|
|
|
if (!istr.good())
|
|
|
|
return true;
|
|
|
|
if (c == '\n' && line.compare(0, 1, "#") == 0)
|
|
|
|
return true;
|
|
|
|
line += c;
|
|
|
|
}
|
2009-12-06 20:10:10 +01:00
|
|
|
continue;
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
2009-12-09 17:13:48 +01:00
|
|
|
if (ch == '\n')
|
|
|
|
{
|
|
|
|
if (line.compare(0, 1, "#") == 0)
|
|
|
|
return true;
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
if ((char)istr.peek() == '#')
|
|
|
|
{
|
|
|
|
line += ch;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (line.compare(0, 1, "#") != 0 && ch == ';')
|
2009-12-06 20:10:10 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
line += ";";
|
|
|
|
return true;
|
2009-12-06 20:10:10 +01:00
|
|
|
}
|
2009-12-06 19:17:59 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
line += ch;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
std::string Preprocessor::expandMacros(const std::string &code, std::string filename, ErrorLogger *errorLogger)
|
|
|
|
{
|
|
|
|
// Search for macros and expand them..
|
2009-12-06 19:17:59 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
std::map<std::string, PreprocessorMacro *> macros;
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
unsigned int linenr = 1;
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
// linenr, filename
|
|
|
|
std::stack< std::pair<unsigned int, std::string> > fileinfo;
|
2009-12-06 19:17:59 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
std::ostringstream ostr;
|
|
|
|
std::istringstream istr(code.c_str());
|
|
|
|
std::string line;
|
|
|
|
while (getlines(istr, line))
|
|
|
|
{
|
|
|
|
if (line.compare(0, 8, "#define ") == 0)
|
|
|
|
{
|
|
|
|
PreprocessorMacro *macro = new PreprocessorMacro(line.substr(8));
|
|
|
|
if (macro->name().empty())
|
|
|
|
delete macro;
|
|
|
|
else
|
|
|
|
macros[macro->name()] = macro;
|
|
|
|
line = "\n";
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
else if (line.compare(0, 7, "#undef ") == 0)
|
|
|
|
{
|
|
|
|
std::map<std::string, PreprocessorMacro *>::iterator it;
|
|
|
|
it = macros.find(line.substr(7));
|
|
|
|
if (it != macros.end())
|
2009-01-24 20:28:30 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
delete it->second;
|
|
|
|
macros.erase(it);
|
2009-12-06 20:10:10 +01:00
|
|
|
}
|
2009-12-09 17:13:48 +01:00
|
|
|
line = "\n";
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
else if (line.compare(0, 7, "#file \"") == 0)
|
|
|
|
{
|
|
|
|
fileinfo.push(std::pair<unsigned int, std::string>(linenr, filename));
|
|
|
|
filename = line.substr(7, line.length() - 8);
|
|
|
|
linenr = 0;
|
|
|
|
line += "\n";
|
|
|
|
}
|
2009-09-19 23:09:05 +02:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
else if (line == "#endfile")
|
|
|
|
{
|
|
|
|
if (fileinfo.size())
|
2009-12-06 20:10:10 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
linenr = fileinfo.top().first;
|
|
|
|
filename = fileinfo.top().second;
|
|
|
|
fileinfo.pop();
|
2009-12-06 20:10:10 +01:00
|
|
|
}
|
2009-12-09 17:13:48 +01:00
|
|
|
line += "\n";
|
|
|
|
}
|
2009-11-18 23:34:00 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
else if (line.compare(0, 1, "#") == 0)
|
|
|
|
{
|
|
|
|
line += "\n";
|
|
|
|
}
|
2009-09-19 23:09:05 +02:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
// expand macros..
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::map<const PreprocessorMacro *, unsigned int> limits;
|
2009-03-09 20:29:25 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
std::string::size_type pos = 0;
|
|
|
|
while (pos < line.size())
|
2009-12-06 20:10:10 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
if (line[pos] == '\n')
|
|
|
|
++linenr;
|
|
|
|
|
|
|
|
// skip strings..
|
|
|
|
if (line[pos] == '\"' || line[pos] == '\'')
|
2009-12-06 20:10:10 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
const char ch = line[pos];
|
|
|
|
|
|
|
|
skipstring(line, pos);
|
|
|
|
++pos;
|
|
|
|
|
|
|
|
if (pos >= line.size())
|
|
|
|
{
|
|
|
|
writeError(filename,
|
|
|
|
linenr,
|
|
|
|
errorLogger,
|
|
|
|
"noQuoteCharPair",
|
|
|
|
std::string("No pair for character (") + ch + "). Can't process file. File is either invalid or unicode, which is currently not supported.");
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2009-12-06 20:10:10 +01:00
|
|
|
continue;
|
|
|
|
}
|
2009-05-24 22:57:12 +02:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
if (!std::isalpha(line[pos]) && line[pos] != '_')
|
|
|
|
++pos;
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
// found an identifier..
|
|
|
|
while (pos < line.length() && (std::isalpha(line[pos]) || line[pos] == '_'))
|
|
|
|
{
|
|
|
|
const std::string::size_type pos1 = pos++;
|
|
|
|
while (pos < line.size() && (std::isalnum(line[pos]) || line[pos] == '_'))
|
|
|
|
++pos;
|
2009-12-06 19:17:59 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
const std::string id = line.substr(pos1, pos - pos1);
|
2009-12-06 19:17:59 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
// is there a macro with this name?
|
|
|
|
std::map<std::string, PreprocessorMacro *>::const_iterator it;
|
|
|
|
it = macros.find(id);
|
|
|
|
if (it == macros.end())
|
|
|
|
break;
|
|
|
|
|
|
|
|
const PreprocessorMacro * const macro = it->second;
|
2009-12-06 20:10:10 +01:00
|
|
|
|
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
const std::map<const PreprocessorMacro *, unsigned int>::const_iterator it2 = limits.find(macro);
|
|
|
|
if (it2 != limits.end() && pos <= line.length() - it2->second)
|
2009-12-06 20:10:10 +01:00
|
|
|
break;
|
|
|
|
}
|
2009-12-09 17:13:48 +01:00
|
|
|
|
|
|
|
std::vector<std::string> params;
|
|
|
|
std::string::size_type pos2 = pos;
|
|
|
|
if (macro->params().size() && pos2 >= line.length())
|
|
|
|
break;
|
|
|
|
|
|
|
|
unsigned int numberOfNewlines = 0;
|
|
|
|
|
|
|
|
if (macro->variadic() || macro->nopar() || macro->params().size())
|
2009-12-06 20:10:10 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
if (line[pos2] == ' ')
|
|
|
|
pos2++;
|
|
|
|
|
|
|
|
if (line[pos2] != '(')
|
|
|
|
break;
|
|
|
|
|
|
|
|
int parlevel = 0;
|
|
|
|
std::string par;
|
|
|
|
bool endFound = false;
|
|
|
|
for (; pos2 < line.length(); ++pos2)
|
2009-12-06 20:10:10 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
if (line[pos2] == '(')
|
|
|
|
{
|
|
|
|
++parlevel;
|
|
|
|
if (parlevel == 1)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (line[pos2] == ')')
|
2009-12-06 19:17:59 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
--parlevel;
|
|
|
|
if (parlevel <= 0)
|
|
|
|
{
|
|
|
|
endFound = true;
|
|
|
|
params.push_back(par);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (line[pos2] == '\"' || line[pos2] == '\'')
|
|
|
|
{
|
|
|
|
const std::string::size_type p = pos2;
|
|
|
|
skipstring(line, pos2);
|
|
|
|
if (pos2 == line.length())
|
|
|
|
break;
|
|
|
|
par += line.substr(p, pos2 + 1 - p);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (line[pos2] == '\n')
|
|
|
|
{
|
|
|
|
++numberOfNewlines;
|
|
|
|
continue;
|
2009-06-05 22:45:31 +02:00
|
|
|
}
|
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
if (parlevel == 1 && line[pos2] == ',')
|
|
|
|
{
|
|
|
|
params.push_back(par);
|
|
|
|
par = "";
|
|
|
|
}
|
|
|
|
else if (line[pos2] == ' ')
|
|
|
|
{
|
|
|
|
// Add space only if it is needed
|
|
|
|
if (par.size() && std::isalnum(par[par.length()-1]))
|
|
|
|
{
|
|
|
|
par += ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (parlevel >= 1)
|
|
|
|
{
|
|
|
|
par.append(1, line[pos2]);
|
|
|
|
}
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
2009-12-09 17:13:48 +01:00
|
|
|
|
|
|
|
if (!endFound)
|
2009-01-24 20:28:30 +01:00
|
|
|
break;
|
|
|
|
}
|
2009-11-18 23:34:00 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
if (params.size() == 1 && params[0] == "")
|
|
|
|
params.clear();
|
2009-11-18 23:34:00 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
// Same number of parameters..
|
|
|
|
if (!macro->variadic() && params.size() != macro->params().size())
|
|
|
|
break;
|
2009-01-24 20:28:30 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
// Create macro code..
|
|
|
|
std::string tempMacro;
|
|
|
|
if (!macro->code(params, tempMacro))
|
2009-03-16 22:20:55 +01:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
// Syntax error in code
|
|
|
|
writeError(filename,
|
|
|
|
linenr,
|
|
|
|
errorLogger,
|
|
|
|
"syntaxError",
|
|
|
|
std::string("Syntax error. Not enough parameters for macro '") + macro->name() + "'.");
|
2009-08-01 14:55:45 +02:00
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
std::map<std::string, PreprocessorMacro *>::iterator it;
|
|
|
|
for (it = macros.begin(); it != macros.end(); ++it)
|
|
|
|
delete it->second;
|
2009-08-01 14:55:45 +02:00
|
|
|
}
|
2009-05-18 22:32:04 +02:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
return "";
|
|
|
|
}
|
2009-12-06 20:10:10 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
const std::string macrocode(std::string(numberOfNewlines, '\n') + tempMacro);
|
2009-12-06 20:10:10 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
// Insert macro code..
|
|
|
|
if (macro->variadic() || macro->nopar() || !macro->params().empty())
|
|
|
|
++pos2;
|
2009-12-06 20:10:10 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
limits[macro] = line.length() - pos2;
|
2009-12-06 20:10:10 +01:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
line.erase(pos1, pos2 - pos1);
|
|
|
|
line.insert(pos1, macrocode);
|
|
|
|
pos = pos1;
|
|
|
|
}
|
2009-05-18 22:32:04 +02:00
|
|
|
}
|
2009-12-09 17:13:48 +01:00
|
|
|
}
|
2009-05-18 22:32:04 +02:00
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
ostr << line;
|
|
|
|
for (std::string::size_type p = 0; p < line.length(); ++p)
|
|
|
|
{
|
|
|
|
if (line[p] == '\n')
|
|
|
|
++linenr;
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2009-12-09 17:13:48 +01:00
|
|
|
std::map<std::string, PreprocessorMacro *>::iterator it;
|
|
|
|
for (it = macros.begin(); it != macros.end(); ++it)
|
|
|
|
delete it->second;
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
|
2009-12-09 17:13:48 +01:00
|
|
|
return ostr.str();
|
2009-01-24 20:28:30 +01:00
|
|
|
}
|
|
|
|
|