1
0
mirror of https://github.com/golang/go synced 2024-10-05 09:11:21 -06:00
go/src/cmd/7g
Russ Cox b115c35ee3 cmd/internal/gc: move cgen, regalloc, et al to portable code
This CL moves the bulk of the code that has been copy-and-pasted
since the initial 386 port back into a shared place, cutting 5 copies to 1.

The motivation here is not cleanup per se but instead to reduce the
cost of introducing changes in shared concepts like regalloc or general
expression evaluation. For example, a change after this one will
implement x.(*T) without a call into the runtime. This CL makes that
followup work 5x easier.

The single copy still has more special cases for architecture details
than I'd like, but having them called out explicitly like this at least
opens the door to generalizing the conditions and smoothing out
the distinctions in the future.

This is a LARGE CL. I started by trying to pull in one function at a time
in a sequence of CLs and it became clear that everything was so
interrelated that it had to be moved as a whole. Apologies for the size.

It is not clear how many more releases this code will matter for;
eventually it will be replaced by Keith's SSA work. But as noted above,
the deduplication was necessary to reduce the cost of working on
the current code while we have it.

Passes tests on amd64, 386, arm, and ppc64le.
Can build arm64 binaries but not tested there.
Being able to build binaries means it is probably very close.

Change-Id: I735977f04c0614f80215fb12966dfe9bbd1f5861
Reviewed-on: https://go-review.googlesource.com/7853
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2015-03-20 20:03:52 +00:00
..
cgen.go cmd/internal/gc: move cgen, regalloc, et al to portable code 2015-03-20 20:03:52 +00:00
galign.go cmd/internal/gc: move cgen, regalloc, et al to portable code 2015-03-20 20:03:52 +00:00
gg.go cmd/7g: add ARM64 Go compiler, based on 9g 2015-03-16 18:45:26 +00:00
ggen.go cmd/internal/gc: move cgen, regalloc, et al to portable code 2015-03-20 20:03:52 +00:00
gsubr.go cmd/internal/gc: move cgen, regalloc, et al to portable code 2015-03-20 20:03:52 +00:00
peep.go cmd/7g: add ARM64 Go compiler, based on 9g 2015-03-16 18:45:26 +00:00
prog.go cmd/internal/gc: cache ProgInfo in Prog 2015-03-20 04:48:35 +00:00
reg.go cmd/7g: add ARM64 Go compiler, based on 9g 2015-03-16 18:45:26 +00:00
util.go cmd/7g, cmd/7l, cmd/go: copy 9g/9l to 7g/7l, and build as tools 2015-03-10 18:52:12 +00:00