symexpr.c
12.9 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
/*
* Copyright (C) 1996-1998 by the Board of Trustees
* of Leland Stanford Junior University.
*
* This file is part of the SimOS distribution.
* See LICENSE file for terms of the license.
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include "cpu_interface.h"
#include "symbols.h"
#include "symfile.h"
#include "symexpr.h"
#include "sim_error.h"
/* CFL:
*
* top = exec:src:expr | exec:src:int
* expr = *expr | &expr | (typecast) int | term
* term = term.string | term->string | term[ int ] | term < int > | atom
* atom = (expr) | string
*/
#define MAX_STR_LEN 256
#define BUFFER_SIZE 64
int SymParseExpr(ParseInfo *pip);
int SymParseTerm(ParseInfo *pip);
int SymParseAtom(ParseInfo *pip);
int SymParseField(ParseInfo *pip);
int SymDeref(ParseInfo *pip);
int SymParseTypeCast(ParseInfo *pip);
char *SymParseString(ParseInfo *pip);
int SymParseInt(char **str, Reg *val);
static char ename[MAX_STR_LEN];
static char fname[MAX_STR_LEN];
int SymParse(char *symexpr, ParseInfo *pip)
{
int offset;
char *str = symexpr;
int line;
if (sscanf(str, "%[^:]%n", ename, &offset) != 1) {
ename[0] = '\0';
} else {
str += offset;
}
if (*str++ != ':') {
SymReportError("syntax error parsing execname", NULL);
return SYM_ERROR;
}
if (sscanf(str, "%[^:]%n", fname, &offset) != 1) {
fname[0] = '\0';
} else {
str += offset;
}
if (*str++ != ':') {
SymReportError("syntax error parsing source file name", NULL);
return SYM_ERROR;
}
if (isdigit(*str)) {
/* must be a line number */
if (sscanf(str, "%i%n", &line, &offset) != 1) {
SymReportError("expected a line number, got \"", str, "\"", NULL);
return SYM_ERROR;
}
if ((str[0] == '0') && (str[1] == '\0')) {
ASSERT(line == 0);
ASSERT(offset == 2);
/* WAR bug in scanf */
offset = 1;
}
str += offset;
if (SymLine2Addr(ename, fname, line, &(pip->sym)) != SYM_OK) {
return SYM_ERROR;
}
pip->value = SymValue(&(pip->sym));
pip->constant = 1;
} else {
pip->execname = ename;
pip->srcfile = fname;
pip->str = str;
pip->internal = (!strcmp(ename, "SIMOS"));
#ifdef __alpha
if (pip->internal) {
return SYM_ERROR;
}
#endif
if (SymParseExpr(pip) != SYM_OK) {
return SYM_ERROR;
}
str = pip->str;
}
if (*str != '\0') {
SymReportError("extra characters at end of expression\"", str, "\"", NULL);
return SYM_ERROR;
}
return SYM_OK;
}
int SymParseExpr(ParseInfo *pip)
{
int code;
if (pip->str[0] == '*') {
pip->str++;
if ((code = SymParseExpr(pip)) != SYM_OK) {
return code;
}
if ((code = SymDeref(pip)) != SYM_OK) {
return code;
}
} else if (pip->str[0] == '&') {
pip->str++;
if ((code = SymParseExpr(pip)) != SYM_OK) {
return code;
}
if (pip->constant) {
SymReportError("cannot take address of address", NULL);
return SYM_ERROR;
}
SymMakeAddr(&pip->sym);
pip->constant = 1;
} else if (pip->str[0] == '(') {
/*
* OK here is the problem. This could be either a type cast or a
* sub-expression. The way to figure this out is to read to the
* matching end paren and see if the next token is anything but a
* ".", "->", or a "[". We will just let SymParseTypeCast figure
* it all out.
*/
return SymParseTypeCast(pip);
} else {
return SymParseTerm(pip);
}
return SYM_OK;
}
int SymParseTerm(ParseInfo *pip)
{
int code;
if ((code = SymParseAtom(pip)) != SYM_OK) {
return code;
}
while (1) {
if (pip->str[0] == '.') {
pip->str++;
if ((code = SymParseField(pip)) != SYM_OK) {
return code;
}
} else if ((pip->str[0] == '-') && (pip->str[1] == '>')) {
pip->str += 2;
if ((code = SymDeref(pip)) != SYM_OK) {
return code;
}
if ((code = SymParseField(pip)) != SYM_OK) {
return code;
}
} else if ((pip->str[0] == '[') || (pip->str[0] == '<')) {
Reg val;
pip->str++;
if ((code = SymDeref(pip)) != SYM_OK) {
return code;
}
if ((code = SymParseInt(&(pip->str), &val)) != SYM_OK) {
return code;
}
if ((pip->str[0] != ']') && (pip->str[0] != '>')) {
SymReportError("\"]\" or \">\" expected", NULL);
return SYM_ERROR;
}
pip->str++;
pip->value += val * SymSize(&(pip->sym));
} else if (pip->str[0] == ':') {
char *symb;
pip->str++;
if (SymType(&(pip->sym), SYM_RESOLVE) != tProc) {
SymReportError("can't use \":\" operator on non-procedure", NULL);
return SYM_ERROR;
}
if (!(symb = SymParseString(pip))) {
return SYM_ERROR;
}
if (!strcmp(symb, "START")) {
} else if (!strcmp(symb, "STARTOPT")) {
pip->value += 12;
} else if (!strcmp(symb, "END")) {
pip->value += SymSize(&(pip->sym)) - 4;
} else if (SymFind(&(pip->sym), symb, 0) == SYM_OK) {
if (SymType(&(pip->sym), SYM_RESOLVE) != tLabel) {
SymReportError("symbol is not a label", NULL);
return SYM_ERROR;
}
pip->value = SymValue(&(pip->sym));
} else {
SymReportError("No such label in procedure", NULL);
return SYM_ERROR;
}
return SYM_OK;
} else {
return SYM_OK;
}
}
return SYM_OK;
}
int SymParseAtom(ParseInfo *pip)
{
int code;
int st;
if (pip->str[0] == '(') {
pip->str++;
if ((code = SymParseExpr(pip)) != SYM_OK) {
return code;
}
if (pip->str[0] != ')') {
SymReportError("\")\" expected", NULL);
return SYM_ERROR;
}
pip->str++;
} else if (isalpha(pip->str[0]) || (pip->str[0] == '_')) {
char *symb;
if (!(symb = SymParseString(pip))) {
return SYM_ERROR;
}
#ifdef DWARF2
if (Dwarf_SymLookup(pip->execname, pip->srcfile, symb, 0, &(pip->sym)) != SYM_OK) {
return SYM_ERROR;
}
#else
if (SymLookup(pip->execname, pip->srcfile, symb, 0, &(pip->sym)) != SYM_OK) {
return SYM_ERROR;
}
#endif
st = SymType(&(pip->sym), SYM_RESOLVE);
if ((st == tProc) || (st == tArray) || (st == tLabel)) {
pip->constant = 1;
} else {
pip->constant = 0;
}
pip->value = SymValue(&(pip->sym));
} else {
SymReportError("syntax error, expected \".\" or \"->\"", NULL);
return SYM_ERROR;
}
return SYM_OK;
}
int SymParseField(ParseInfo *pip)
{
char *symb;
int st;
st = SymType(&(pip->sym), SYM_RESOLVE);
if ((st != tStruct) && (st != tUnion)) {
SymReportError("expected a structure", NULL);
return SYM_ERROR;
}
ASSERT(!pip->constant);
if (SymSubtype(&(pip->sym), SYM_RESOLVE) != SYM_OK) {
return SYM_ERROR;
}
st = SymType(&(pip->sym), SYM_RESOLVE);
if ((st != tStructDef) && (st != tUnionDef)) {
ASSERT(0);
return SYM_ERROR;
}
if (!(symb = SymParseString(pip))) {
return SYM_ERROR;
}
if (SymFind(&(pip->sym), symb, 0) != SYM_OK) {
return SYM_ERROR;
}
st = SymType(&(pip->sym), SYM_RESOLVE);
if (st == tArray) {
pip->constant = 1;
} else {
ASSERT(st != tProc);
}
/* it seems all fields are in bit width */
ASSERT(!(SymValue(&(pip->sym)) % 8));
pip->value += SymValue(&(pip->sym)) / 8;
return SYM_OK;
}
int SymDeref(ParseInfo *pip)
{
Reg_s value = 0;
int st;
st = SymType(&(pip->sym), SYM_RESOLVE);
if (st == tPtr) {
if (pip->constant) {
pip->constant = 0;
} else if (pip->internal) {
/*
* XXX chances are that this is broken
* XXX for some configurations
*/
#ifdef __alpha
ASSERT (0);
#else
pip->value = *(Reg_s*)pip->value;
#endif
} else {
if (CPUVec.GetMemory(CPUVec.CurrentCpuNum(), pip->value,
sizeof(value), (char *)&value) != SUCCESS) {
SymReportError("addr not mapped", NULL);
return SYM_ERROR;
}
pip->value = BE2HO_4(value);
}
} else if ((st == tAddr) || (st == tArray)) {
ASSERT(pip->constant);
pip->constant = 0;
} else {
SymReportError("array or pointer expected", NULL);
return SYM_ERROR;
}
ASSERT(!pip->constant);
if (SymSubtype(&(pip->sym), SYM_RESOLVE) != SYM_OK) {
return SYM_ERROR;
}
st = SymType(&(pip->sym), SYM_RESOLVE);
if (st == tArray) {
pip->constant = 1;
} else {
ASSERT(st != tProc);
}
return SYM_OK;
}
/*
* Type cast
*/
static char *btNames[] = {
"char",
"uchar",
"short",
"ushort",
"int",
"uint",
"long",
"ulong",
"float",
"double",
"struct",
"union",
"enum"
};
static int btTypes[] = {
tChar,
tUChar,
tShort,
tUShort,
tInt,
tUInt,
tLong,
tULong,
tFloat,
tDouble,
tStruct,
tUnion,
tEnum
};
#define NUM_BTS (sizeof(btNames)/sizeof(char*))
int SymParseTypeCast(ParseInfo *pip)
{
char *str;
char *name = "";
char *scan;
int level, i;
int types[6];
int nextt;
int bt;
ASSERT(pip->str[0] == '(');
/* check if it is a typecast */
for (level=1, scan=pip->str+1; level && *scan; scan++) {
if (*scan == '(') {
level++;
} else if (*scan == ')') {
level--;
}
}
if ((*scan == '.') || (*scan == '[')
|| (*scan == '<') || (*scan == ')') || (*scan == '\0')
|| ((*scan == '-') && (*(scan+1) == '>'))) {
/* not a typecast - oh well just parse it as a term */
return SymParseTerm(pip);
}
/* its a type cast */
pip->str++;
nextt = 0;
str = SymParseString(pip);
bt = -1;
for (i=0; i<NUM_BTS; i++) {
if (!strcmp(str, btNames[i])) {
bt = btTypes[i];
break;
}
}
if (i == NUM_BTS) {
name = str;
bt = tTypedef;
} else if ((bt == tStruct)
|| (bt == tUnion)
|| (bt == tEnum)) {
while (*pip->str == ' ') {
pip->str++;
}
name = SymParseString(pip);
} else {
name = "";
}
while (1) {
while (*pip->str == ' ') {
pip->str++;
}
if (pip->str[0] == '*') {
types[nextt++] = tPtr;
pip->str++;
} else {
break;
}
}
types[nextt++] = bt;
types[nextt++] = tNil;
if ((types[0] != tPtr) && !((types[0] >= tChar) && (types[0] <= tDouble))) {
SymReportError("Can only cast to pointer or basic type", NULL);
return SYM_ERROR;
}
if (pip->str[0] != ')') {
SymReportError("Syntax error in type cast", NULL);
return SYM_ERROR;
}
pip->str++;
if (SymParseInt(&(pip->str), &(pip->value)) == SYM_OK) {
pip->constant = 1;
} else {
SymReportError("Only type casting hard coded constants suported so far. Sorry.",
NULL);
return SYM_ERROR;
#ifdef notdef
/* XXX fix */
if ((code = SymParseExpr(pip)) != SYM_OK) {
return code;
}
pip->constant = 0;
#endif
}
#ifdef DWARF2_not
if (Dwarf_SymTypeCast(pip->execname, pip->srcfile, types, name, &(pip->sym)) != SYM_OK) {
return SYM_ERROR;
}
#else
if (SymTypeCast(pip->execname, pip->srcfile, types, name, &(pip->sym)) != SYM_OK) {
return SYM_ERROR;
}
#endif
return SYM_OK;
}
int SymParseInt(char **str, Reg *val)
{
int offset;
while (**str == ' ') {
(*str)++;
}
if (isdigit(**str)) {
int i;
uint64 val64=0;
#ifdef __alpha
i = sscanf(*str, "%li%n", &val64, &offset);
#else
i = sscanf(*str, "%lli%n", &val64, &offset);
#endif
*val = val64;
if (i != 1) {
return SYM_ERROR;
}
*str += offset;
while (**str == ' ') {
(*str)++;
}
} else {
SymReportError("expected an int, got \"", str, "\"", NULL);
return SYM_ERROR;
}
return SYM_OK;
}
char *SymParseString(ParseInfo *pip)
{
static char buf[BUFFER_SIZE];
char *dst = buf;
while (isalnum(*(pip->str)) || (*(pip->str) == '_')) {
if ((dst - buf) == (BUFFER_SIZE-1)) {
SymReportError("symbol overflowed internal buffers (internal error)", NULL);
return NULL;
}
*dst++ = *(pip->str)++;
}
*dst = '\0';
if (!buf[0]) {
SymReportError("expected a string", NULL);
}
return buf;
}