| // Copyright 2009 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| |
| #include "go.h" |
| #include "y.tab.h" |
| |
| void dumpsym(Sym*); |
| |
| void |
| addexportsym(Sym *s) |
| { |
| Dcl *d, *r; |
| |
| d = mal(sizeof(*d)); |
| d->dsym = s; |
| d->dnode = N; |
| d->lineno = lineno; |
| |
| r = exportlist; |
| d->back = r->back; |
| r->back->forw = d; |
| r->back = d; |
| } |
| |
| void |
| exportsym(Sym *s) |
| { |
| if(s == S) |
| return; |
| if(s->export != 0) { |
| if(s->export != 1) |
| yyerror("export/package mismatch: %S", s); |
| return; |
| } |
| s->export = 1; |
| |
| addexportsym(s); |
| } |
| |
| void |
| packagesym(Sym *s) |
| { |
| if(s == S) |
| return; |
| if(s->export != 0) { |
| if(s->export != 2) |
| yyerror("export/package mismatch: %S", s); |
| return; |
| } |
| s->export = 2; |
| |
| addexportsym(s); |
| } |
| |
| int |
| exportname(char *s) |
| { |
| Rune r; |
| |
| if((uchar)s[0] < Runeself) |
| return 'A' <= s[0] && s[0] <= 'Z'; |
| chartorune(&r, s); |
| return isupperrune(r); |
| } |
| |
| void |
| autoexport(Sym *s) |
| { |
| if(s == S) |
| return; |
| if(dclcontext != PEXTERN) |
| return; |
| if(exportname(s->name)) { |
| exportsym(s); |
| } else { |
| packagesym(s); |
| } |
| } |
| |
| void |
| dumpprereq(Type *t) |
| { |
| if(t == T) |
| return; |
| |
| if(t->printed || t == types[t->etype]) |
| return; |
| t->printed = 1; |
| |
| if(t->sym != S && t->etype != TFIELD) |
| dumpsym(t->sym); |
| dumpprereq(t->type); |
| dumpprereq(t->down); |
| } |
| |
| void |
| dumpexportconst(Sym *s) |
| { |
| Node *n; |
| Type *t; |
| |
| n = s->def; |
| if(n == N || n->op != OLITERAL) |
| fatal("dumpexportconst: oconst nil: %S", s); |
| |
| t = n->type; // may or may not be specified |
| if(t != T) |
| dumpprereq(t); |
| |
| Bprint(bout, "\t"); |
| Bprint(bout, "const %lS", s); |
| if(t != T && t->etype != TIDEAL) |
| Bprint(bout, " %#T", t); |
| Bprint(bout, " = "); |
| |
| switch(n->val.ctype) { |
| default: |
| fatal("dumpexportconst: unknown ctype: %S", s); |
| case CTINT: |
| Bprint(bout, "%B\n", n->val.u.xval); |
| break; |
| case CTBOOL: |
| if(n->val.u.bval) |
| Bprint(bout, "true\n"); |
| else |
| Bprint(bout, "false\n"); |
| break; |
| case CTFLT: |
| Bprint(bout, "%F\n", n->val.u.fval); |
| break; |
| case CTSTR: |
| Bprint(bout, "\"%Z\"\n", n->val.u.sval); |
| break; |
| } |
| } |
| |
| void |
| dumpexportvar(Sym *s) |
| { |
| Node *n; |
| Type *t; |
| |
| n = s->def; |
| if(n == N || n->type == T) { |
| yyerror("variable exported but not defined: %S", s); |
| return; |
| } |
| |
| t = n->type; |
| dumpprereq(t); |
| |
| Bprint(bout, "\t"); |
| if(t->etype == TFUNC && n->class == PFUNC) |
| Bprint(bout, "func %lS %#hhT", s, t); |
| else |
| Bprint(bout, "var %lS %#T", s, t); |
| Bprint(bout, "\n"); |
| } |
| |
| void |
| dumpexporttype(Sym *s) |
| { |
| Type *t; |
| |
| t = s->def->type; |
| dumpprereq(t); |
| Bprint(bout, "\t"); |
| switch (t->etype) { |
| case TFORW: |
| case TFORWSTRUCT: |
| case TFORWINTER: |
| yyerror("export of incomplete type %T", t); |
| return; |
| } |
| Bprint(bout, "type %#T %l#T\n", t, t); |
| } |
| |
| void |
| dumpsym(Sym *s) |
| { |
| Type *f, *t; |
| |
| if(s->exported != 0) |
| return; |
| s->exported = 1; |
| |
| if(s->def == N) { |
| yyerror("unknown export symbol: %S", s); |
| return; |
| } |
| switch(s->def->op) { |
| default: |
| yyerror("unexpected export symbol: %O %S", s->def->op, s); |
| break; |
| case OLITERAL: |
| dumpexportconst(s); |
| break; |
| case OTYPE: |
| t = s->def->type; |
| // TODO(rsc): sort methods by name |
| for(f=t->method; f!=T; f=f->down) |
| dumpprereq(f); |
| |
| dumpexporttype(s); |
| for(f=t->method; f!=T; f=f->down) |
| Bprint(bout, "\tfunc (%#T) %hS %#hhT\n", |
| f->type->type->type, f->sym, f->type); |
| break; |
| case ONAME: |
| dumpexportvar(s); |
| break; |
| } |
| } |
| |
| void |
| dumptype(Type *t) |
| { |
| // no need to re-dump type if already exported |
| if(t->printed) |
| return; |
| |
| // no need to dump type if it's not ours (was imported) |
| if(t->sym != S && t->sym->def == typenod(t) && !t->local) |
| return; |
| |
| Bprint(bout, "type %#T %l#T\n", t, t); |
| } |
| |
| void |
| dumpexport(void) |
| { |
| Dcl *d; |
| int32 lno; |
| |
| lno = lineno; |
| |
| Bprint(bout, " import\n"); |
| Bprint(bout, "\n$$ // exports\n"); |
| |
| Bprint(bout, " package %s\n", package); |
| |
| for(d=exportlist->forw; d!=D; d=d->forw) { |
| lineno = d->lineno; |
| dumpsym(d->dsym); |
| } |
| |
| Bprint(bout, "\n$$ // local types\n"); |
| |
| for(d=typelist->forw; d!=D; d=d->forw) { |
| lineno = d->lineno; |
| dumptype(d->dtype); |
| } |
| |
| Bprint(bout, "\n$$\n"); |
| |
| lineno = lno; |
| } |
| |
| /* |
| * import |
| */ |
| |
| /* |
| * return the sym for ss, which should match lexical |
| */ |
| Sym* |
| importsym(Sym *s, int op) |
| { |
| if(s->def != N && s->def->op != op) { |
| // Clumsy hack for |
| // package parser |
| // import "go/parser" // defines type parser |
| if(s == lookup(package)) |
| s->def = N; |
| else |
| yyerror("redeclaration of %lS during import", s, s->def->op, op); |
| } |
| if(exportname(s->name)) |
| s->export = 1; |
| else |
| s->export = 2; // package scope |
| s->imported = 1; |
| return s; |
| } |
| |
| /* |
| * return the type pkg.name, forward declaring if needed |
| */ |
| Type* |
| pkgtype(Sym *s) |
| { |
| Type *t; |
| |
| importsym(s, OTYPE); |
| if(s->def == N || s->def->op != OTYPE) { |
| t = typ(TFORW); |
| t->sym = s; |
| s->def = typenod(t); |
| } |
| return s->def->type; |
| } |
| |
| static int |
| mypackage(Sym *s) |
| { |
| // we import all definitions for sys. |
| // lowercase ones can only be used by the compiler. |
| return strcmp(s->package, package) == 0 |
| || strcmp(s->package, "sys") == 0; |
| } |
| |
| void |
| importconst(Sym *s, Type *t, Node *n) |
| { |
| if(!exportname(s->name) && !mypackage(s)) |
| return; |
| importsym(s, OLITERAL); |
| convlit(n, t); |
| if(s->def != N) { |
| // TODO: check if already the same. |
| return; |
| } |
| |
| dodclconst(newname(s), n); |
| |
| if(debug['E']) |
| print("import const %S\n", s); |
| } |
| |
| void |
| importvar(Sym *s, Type *t, int ctxt) |
| { |
| if(!exportname(s->name) && !mypackage(s)) |
| return; |
| |
| importsym(s, ONAME); |
| if(s->def != N && s->def->op == ONAME) { |
| if(cvttype(t, s->def->type)) |
| return; |
| warn("redeclare import var %S from %T to %T", |
| s, s->def->type, t); |
| } |
| checkwidth(t); |
| addvar(newname(s), t, ctxt); |
| |
| if(debug['E']) |
| print("import var %S %lT\n", s, t); |
| } |
| |
| void |
| importtype(Sym *s, Type *t) |
| { |
| Node *n; |
| Type *tt; |
| |
| importsym(s, OTYPE); |
| n = s->def; |
| if(n != N && n->op == OTYPE) { |
| if(cvttype(t, n->type)) |
| return; |
| if(n->type->etype != TFORW) { |
| warn("redeclare import type %S from %lT to %lT", |
| s, n->type, t); |
| n = s->def = typenod(typ(0)); |
| } |
| } |
| if(n == N || n->op != OTYPE) { |
| tt = typ(0); |
| tt->sym = s; |
| n = typenod(tt); |
| s->def = n; |
| } |
| if(n->type == T) |
| n->type = typ(0); |
| *n->type = *t; |
| n->type->sym = s; |
| n->type->nod = n; |
| checkwidth(n->type); |
| |
| if(debug['E']) |
| print("import type %S %lT\n", s, t); |
| } |
| |
| void |
| importmethod(Sym *s, Type *t) |
| { |
| checkwidth(t); |
| addmethod(newname(s), t, 0); |
| } |
| |
| /* |
| * ******* import ******* |
| */ |
| |
| void |
| checkimports(void) |
| { |
| Sym *s; |
| Type *t, *t1; |
| uint32 h; |
| int et; |
| |
| return; |
| |
| for(h=0; h<NHASH; h++) |
| for(s = hash[h]; s != S; s = s->link) { |
| if(s->def == N || s->def->op != OTYPE) |
| continue; |
| t = s->def->type; |
| if(t == T) |
| continue; |
| |
| et = t->etype; |
| switch(t->etype) { |
| case TFORW: |
| print("ci-1: %S %lT\n", s, t); |
| break; |
| |
| case TPTR32: |
| case TPTR64: |
| if(t->type == T) { |
| print("ci-2: %S %lT\n", s, t); |
| break; |
| } |
| |
| t1 = t->type; |
| if(t1 == T) { |
| print("ci-3: %S %lT\n", s, t1); |
| break; |
| } |
| |
| et = t1->etype; |
| if(et == TFORW) { |
| print("%L: ci-4: %S %lT\n", lineno, s, t); |
| break; |
| } |
| break; |
| } |
| } |
| } |
| |