Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(437)

Unified Diff: src/pkg/runtime/symtab.c

Issue 9223046: code review 9223046: cmd/5l, cmd/6l, cmd/8l, cmd/gc, runtime: generate and u... (Closed)
Patch Set: diff -r 81ccdb178fd7 https://code.google.com/p/go/ Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/runtime/runtime.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/runtime/symtab.c
===================================================================
--- a/src/pkg/runtime/symtab.c
+++ b/src/pkg/runtime/symtab.c
@@ -199,6 +199,7 @@
dofunc(Sym *sym)
{
Func *f;
+ uintgo cap;
switch(sym->symtype) {
case 't':
@@ -231,8 +232,24 @@
func[nfunc-1].locals = sym->value;
else if(runtime·strcmp(sym->name, (byte*)".args") == 0)
func[nfunc-1].args = sym->value;
- else {
- runtime·printf("invalid 'm' symbol named '%s'\n", sym->name);
+ else if(runtime·strcmp(sym->name, (byte*)".nptrs") == 0) {
+ // TODO(cshapiro): use a dense representation for gc information
+ if(sym->value > func[nfunc-1].args/sizeof(uintptr)) {
+ runtime·printf("more pointer map entries than argument words\n");
+ runtime·throw("mangled symbol table");
+ }
+ cap = ROUND(sym->value, 32) / 32;
+ func[nfunc-1].ptrs.array = runtime·mallocgc(cap*sizeof(uint32), FlagNoPointers|FlagNoGC, 0, 1);
+ func[nfunc-1].ptrs.len = 0;
+ func[nfunc-1].ptrs.cap = cap;
+ } else if(runtime·strcmp(sym->name, (byte*)".ptrs") == 0) {
+ if(func[nfunc-1].ptrs.len >= func[nfunc-1].ptrs.cap) {
+ runtime·printf("more pointer map entries read than argument words\n");
+ runtime·throw("mangled symbol table");
+ }
+ ((uint32*)func[nfunc-1].ptrs.array)[func[nfunc-1].ptrs.len++] = sym->value;
+ } else {
+ runtime·printf("invalid '%c' symbol named '%s'\n", (int8)sym->symtype, sym->name);
runtime·throw("mangled symbol table");
}
break;
« no previous file with comments | « src/pkg/runtime/runtime.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b