2010-03-13 00:41:39 +00:00
|
|
|
/* MSPDebug - debugging tool for the eZ430
|
|
|
|
* Copyright (C) 2009, 2010 Daniel Beer
|
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2010-05-15 03:13:58 +00:00
|
|
|
#include "symmap.h"
|
2010-03-13 00:41:39 +00:00
|
|
|
|
|
|
|
int symmap_check(FILE *in)
|
|
|
|
{
|
|
|
|
char buf[128];
|
|
|
|
int i;
|
|
|
|
int spc_count = 0;
|
|
|
|
|
|
|
|
rewind(in);
|
|
|
|
if (!fgets(buf, sizeof(buf), in))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; buf[i]; i++) {
|
|
|
|
if (buf[i] == '\r' || buf[i] == '\n')
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (buf[i] < 32 || buf[i] > 126)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (isspace(buf[i]))
|
|
|
|
spc_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return spc_count >= 2;
|
|
|
|
}
|
|
|
|
|
2011-03-15 02:20:50 +00:00
|
|
|
int symmap_syms(FILE *in)
|
2010-03-13 00:41:39 +00:00
|
|
|
{
|
|
|
|
rewind(in);
|
|
|
|
char buf[128];
|
|
|
|
|
|
|
|
while (fgets(buf, sizeof(buf), in)) {
|
|
|
|
char *addr = strtok(buf, " \t\r\n");
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
strtok(NULL, " \t\r\n");
|
|
|
|
name = strtok(NULL, " \t\r\n");
|
|
|
|
|
|
|
|
if (addr && name) {
|
2010-08-05 04:12:35 +00:00
|
|
|
address_t addr_val = strtoul(addr, NULL, 16);
|
2010-03-13 00:41:39 +00:00
|
|
|
|
2011-03-15 02:20:50 +00:00
|
|
|
if (stab_set(name, addr_val) < 0)
|
2010-03-13 00:41:39 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|