1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
#include <qintdict.h>
#include <stdio.h>
#include <qstringlist.h>
#include <qstrlist.h>
#include <qtextstream.h>
#include <qsortedlist.h>
#include <qfile.h>
#include <qtl.h>
#include <qvaluelist.h>
#include <stdlib.h>
#include <ktempfile.h>
#include <kinstance.h>
#include <kstandarddirs.h>
#include <kcmdlineargs.h>
int main(int argc, char **argv)
{
char buf[1024];
if (argc != 3)
{
fprintf(stderr, "Usage: kmmatch <map-file> <call-file>\n");
fprintf(stderr, "\n<map-file> is a file as output by 'nm'.\n");
fprintf(stderr, "<call-file> is a file that contains symbols, e.g. a list of all\n"
"function calls made by a program.\n");
fprintf(stderr, "The program will print all symbols from <call-file> that are present\n"
"in <map-file>, in the same order as they appear in <call-file>.\n");
return 1;
}
int i = 1;
QDict<int> dict(20011);
FILE *map_file = fopen(argv[1], "r");
if (!map_file)
{
fprintf(stderr, "Error opening '%s'\n", argv[1]);
return 1;
}
while(!feof(map_file))
{
fgets(buf, 1024, map_file);
QString line = QString::fromLatin1(buf).stripWhiteSpace();
QStringList split = QStringList::split(' ', line);
if (split.count() <= 1)
return 1;
if (split[1] == "T")
{
dict.insert(split[2], &i);
}
}
fclose(map_file);
FILE *call_file = fopen(argv[2], "r");
if (!call_file)
{
fprintf(stderr, "Error opening '%s'\n", argv[2]);
return 1;
}
while(!feof(call_file))
{
fgets(buf, 1024, call_file);
QString line = QString::fromLatin1(buf).stripWhiteSpace();
if (dict.find(line))
{
qWarning("%s", line.latin1());
}
}
fclose(call_file);
return 0;
}
|