C bootstrap (phases 0-9):
cmd/wwc, cmd/6c, cmd/6a, cmd/6l, cmd/ww, rt, lib/*.
ww-side self-host (phase 10):
selfhost/cmd/wwc — ww-cgen frontend; bootstrap fixed point.
selfhost/cmd/6a — assembler; byte-identical to C 6a (test 991).
selfhost/cmd/6l — linker w/ archive (.a) support; byte-identical
to C 6l (test 992).
selfhost/cmd/ww — driver (build/run/version); byte-identical to
C ww (test 993).
make test: 15/15. make bootstrap: ww2.s == ww3.s, ww2.o == ww3.o,
ww2 == ww3 byte-identical, with the full ww-tooled chain.
28 lines
580 B
C
28 lines
580 B
C
/*
|
|
* sym.c — global symbol table for the linker. Plain singly-linked
|
|
* list; usually a few hundred entries, hashing isn't worth it yet.
|
|
*/
|
|
#include "l.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
Lsym *
|
|
l_intern(Lnk *l, const char *name)
|
|
{
|
|
for (Lsym *s = l->syms; s; s = s->next)
|
|
if (strcmp(s->name, name) == 0) return s;
|
|
Lsym *s = calloc(1, sizeof *s);
|
|
s->name = strdup(name);
|
|
s->next = l->syms;
|
|
l->syms = s;
|
|
return s;
|
|
}
|
|
|
|
Lsym *
|
|
l_lookup(Lnk *l, const char *name)
|
|
{
|
|
for (Lsym *s = l->syms; s; s = s->next)
|
|
if (strcmp(s->name, name) == 0) return s;
|
|
return NULL;
|
|
}
|