1
0
mirror of https://github.com/golang/go synced 2024-10-03 06:11:21 -06:00
go/src/pkg/runtime/windows
Russ Cox 19fd5c787f 5l, 6l, 8l: link pclntab and symtab as ordinary rodata symbols
That is, move the pc/ln table and the symbol table
into the read-only data segment.  This eliminates
the need for a special load command to map the
symbol table into memory, which makes the
information available on systems that couldn't handle
the magic load to 0x99000000, like NaCl and ARM QEMU
and Linux without config_highmem=y.  It also
eliminates an #ifdef and some clumsy code to
find the symbol table on Windows.

The bad news is that the binary appears to be bigger
than it used to be.  This is not actually the case, though:
the same amount of data is being mapped into memory
as before, and the tables are still read-only, so they're
still shared across multiple instances of the binary as
they were before.  The difference is just that the tables
aren't squirreled away in some section that "size" doesn't
know to look at.

This is a checkpoint.
It probably breaks Windows and breaks NaCl more
than it used to be broken, but those will be fixed.
The logic involving -s needs to be revisited too.

Fixes #871.

R=ken2
CC=golang-dev
https://golang.org/cl/2587041
2010-10-19 18:07:19 -04:00
..
386 runtime(windows): make sure scheduler runs on os stack and new stdcall implementation 2010-09-12 11:45:16 +10:00
defs.c rename GOOS=mingw to GOOS=windows 2010-04-29 23:45:14 -07:00
mem.c runtime: add mmap of null page just in case 2010-09-28 20:30:01 -04:00
os.h runtime(windows): make sure scheduler runs on os stack and new stdcall implementation 2010-09-12 11:45:16 +10:00
syscall.goc runtime(windows): make sure scheduler runs on os stack and new stdcall implementation 2010-09-12 11:45:16 +10:00
thread.c 5l, 6l, 8l: link pclntab and symtab as ordinary rodata symbols 2010-10-19 18:07:19 -04:00