scan.c 4.44 KB
Newer Older
1
/* Utility functions for scan-decls and fix-header programs.
Kazu Hirata committed
2
   Copyright (C) 1993, 1994, 1998, 2002 Free Software Foundation, Inc.
Per Bothner committed
3 4 5 6 7 8 9 10 11 12 13 14 15

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, 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
Richard Kenner committed
16
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
Per Bothner committed
17

18
#include "bconfig.h"
19
#include "system.h"
20 21
#include "coretypes.h"
#include "tm.h"
22
#include "scan.h"
Per Bothner committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

int lineno = 1;
int source_lineno = 1;
sstring source_filename;

void
make_sstring_space (str, count)
     sstring *str;
     int count;
{
  int cur_pos = str->ptr - str->base;
  int cur_size = str->limit - str->base;
  int new_size = cur_pos + count + 100;

  if (new_size <= cur_size)
    return;
Kazu Hirata committed
39

40
  str->base = xrealloc (str->base, new_size);
Per Bothner committed
41 42 43 44 45 46 47 48 49
  str->ptr = str->base + cur_size;
  str->limit = str->base + new_size;
}

void
sstring_append (dst, src)
     sstring *dst;
     sstring *src;
{
50
  char *d, *s;
Kazu Hirata committed
51
  int count = SSTRING_LENGTH (src);
52

Kazu Hirata committed
53
  MAKE_SSTRING_SPACE (dst, count + 1);
Per Bothner committed
54 55 56 57
  d = dst->ptr;
  s = src->base;
  while (--count >= 0) *d++ = *s++;
  dst->ptr = d;
Kazu Hirata committed
58
  *d = 0;
Per Bothner committed
59 60 61 62
}

int
scan_ident (fp, s, c)
63 64
     FILE *fp;
     sstring *s;
Per Bothner committed
65 66 67
     int c;
{
  s->ptr = s->base;
Kazu Hirata committed
68
  if (ISIDST (c))
Per Bothner committed
69 70 71
    {
      for (;;)
	{
Kazu Hirata committed
72
	  SSTRING_PUT (s, c);
Per Bothner committed
73
	  c = getc (fp);
Kazu Hirata committed
74
	  if (c == EOF || ! ISIDNUM (c))
Per Bothner committed
75 76 77
	    break;
	}
    }
Kazu Hirata committed
78
  MAKE_SSTRING_SPACE (s, 1);
Per Bothner committed
79 80 81 82
  *s->ptr = 0;
  return c;
}

83 84
int
scan_string (fp, s, init)
85 86
     FILE *fp;
     sstring *s;
87
     int init;
Per Bothner committed
88 89
{
  int c;
90

Per Bothner committed
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
  for (;;)
    {
      c = getc (fp);
      if (c == EOF || c == '\n')
	break;
      if (c == init)
	{
	  c = getc (fp);
	  break;
	}
      if (c == '\\')
	{
	  c = getc (fp);
	  if (c == EOF)
	    break;
	  if (c == '\n')
	    continue;
	}
Kazu Hirata committed
109
      SSTRING_PUT (s, c);
Per Bothner committed
110
    }
Kazu Hirata committed
111
  MAKE_SSTRING_SPACE (s, 1);
Per Bothner committed
112 113 114 115
  *s->ptr = 0;
  return c;
}

Mike Stump committed
116
/* Skip horizontal white spaces (spaces, tabs, and C-style comments).  */
Per Bothner committed
117

118 119
int
skip_spaces (fp, c)
120
     FILE *fp;
Per Bothner committed
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
     int c;
{
  for (;;)
    {
      if (c == ' ' || c == '\t')
	c = getc (fp);
      else if (c == '/')
	{
	  c = getc (fp);
	  if (c != '*')
	    {
	      ungetc (c, fp);
	      return '/';
	    }
	  c = getc (fp);
	  for (;;)
	    {
	      if (c == EOF)
		return EOF;
	      else if (c != '*')
		{
		  if (c == '\n')
		    source_lineno++, lineno++;
		  c = getc (fp);
		}
	      else if ((c = getc (fp)) == '/')
		return getc (fp);
	    }
	}
      else
	break;
    }
  return c;
}

int
read_upto (fp, str, delim)
     FILE *fp;
     sstring *str;
     int delim;
{
  int ch;
163

Per Bothner committed
164 165 166 167 168
  for (;;)
    {
      ch = getc (fp);
      if (ch == EOF || ch == delim)
	break;
Kazu Hirata committed
169
      SSTRING_PUT (str, ch);
Per Bothner committed
170
    }
Kazu Hirata committed
171
  MAKE_SSTRING_SPACE (str, 1);
Per Bothner committed
172 173 174 175 176 177
  *str->ptr = 0;
  return ch;
}

int
get_token (fp, s)
178 179
     FILE *fp;
     sstring *s;
Per Bothner committed
180 181
{
  int c;
182

Per Bothner committed
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
  s->ptr = s->base;
 retry:
  c = ' ';
  c = skip_spaces (fp, c);
  if (c == '\n')
    {
      source_lineno++;
      lineno++;
      goto retry;
    }
  if (c == '#')
    {
      c = get_token (fp, s);
      if (c == INT_TOKEN)
	{
Per Bothner committed
198
	  source_lineno = atoi (s->base) - 1; /* '\n' will add 1 */
Per Bothner committed
199 200 201 202 203 204 205 206
	  get_token (fp, &source_filename);
	}
      for (;;)
	{
	  c = getc (fp);
	  if (c == EOF)
	    return EOF;
	  if (c == '\n')
Per Bothner committed
207 208 209
	    {
	    source_lineno++;
	    lineno++;
Per Bothner committed
210
	    goto retry;
Per Bothner committed
211
	    }
Per Bothner committed
212 213 214 215
	}
    }
  if (c == EOF)
    return EOF;
216
  if (ISDIGIT (c))
Per Bothner committed
217 218 219
    {
      do
	{
Kazu Hirata committed
220
	  SSTRING_PUT (s, c);
Per Bothner committed
221
	  c = getc (fp);
Kazu Hirata committed
222
	} while (c != EOF && ISDIGIT (c));
Per Bothner committed
223 224 225 226
      ungetc (c, fp);
      c = INT_TOKEN;
      goto done;
    }
227
  if (ISIDST (c))
Per Bothner committed
228 229 230 231 232 233 234 235 236 237 238
    {
      c = scan_ident (fp, s, c);
      ungetc (c, fp);
      return IDENTIFIER_TOKEN;
    }
  if (c == '\'' || c == '"')
    {
      c = scan_string (fp, s, c);
      ungetc (c, fp);
      return c == '\'' ? CHAR_TOKEN : STRING_TOKEN;
    }
Kazu Hirata committed
239
  SSTRING_PUT (s, c);
Per Bothner committed
240
 done:
Kazu Hirata committed
241
  MAKE_SSTRING_SPACE (s, 1);
Per Bothner committed
242 243 244
  *s->ptr = 0;
  return c;
}
245 246 247 248 249 250 251 252

unsigned int
hashstr (str, len)
     const char *str;
     unsigned int len;
{
  unsigned int n = len;
  unsigned int r = 0;
Kazu Hirata committed
253
  const unsigned char *s = (const unsigned char *) str;
254 255 256 257 258 259

  do
    r = r * 67 + (*s++ - 113);
  while (--n);
  return r + len;
}