2008-10-26 08:55:15 +01:00
|
|
|
/*
|
|
|
|
* c++check - c/c++ syntax checking
|
|
|
|
* Copyright (C) 2007 Daniel Marjamäki
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include "tokenize.h"
|
2007-05-25 08:50:16 +02:00
|
|
|
#include "CommonCheck.h" // <- IsName
|
2007-05-24 07:40:45 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include <locale>
|
|
|
|
#include <fstream>
|
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2008-08-30 20:29:37 +02:00
|
|
|
#include <cstring>
|
2007-05-28 08:17:18 +02:00
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
#include <stdlib.h> // <- strtoul
|
2007-07-17 08:15:50 +02:00
|
|
|
#include <stdio.h>
|
2007-05-24 07:40:45 +02:00
|
|
|
|
2008-02-18 18:11:34 +01:00
|
|
|
#ifdef __BORLANDC__
|
2008-09-11 19:03:58 +02:00
|
|
|
#include <ctype.h>
|
2008-02-18 18:11:34 +01:00
|
|
|
#include <mem.h>
|
|
|
|
#endif
|
|
|
|
|
2008-09-11 19:03:58 +02:00
|
|
|
#ifndef _MSC_VER
|
|
|
|
#define _strdup(str) strdup(str)
|
|
|
|
#endif
|
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Helper functions..
|
|
|
|
|
|
|
|
static void Define(const char Name[], const char Value[]);
|
|
|
|
|
|
|
|
static void addtoken(const char str[], const unsigned int lineno, const unsigned int fileno);
|
|
|
|
|
|
|
|
static void combine_2tokens(TOKEN *tok, const char str1[], const char str2[]);
|
|
|
|
|
|
|
|
static void DeleteNextToken(TOKEN *tok);
|
|
|
|
|
2008-03-22 12:46:06 +01:00
|
|
|
static TOKEN *_gettok(TOKEN *tok, int index)
|
|
|
|
{
|
|
|
|
while (tok && index>0)
|
|
|
|
{
|
|
|
|
tok = tok->next;
|
|
|
|
index--;
|
|
|
|
}
|
|
|
|
return tok;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
//---------------------------------------------------------------------------
|
2007-05-24 07:40:45 +02:00
|
|
|
|
|
|
|
std::vector<std::string> Files;
|
|
|
|
struct TOKEN *tokens, *tokens_back;
|
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Defined symbols.
|
|
|
|
// "#define abc 123" will create a defined symbol "abc" with the value 123
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
struct DefineSymbol
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
char *value;
|
|
|
|
struct DefineSymbol *next;
|
|
|
|
};
|
|
|
|
static struct DefineSymbol * dsymlist;
|
|
|
|
|
|
|
|
static void Define(const char Name[], const char Value[])
|
|
|
|
{
|
|
|
|
if (!(Name && Name[0]))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!(Value && Value[0]))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Is 'Value' a decimal value..
|
|
|
|
bool dec = true, hex = true;
|
|
|
|
for (int i = 0; Value[i]; i++)
|
|
|
|
{
|
2008-09-11 19:03:58 +02:00
|
|
|
if ( ! isdigit(Value[i]) )
|
2007-05-24 07:40:45 +02:00
|
|
|
dec = false;
|
|
|
|
|
2008-09-11 19:03:58 +02:00
|
|
|
if ( ! isxdigit(Value[i]) && (!(i==1 && Value[i]=='x')))
|
2007-05-24 07:40:45 +02:00
|
|
|
hex = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dec && !hex)
|
|
|
|
return;
|
|
|
|
|
2008-09-11 19:03:58 +02:00
|
|
|
char *strValue = _strdup(Value);
|
2007-05-24 07:40:45 +02:00
|
|
|
|
|
|
|
if (!dec && hex)
|
|
|
|
{
|
2008-09-11 19:03:58 +02:00
|
|
|
// Convert Value from hexadecimal to decimal
|
|
|
|
unsigned long value;
|
|
|
|
std::istringstream istr(Value+2);
|
|
|
|
istr >> std::hex >> value;
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr << value;
|
2007-05-24 07:40:45 +02:00
|
|
|
free(strValue);
|
2008-09-11 19:03:58 +02:00
|
|
|
strValue = _strdup(ostr.str().c_str());
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DefineSymbol *NewSym = new DefineSymbol;
|
|
|
|
memset(NewSym, 0, sizeof(DefineSymbol));
|
2008-09-11 19:03:58 +02:00
|
|
|
NewSym->name = _strdup(Name);
|
2007-05-24 07:40:45 +02:00
|
|
|
NewSym->value = strValue;
|
|
|
|
NewSym->next = dsymlist;
|
|
|
|
dsymlist = NewSym;
|
|
|
|
}
|
2007-05-28 08:17:18 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// addtoken
|
|
|
|
// add a token. Used by 'Tokenizer'
|
|
|
|
//---------------------------------------------------------------------------
|
2007-05-24 07:40:45 +02:00
|
|
|
|
|
|
|
static void addtoken(const char str[], const unsigned int lineno, const unsigned int fileno)
|
|
|
|
{
|
|
|
|
if (str[0] == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Replace hexadecimal value with decimal
|
2008-09-11 19:03:58 +02:00
|
|
|
std::ostringstream str2;
|
|
|
|
if (strncmp(str,"0x",2)==0)
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
2008-09-11 19:03:58 +02:00
|
|
|
str2 << strtoul(str+2, NULL, 16);
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
2008-09-11 19:03:58 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
str2 << str;
|
|
|
|
}
|
2007-05-24 07:40:45 +02:00
|
|
|
|
|
|
|
TOKEN *newtoken = new TOKEN;
|
|
|
|
memset(newtoken, 0, sizeof(TOKEN));
|
2008-09-11 19:03:58 +02:00
|
|
|
newtoken->str = _strdup(str2.str().c_str());
|
2007-05-24 07:40:45 +02:00
|
|
|
newtoken->linenr = lineno;
|
|
|
|
newtoken->FileIndex = fileno;
|
|
|
|
if (tokens_back)
|
|
|
|
{
|
|
|
|
tokens_back->next = newtoken;
|
|
|
|
tokens_back = newtoken;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tokens = tokens_back = newtoken;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if str is defined..
|
|
|
|
for (DefineSymbol *sym = dsymlist; sym; sym = sym->next)
|
|
|
|
{
|
|
|
|
if (strcmp(str,sym->name)==0)
|
|
|
|
{
|
|
|
|
free(newtoken->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
newtoken->str = _strdup(sym->value);
|
2007-05-24 07:40:45 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// combine_2tokens
|
|
|
|
// Combine two tokens that belong to each other. Ex: "<" and "=" may become "<="
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
static void combine_2tokens(TOKEN *tok, const char str1[], const char str2[])
|
|
|
|
{
|
|
|
|
if (!(tok && tok->next))
|
|
|
|
return;
|
|
|
|
if (strcmp(tok->str,str1) || strcmp(tok->next->str,str2))
|
|
|
|
return;
|
|
|
|
|
|
|
|
free(tok->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
std::string newstr(std::string(str1) + std::string(str2));
|
|
|
|
tok->str = _strdup( newstr.c_str() );
|
2007-05-24 07:40:45 +02:00
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
DeleteNextToken(tok);
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// SizeOfType - gives the size of a type
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
std::map<std::string, unsigned int> TypeSize;
|
|
|
|
|
2007-05-30 22:08:05 +02:00
|
|
|
int SizeOfType(const char type[])
|
2007-05-28 08:17:18 +02:00
|
|
|
{
|
|
|
|
if (!type)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return TypeSize[type];
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// DeleteNextToken. Unlink and delete next token.
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void DeleteNextToken(TOKEN *tok)
|
|
|
|
{
|
|
|
|
TOKEN *next = tok->next;
|
|
|
|
tok->next = next->next;
|
|
|
|
free(next->str);
|
|
|
|
delete next;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-05-29 08:24:36 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// InsertTokens - Copy and insert tokens
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-03-29 10:44:23 +01:00
|
|
|
static void InsertTokens(TOKEN *dest, TOKEN *src, unsigned int n)
|
2007-05-29 08:24:36 +02:00
|
|
|
{
|
|
|
|
while (n > 0)
|
|
|
|
{
|
|
|
|
TOKEN *NewToken = new TOKEN;
|
|
|
|
NewToken->FileIndex = src->FileIndex;
|
|
|
|
NewToken->linenr = src->linenr;
|
2008-09-11 19:03:58 +02:00
|
|
|
NewToken->str = _strdup(src->str);
|
2007-05-29 08:24:36 +02:00
|
|
|
|
|
|
|
NewToken->next = dest->next;
|
|
|
|
dest->next = NewToken;
|
|
|
|
|
|
|
|
dest = dest->next;
|
|
|
|
src = src->next;
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Tokenize - tokenizes a given file.
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-10-30 20:42:34 +01:00
|
|
|
void Tokenize(std::istream &code, const char FileName[])
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
|
|
|
// Has this file been tokenized already?
|
|
|
|
for (unsigned int i = 0; i < Files.size(); i++)
|
|
|
|
{
|
2008-04-06 08:26:11 +02:00
|
|
|
if ( SameFileName( Files[i].c_str(), FileName ) )
|
2007-05-24 07:40:45 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-10-23 08:36:29 +02:00
|
|
|
// The "Files" vector remembers what files have been tokenized..
|
2007-05-24 07:40:45 +02:00
|
|
|
Files.push_back(FileName);
|
|
|
|
|
2008-02-16 16:46:32 +01:00
|
|
|
// Tokenize the file..
|
2008-10-31 09:29:59 +01:00
|
|
|
TokenizeCode( code, (unsigned int)(Files.size() - 1) );
|
2008-02-16 16:46:32 +01:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Tokenize - tokenizes input stream
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void TokenizeCode(std::istream &code, const unsigned int FileIndex)
|
|
|
|
{
|
2007-10-23 08:36:29 +02:00
|
|
|
// Tokenize the file.
|
2007-05-24 07:40:45 +02:00
|
|
|
unsigned int lineno = 1;
|
2008-02-16 16:46:32 +01:00
|
|
|
char CurrentToken[1000] = {0};
|
2007-05-24 07:40:45 +02:00
|
|
|
char *pToken = CurrentToken;
|
2008-10-30 20:42:34 +01:00
|
|
|
for (char ch = (char)code.get(); code.good(); ch = (char)code.get())
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
2008-09-20 19:34:37 +02:00
|
|
|
// Todo
|
|
|
|
if ( ch < 0 )
|
|
|
|
continue;
|
|
|
|
|
2007-10-23 08:36:29 +02:00
|
|
|
// Preprocessor stuff?
|
2007-05-24 07:40:45 +02:00
|
|
|
if (ch == '#' && !CurrentToken[0])
|
|
|
|
{
|
|
|
|
std::string line;
|
2008-02-16 16:46:32 +01:00
|
|
|
getline(code,line);
|
2007-05-24 07:40:45 +02:00
|
|
|
line = "#" + line;
|
|
|
|
if (strncmp(line.c_str(),"#include",8)==0 &&
|
|
|
|
line.find("\"") != std::string::npos)
|
|
|
|
{
|
|
|
|
// Extract the filename
|
|
|
|
line.erase(0, line.find("\"")+1);
|
|
|
|
line.erase(line.find("\""));
|
|
|
|
|
|
|
|
// Relative path..
|
2008-02-16 16:46:32 +01:00
|
|
|
if (Files.back().find_first_of("\\/") != std::string::npos)
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
2008-02-16 16:46:32 +01:00
|
|
|
std::string path = Files.back();
|
|
|
|
path.erase( 1 + path.find_last_of("\\/") );
|
2007-05-24 07:40:45 +02:00
|
|
|
line = path + line;
|
|
|
|
}
|
|
|
|
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken("#include", lineno, FileIndex);
|
|
|
|
addtoken(line.c_str(), lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
|
2008-10-30 20:42:34 +01:00
|
|
|
std::ifstream fin( line.c_str() );
|
|
|
|
Tokenize(fin, line.c_str());
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (strncmp(line.c_str(), "#define", 7) == 0)
|
|
|
|
{
|
|
|
|
char *strId = NULL;
|
|
|
|
enum {Space1, Id, Space2, Value} State;
|
|
|
|
State = Space1;
|
|
|
|
for (unsigned int i = 8; i < line.length(); i++)
|
|
|
|
{
|
|
|
|
if (State==Space1 || State==Space2)
|
|
|
|
{
|
2008-09-11 19:03:58 +02:00
|
|
|
if (isspace(line[i]))
|
2007-05-24 07:40:45 +02:00
|
|
|
continue;
|
|
|
|
State = (State==Space1) ? Id : Value;
|
|
|
|
}
|
|
|
|
|
2008-03-18 08:45:35 +01:00
|
|
|
else if (State==Id)
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
2008-09-11 19:03:58 +02:00
|
|
|
if ( isspace( line[i] ) )
|
2008-03-18 08:45:35 +01:00
|
|
|
{
|
2008-09-11 19:03:58 +02:00
|
|
|
strId = _strdup(CurrentToken);
|
2008-03-18 08:45:35 +01:00
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
pToken = CurrentToken;
|
|
|
|
State = Space2;
|
|
|
|
continue;
|
|
|
|
}
|
2008-09-11 19:03:58 +02:00
|
|
|
else if ( ! isalnum(line[i]) )
|
2008-03-18 08:45:35 +01:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*pToken = line[i];
|
|
|
|
pToken++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (State==Value)
|
|
|
|
{
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken("def", lineno, FileIndex);
|
|
|
|
addtoken(strId, lineno, FileIndex);
|
|
|
|
addtoken(";", lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
Define(strId, CurrentToken);
|
|
|
|
}
|
|
|
|
|
|
|
|
pToken = CurrentToken;
|
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
free(strId);
|
|
|
|
}
|
|
|
|
|
2007-06-02 18:32:07 +02:00
|
|
|
else
|
|
|
|
{
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken("#", lineno, FileIndex);
|
|
|
|
addtoken(";", lineno, FileIndex);
|
2007-06-02 18:32:07 +02:00
|
|
|
}
|
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
lineno++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch == '\n')
|
|
|
|
{
|
|
|
|
// Add current token..
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken(CurrentToken, lineno++, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
pToken = CurrentToken;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Comments..
|
2008-10-30 20:42:34 +01:00
|
|
|
if (ch == '/' && code.good())
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
2008-04-11 20:37:15 +02:00
|
|
|
bool newstatement = bool( strchr(";{}", CurrentToken[0]) != NULL );
|
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
// Add current token..
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken(CurrentToken, lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
pToken = CurrentToken;
|
|
|
|
|
|
|
|
// Read next character..
|
2008-02-16 16:46:32 +01:00
|
|
|
ch = (char)code.get();
|
2007-05-24 07:40:45 +02:00
|
|
|
|
|
|
|
// If '//'..
|
|
|
|
if (ch == '/')
|
|
|
|
{
|
2008-04-11 20:37:15 +02:00
|
|
|
std::string comment;
|
2008-04-12 08:33:45 +02:00
|
|
|
getline( code, comment ); // Parse in the whole comment
|
|
|
|
|
|
|
|
// If the comment says something like "fred is deleted" then generate appropriate tokens for that
|
|
|
|
comment = comment + " ";
|
|
|
|
if ( newstatement && comment.find(" deleted ")!=std::string::npos )
|
2008-04-11 20:37:15 +02:00
|
|
|
{
|
2008-04-12 08:33:45 +02:00
|
|
|
// delete
|
|
|
|
addtoken( "delete", lineno, FileIndex );
|
|
|
|
|
|
|
|
// fred
|
|
|
|
std::string::size_type pos1 = comment.find_first_not_of(" \t");
|
|
|
|
std::string::size_type pos2 = comment.find(" ", pos1);
|
|
|
|
std::string firstWord = comment.substr( pos1, pos2-pos1 );
|
|
|
|
addtoken( firstWord.c_str(), lineno, FileIndex );
|
|
|
|
|
|
|
|
// ;
|
|
|
|
addtoken( ";", lineno, FileIndex );
|
2008-04-11 20:37:15 +02:00
|
|
|
}
|
2008-04-12 08:33:45 +02:00
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
lineno++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If '/*'..
|
|
|
|
if (ch == '*')
|
|
|
|
{
|
|
|
|
char chPrev;
|
|
|
|
ch = chPrev = 'A';
|
2008-10-30 20:42:34 +01:00
|
|
|
while (code.good() && (chPrev!='*' || ch!='/'))
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
|
|
|
chPrev = ch;
|
2008-02-16 16:46:32 +01:00
|
|
|
ch = (char)code.get();
|
2007-05-24 07:40:45 +02:00
|
|
|
if (ch == '\n')
|
|
|
|
lineno++;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not a comment.. add token..
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken("/", lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// char..
|
|
|
|
if (ch == '\'')
|
|
|
|
{
|
|
|
|
// Add previous token
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken(CurrentToken, lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
|
|
|
|
// Read this ..
|
|
|
|
CurrentToken[0] = ch;
|
2008-02-16 16:46:32 +01:00
|
|
|
CurrentToken[1] = (char)code.get();
|
|
|
|
CurrentToken[2] = (char)code.get();
|
2007-05-24 07:40:45 +02:00
|
|
|
if (CurrentToken[1] == '\\')
|
2008-02-16 16:46:32 +01:00
|
|
|
CurrentToken[3] = (char)code.get();
|
2007-05-24 07:40:45 +02:00
|
|
|
|
|
|
|
// Add token and start on next..
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken(CurrentToken, lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
pToken = CurrentToken;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// String..
|
|
|
|
if (ch == '\"')
|
|
|
|
{
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken(CurrentToken, lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
pToken = CurrentToken;
|
|
|
|
bool special = false;
|
|
|
|
char c = ch;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Append token..
|
2007-05-30 22:08:05 +02:00
|
|
|
if ( pToken < &CurrentToken[sizeof(CurrentToken)-10] )
|
|
|
|
{
|
|
|
|
*pToken = c;
|
|
|
|
pToken++;
|
|
|
|
}
|
2007-05-24 07:40:45 +02:00
|
|
|
|
|
|
|
// Special sequence '\.'
|
|
|
|
if (special)
|
|
|
|
special = false;
|
|
|
|
else
|
|
|
|
special = (c == '\\');
|
|
|
|
|
|
|
|
// Get next character
|
2008-02-16 16:46:32 +01:00
|
|
|
c = (char)code.get();
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
2008-10-30 20:42:34 +01:00
|
|
|
while (code.good() && (special || c != '\"'));
|
2007-05-24 07:40:45 +02:00
|
|
|
*pToken = '\"';
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken(CurrentToken, lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
pToken = CurrentToken;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strchr("+-*/%&|^?!=<>[](){};:,.",ch))
|
|
|
|
{
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken(CurrentToken, lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
CurrentToken[0] = ch;
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken(CurrentToken, lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
pToken = CurrentToken;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-11 19:03:58 +02:00
|
|
|
if (isspace(ch) || iscntrl(ch))
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
2008-02-16 16:46:32 +01:00
|
|
|
addtoken(CurrentToken, lineno, FileIndex);
|
2007-05-24 07:40:45 +02:00
|
|
|
pToken = CurrentToken;
|
|
|
|
memset(CurrentToken, 0, sizeof(CurrentToken));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pToken = ch;
|
|
|
|
pToken++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Combine tokens..
|
|
|
|
for (TOKEN *tok = tokens; tok && tok->next; tok = tok->next)
|
|
|
|
{
|
|
|
|
combine_2tokens(tok, "<", "<");
|
|
|
|
combine_2tokens(tok, ">", ">");
|
|
|
|
|
|
|
|
combine_2tokens(tok, "&", "&");
|
|
|
|
combine_2tokens(tok, "|", "|");
|
|
|
|
|
|
|
|
combine_2tokens(tok, "+", "=");
|
|
|
|
combine_2tokens(tok, "-", "=");
|
|
|
|
combine_2tokens(tok, "*", "=");
|
|
|
|
combine_2tokens(tok, "/", "=");
|
|
|
|
combine_2tokens(tok, "&", "=");
|
|
|
|
combine_2tokens(tok, "|", "=");
|
|
|
|
|
|
|
|
combine_2tokens(tok, "=", "=");
|
|
|
|
combine_2tokens(tok, "!", "=");
|
|
|
|
combine_2tokens(tok, "<", "=");
|
|
|
|
combine_2tokens(tok, ">", "=");
|
|
|
|
|
|
|
|
combine_2tokens(tok, ":", ":");
|
|
|
|
combine_2tokens(tok, "-", ">");
|
|
|
|
|
|
|
|
combine_2tokens(tok, "private", ":");
|
|
|
|
combine_2tokens(tok, "protected", ":");
|
|
|
|
combine_2tokens(tok, "public", ":");
|
|
|
|
}
|
2008-03-23 15:15:44 +01:00
|
|
|
|
|
|
|
// Replace "->" with "."
|
|
|
|
for ( TOKEN *tok = tokens; tok; tok = tok->next )
|
|
|
|
{
|
|
|
|
if ( strcmp(tok->str, "->") == 0 )
|
|
|
|
{
|
2008-09-11 19:03:58 +02:00
|
|
|
tok->str[0] = '.';
|
|
|
|
tok->str[1] = 0;
|
2008-03-23 15:15:44 +01:00
|
|
|
}
|
|
|
|
}
|
2008-08-28 08:37:11 +02:00
|
|
|
|
|
|
|
// typedef..
|
|
|
|
for ( TOKEN *tok = tokens; tok; tok = tok->next )
|
|
|
|
{
|
|
|
|
if (Match(tok, "typedef %type% %type% ;"))
|
|
|
|
{
|
|
|
|
const char *type1 = getstr(tok, 1);
|
|
|
|
const char *type2 = getstr(tok, 2);
|
|
|
|
for ( TOKEN *tok2 = tok; tok2; tok2 = tok2->next )
|
|
|
|
{
|
2008-09-11 20:37:36 +02:00
|
|
|
if (tok2->str!=type1 && tok2->str!=type2 && strcmp(tok2->str,type2)==0)
|
2008-08-28 08:37:11 +02:00
|
|
|
{
|
|
|
|
free(tok2->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
tok2->str = _strdup(type1);
|
2008-08-28 08:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (Match(tok, "typedef %type% %type% %type% ;"))
|
|
|
|
{
|
|
|
|
const char *type1 = getstr(tok, 1);
|
|
|
|
const char *type2 = getstr(tok, 2);
|
|
|
|
const char *type3 = getstr(tok, 3);
|
2008-10-19 08:21:01 +02:00
|
|
|
|
|
|
|
TOKEN *tok2 = tok;
|
|
|
|
while ( ! Match(tok2, ";") )
|
|
|
|
tok2 = tok2->next;
|
|
|
|
|
|
|
|
for ( ; tok2; tok2 = tok2->next )
|
2008-08-28 08:37:11 +02:00
|
|
|
{
|
|
|
|
if (tok2->str!=type3 && strcmp(tok2->str,type3)==0)
|
|
|
|
{
|
|
|
|
free(tok2->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
tok2->str = _strdup(type1);
|
2008-08-28 08:37:11 +02:00
|
|
|
|
|
|
|
TOKEN *newtok = new TOKEN;
|
2008-09-11 19:03:58 +02:00
|
|
|
newtok->str = _strdup(type2);
|
2008-08-28 08:37:11 +02:00
|
|
|
newtok->FileIndex = tok2->FileIndex;
|
|
|
|
newtok->linenr = tok2->linenr;
|
|
|
|
newtok->next = tok2->next;
|
|
|
|
tok2->next = newtok;
|
2008-10-19 08:21:01 +02:00
|
|
|
tok2 = newtok;
|
2008-08-28 08:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-05-29 08:24:36 +02:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
|
2007-05-29 08:24:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Simplify token list
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SimplifyTokenList()
|
|
|
|
{
|
2008-02-20 19:20:59 +01:00
|
|
|
|
|
|
|
// Remove the keyword 'unsigned'
|
|
|
|
for ( TOKEN *tok = tokens; tok; tok = tok->next )
|
|
|
|
{
|
|
|
|
if (tok->next && strcmp(tok->next->str,"unsigned")==0)
|
|
|
|
{
|
|
|
|
DeleteNextToken( tok );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
// Replace constants..
|
|
|
|
for (TOKEN *tok = tokens; tok; tok = tok->next)
|
|
|
|
{
|
2008-03-28 08:18:03 +01:00
|
|
|
if (Match(tok,"const %type% %var% = %num% ;"))
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
2007-05-28 08:17:18 +02:00
|
|
|
const char *sym = getstr(tok,2);
|
|
|
|
const char *num = getstr(tok,4);
|
|
|
|
|
2008-03-22 12:46:06 +01:00
|
|
|
for (TOKEN *tok2 = _gettok(tok,6); tok2; tok2 = tok2->next)
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
|
|
|
if (strcmp(tok2->str,sym) == 0)
|
|
|
|
{
|
|
|
|
free(tok2->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
tok2->str = _strdup(num);
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-05-25 08:50:16 +02:00
|
|
|
}
|
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
|
|
|
|
// Fill the map TypeSize..
|
|
|
|
TypeSize.clear();
|
|
|
|
TypeSize["char"] = sizeof(char);
|
|
|
|
TypeSize["short"] = sizeof(short);
|
|
|
|
TypeSize["int"] = sizeof(int);
|
|
|
|
TypeSize["long"] = sizeof(long);
|
|
|
|
TypeSize["float"] = sizeof(float);
|
|
|
|
TypeSize["double"] = sizeof(double);
|
2007-05-25 08:50:16 +02:00
|
|
|
for (TOKEN *tok = tokens; tok; tok = tok->next)
|
|
|
|
{
|
2008-03-28 08:18:03 +01:00
|
|
|
if (Match(tok,"class %var%"))
|
2007-05-28 08:17:18 +02:00
|
|
|
{
|
|
|
|
TypeSize[getstr(tok,1)] = 11;
|
|
|
|
}
|
2007-05-25 08:50:16 +02:00
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if (Match(tok, "struct %var%"))
|
2007-05-25 08:50:16 +02:00
|
|
|
{
|
2007-05-28 08:17:18 +02:00
|
|
|
TypeSize[getstr(tok,1)] = 13;
|
2007-05-25 08:50:16 +02:00
|
|
|
}
|
2007-05-28 08:17:18 +02:00
|
|
|
}
|
|
|
|
|
2007-05-25 08:50:16 +02:00
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
// Replace 'sizeof(type)'..
|
|
|
|
for (TOKEN *tok = tokens; tok; tok = tok->next)
|
|
|
|
{
|
|
|
|
if (strcmp(tok->str,"sizeof") != 0)
|
|
|
|
continue;
|
2007-05-25 08:50:16 +02:00
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
if (Match(tok, "sizeof ( %type% * )"))
|
2007-05-25 08:50:16 +02:00
|
|
|
{
|
|
|
|
free(tok->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
std::ostringstream str;
|
2007-05-28 08:17:18 +02:00
|
|
|
// 'sizeof(type *)' has the same size as 'sizeof(char *)'
|
2008-09-11 19:03:58 +02:00
|
|
|
str << sizeof(char *);
|
|
|
|
tok->str = _strdup( str.str().c_str() );
|
2007-05-24 07:40:45 +02:00
|
|
|
|
2007-05-25 08:50:16 +02:00
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
2007-05-28 08:17:18 +02:00
|
|
|
DeleteNextToken(tok);
|
2007-05-25 08:50:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if (Match(tok, "sizeof ( %type% )"))
|
2007-05-25 08:50:16 +02:00
|
|
|
{
|
|
|
|
const char *type = getstr(tok, 2);
|
2007-05-28 08:17:18 +02:00
|
|
|
int size = SizeOfType(type);
|
|
|
|
if (size > 0)
|
2007-05-25 08:50:16 +02:00
|
|
|
{
|
2007-05-28 08:17:18 +02:00
|
|
|
free(tok->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
std::ostringstream str;
|
|
|
|
str << size;
|
|
|
|
tok->str = _strdup( str.str().c_str() );
|
2007-05-28 08:17:18 +02:00
|
|
|
for (int i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
DeleteNextToken(tok);
|
|
|
|
}
|
2007-05-25 08:50:16 +02:00
|
|
|
}
|
|
|
|
}
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
2007-05-26 08:44:28 +02:00
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
// Replace 'sizeof(var)'
|
2007-05-26 08:44:28 +02:00
|
|
|
for (TOKEN *tok = tokens; tok; tok = tok->next)
|
|
|
|
{
|
2007-05-28 08:17:18 +02:00
|
|
|
// type array [ num ] ;
|
2008-03-28 08:18:03 +01:00
|
|
|
if ( ! Match(tok, "%type% %var% [ %num% ] ;") )
|
2007-05-26 08:44:28 +02:00
|
|
|
continue;
|
|
|
|
|
2007-05-28 08:17:18 +02:00
|
|
|
int size = SizeOfType(tok->str);
|
2007-05-26 08:44:28 +02:00
|
|
|
if (size <= 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const char *varname = getstr(tok, 1);
|
|
|
|
int total_size = size * atoi( getstr(tok, 3) );
|
|
|
|
|
|
|
|
// Replace 'sizeof(var)' with number
|
|
|
|
int indentlevel = 0;
|
2008-03-22 12:46:06 +01:00
|
|
|
for ( TOKEN *tok2 = _gettok(tok,5); tok2; tok2 = tok2->next )
|
2007-05-26 08:44:28 +02:00
|
|
|
{
|
|
|
|
if (tok2->str[0] == '{')
|
|
|
|
{
|
|
|
|
indentlevel++;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (tok2->str[0] == '}')
|
|
|
|
{
|
|
|
|
indentlevel--;
|
|
|
|
if (indentlevel < 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
// Todo: Match varname directly
|
|
|
|
else if (Match(tok2, "sizeof ( %var% )"))
|
2007-05-26 08:44:28 +02:00
|
|
|
{
|
|
|
|
if (strcmp(getstr(tok2,2), varname) == 0)
|
|
|
|
{
|
|
|
|
free(tok2->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
std::ostringstream str;
|
|
|
|
str << total_size;
|
|
|
|
tok2->str = _strdup(str.str().c_str());
|
2007-05-26 08:44:28 +02:00
|
|
|
// Delete the other tokens..
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
|
|
{
|
2007-05-28 08:17:18 +02:00
|
|
|
DeleteNextToken(tok2);
|
2007-05-26 08:44:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-29 08:24:36 +02:00
|
|
|
|
|
|
|
|
2007-05-26 08:44:28 +02:00
|
|
|
// Simple calculations..
|
|
|
|
|
|
|
|
bool done = false;
|
|
|
|
while (!done)
|
|
|
|
{
|
|
|
|
done = true;
|
|
|
|
|
|
|
|
for (TOKEN *tok = tokens; tok; tok = tok->next)
|
|
|
|
{
|
2008-03-28 08:18:03 +01:00
|
|
|
if (Match(tok->next, "* 1") || Match(tok->next, "1 *"))
|
2007-05-26 08:44:28 +02:00
|
|
|
{
|
2007-05-28 08:17:18 +02:00
|
|
|
for (int i = 0; i < 2; i++)
|
|
|
|
DeleteNextToken(tok);
|
2007-05-26 08:44:28 +02:00
|
|
|
done = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// (1-2)
|
|
|
|
if (strchr("[,(=<>",tok->str[0]) &&
|
|
|
|
IsNumber(getstr(tok,1)) &&
|
|
|
|
strchr("+-*/",*(getstr(tok,2))) &&
|
|
|
|
IsNumber(getstr(tok,3)) &&
|
|
|
|
strchr("],);=<>",*(getstr(tok,4))) )
|
|
|
|
{
|
|
|
|
int i1 = atoi(getstr(tok,1));
|
|
|
|
int i2 = atoi(getstr(tok,3));
|
2008-03-19 18:09:51 +01:00
|
|
|
if ( i2 == 0 && *(getstr(tok,2)) == '/' )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-05-26 08:44:28 +02:00
|
|
|
switch (*(getstr(tok,2)))
|
|
|
|
{
|
|
|
|
case '+': i1 += i2; break;
|
|
|
|
case '-': i1 -= i2; break;
|
|
|
|
case '*': i1 *= i2; break;
|
|
|
|
case '/': i1 /= i2; break;
|
|
|
|
}
|
|
|
|
tok = tok->next;
|
|
|
|
free(tok->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
std::ostringstream str;
|
|
|
|
str << i1;
|
|
|
|
tok->str = _strdup(str.str().c_str());
|
2007-05-26 08:44:28 +02:00
|
|
|
for (int i = 0; i < 2; i++)
|
|
|
|
{
|
2007-05-28 08:17:18 +02:00
|
|
|
DeleteNextToken(tok);
|
2007-05-26 08:44:28 +02:00
|
|
|
}
|
2008-03-22 12:46:06 +01:00
|
|
|
|
2008-03-19 18:09:51 +01:00
|
|
|
done = false;
|
2007-05-26 08:44:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-05-28 12:34:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Replace "*(str + num)" => "str[num]"
|
|
|
|
for (TOKEN *tok = tokens; tok; tok = tok->next)
|
|
|
|
{
|
|
|
|
if ( ! strchr(";{}(=<>", tok->str[0]) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
TOKEN *next = tok->next;
|
|
|
|
if ( ! next )
|
|
|
|
break;
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
if (Match(next, "* ( %var% + %num% )"))
|
2007-05-28 12:34:18 +02:00
|
|
|
{
|
|
|
|
const char *str[4] = {"var","[","num","]"};
|
|
|
|
str[0] = getstr(tok,3);
|
|
|
|
str[2] = getstr(tok,5);
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
tok = tok->next;
|
|
|
|
free(tok->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
tok->str = _strdup(str[i]);
|
2007-05-28 12:34:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DeleteNextToken(tok);
|
|
|
|
DeleteNextToken(tok);
|
|
|
|
}
|
|
|
|
}
|
2007-05-29 08:24:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Split up variable declarations if possible..
|
|
|
|
for (TOKEN *tok = tokens; tok; tok = tok->next)
|
|
|
|
{
|
|
|
|
if ( ! strchr("{};", tok->str[0]) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
TOKEN *type0 = tok->next;
|
2008-11-02 11:33:38 +01:00
|
|
|
if (!Match(type0, "%type%"))
|
|
|
|
continue;
|
|
|
|
if (Match(type0, "else") || Match(type0, "return"))
|
2007-06-02 18:32:07 +02:00
|
|
|
continue;
|
2007-05-29 08:24:36 +02:00
|
|
|
|
|
|
|
TOKEN *tok2 = NULL;
|
|
|
|
unsigned int typelen = 0;
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
if ( Match(type0, "%type% %var% ,") )
|
2007-05-29 08:24:36 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
tok2 = _gettok(type0, 2); // The ',' token
|
2007-05-29 08:24:36 +02:00
|
|
|
typelen = 1;
|
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if ( Match(type0, "%type% * %var% ,") )
|
2007-05-29 08:24:36 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
tok2 = _gettok(type0, 3); // The ',' token
|
2007-05-29 19:11:53 +02:00
|
|
|
typelen = 1;
|
2007-05-29 08:24:36 +02:00
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if ( Match(type0, "%type% %var% [ %num% ] ,") )
|
2007-05-29 08:24:36 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
tok2 = _gettok(type0, 5); // The ',' token
|
2007-05-29 08:24:36 +02:00
|
|
|
typelen = 1;
|
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if ( Match(type0, "%type% * %var% [ %num% ] ,") )
|
2007-05-29 08:24:36 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
tok2 = _gettok(type0, 6); // The ',' token
|
2007-05-29 19:11:53 +02:00
|
|
|
typelen = 1;
|
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if ( Match(type0, "struct %type% %var% ,") )
|
2007-05-29 19:11:53 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
tok2 = _gettok(type0, 3);
|
2007-05-29 19:11:53 +02:00
|
|
|
typelen = 2;
|
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if ( Match(type0, "struct %type% * %var% ,") )
|
2007-05-29 19:11:53 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
tok2 = _gettok(type0, 4);
|
2007-05-29 08:24:36 +02:00
|
|
|
typelen = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if ( Match(type0, "%type% %var% =") )
|
2007-05-29 08:24:36 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
tok2 = _gettok(type0, 2);
|
2007-05-29 08:24:36 +02:00
|
|
|
typelen = 1;
|
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if ( Match(type0, "%type% * %var% =") )
|
2007-05-29 08:24:36 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
tok2 = _gettok(type0, 3);
|
2007-05-29 19:11:53 +02:00
|
|
|
typelen = 1;
|
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if ( Match(type0, "struct %type% * %var% =") )
|
2007-05-29 19:11:53 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
tok2 = _gettok(type0, 4);
|
2007-05-29 08:24:36 +02:00
|
|
|
typelen = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tok2)
|
|
|
|
{
|
|
|
|
if (tok2->str[0] == ',')
|
|
|
|
{
|
|
|
|
free(tok2->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
tok2->str = _strdup(";");
|
2007-05-29 08:24:36 +02:00
|
|
|
InsertTokens(tok2, type0, typelen);
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TOKEN *eq = tok2;
|
|
|
|
|
|
|
|
int parlevel = 0;
|
|
|
|
while (tok2)
|
|
|
|
{
|
|
|
|
if ( strchr("{(", tok2->str[0]) )
|
|
|
|
{
|
|
|
|
parlevel++;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if ( strchr("})", tok2->str[0]) )
|
|
|
|
{
|
|
|
|
if (parlevel<0)
|
|
|
|
break;
|
|
|
|
parlevel--;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if ( parlevel==0 && strchr(";,",tok2->str[0]) )
|
|
|
|
{
|
|
|
|
// "type var =" => "type var; var ="
|
2008-03-22 12:46:06 +01:00
|
|
|
TOKEN *VarTok = _gettok(type0,typelen);
|
2007-05-29 19:11:53 +02:00
|
|
|
if (VarTok->str[0]=='*')
|
|
|
|
VarTok = VarTok->next;
|
|
|
|
InsertTokens(eq, VarTok, 2);
|
2007-05-29 08:24:36 +02:00
|
|
|
free(eq->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
eq->str = _strdup(";");
|
2007-05-29 08:24:36 +02:00
|
|
|
|
|
|
|
// "= x, " => "= x; type "
|
|
|
|
if (tok2->str[0] == ',')
|
|
|
|
{
|
|
|
|
free(tok2->str);
|
2008-09-11 19:03:58 +02:00
|
|
|
tok2->str = _strdup(";");
|
2007-05-29 08:24:36 +02:00
|
|
|
InsertTokens( tok2, type0, typelen );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
tok2 = tok2->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-05-24 07:40:45 +02:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-05-24 15:07:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-05-29 08:24:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-05-24 15:07:30 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Helper functions for handling the tokens list
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-03-22 12:46:06 +01:00
|
|
|
const TOKEN *findtoken(const TOKEN *tok1, const char *tokenstr[])
|
2007-05-24 15:07:30 +02:00
|
|
|
{
|
2008-03-22 12:46:06 +01:00
|
|
|
for (const TOKEN *ret = tok1; ret; ret = ret->next)
|
2007-05-24 15:07:30 +02:00
|
|
|
{
|
|
|
|
unsigned int i = 0;
|
2008-03-22 12:46:06 +01:00
|
|
|
const TOKEN *tok = ret;
|
2007-05-24 15:07:30 +02:00
|
|
|
while (tokenstr[i])
|
|
|
|
{
|
|
|
|
if (!tok)
|
|
|
|
return NULL;
|
|
|
|
if (*(tokenstr[i]) && strcmp(tokenstr[i],tok->str))
|
|
|
|
break;
|
|
|
|
tok = tok->next;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if (!tokenstr[i])
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-03-22 12:46:06 +01:00
|
|
|
const TOKEN *gettok(const TOKEN *tok, int index)
|
2007-05-24 15:07:30 +02:00
|
|
|
{
|
|
|
|
while (tok && index>0)
|
|
|
|
{
|
|
|
|
tok = tok->next;
|
|
|
|
index--;
|
|
|
|
}
|
|
|
|
return tok;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-03-22 12:46:06 +01:00
|
|
|
const char *getstr(const TOKEN *tok, int index)
|
2007-05-24 15:07:30 +02:00
|
|
|
{
|
|
|
|
tok = gettok(tok, index);
|
|
|
|
return tok ? tok->str : "";
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2007-05-29 08:24:36 +02:00
|
|
|
|
2007-05-29 19:11:53 +02:00
|
|
|
// Deallocate lists..
|
|
|
|
void DeallocateTokens()
|
|
|
|
{
|
|
|
|
while (tokens)
|
|
|
|
{
|
|
|
|
TOKEN *next = tokens->next;
|
|
|
|
free(tokens->str);
|
|
|
|
delete tokens;
|
|
|
|
tokens = next;
|
|
|
|
}
|
|
|
|
tokens_back = tokens;
|
|
|
|
|
|
|
|
while (dsymlist)
|
|
|
|
{
|
|
|
|
struct DefineSymbol *next = dsymlist->next;
|
|
|
|
free(dsymlist->name);
|
|
|
|
free(dsymlist->value);
|
|
|
|
delete dsymlist;
|
2008-08-12 08:40:55 +02:00
|
|
|
dsymlist = next;
|
2007-05-29 19:11:53 +02:00
|
|
|
}
|
|
|
|
}
|
2007-05-29 08:24:36 +02:00
|
|
|
|
|
|
|
|
2008-03-29 10:44:23 +01:00
|
|
|
|
|
|
|
|