mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: remove amd64 code from package gc and the core gen tool
Parts of the SSA compiler in package gc contain amd64-specific code, most notably Prog generation. Move this code into package amd64, so that other architectures can be added more easily. In package gc, this change is just moving code. There are no functional changes or even any larger structural changes beyond changing function names (mostly for export). In the cmd/compile/internal/ssa/gen tool, more information is included in arch to remove the AMD64-specific behavior in the main portion of the tool. The generated opGen.go is identical. Change-Id: I8eb37c6e6df6de1b65fa7dab6f3bc32c29daf643 Reviewed-on: https://go-review.googlesource.com/20609 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
b1a6e07919
commit
a4e31d42ee
10 changed files with 1319 additions and 1251 deletions
|
|
@ -868,10 +868,10 @@ func gen(n *Node) {
|
|||
Cgen_checknil(n.Left)
|
||||
|
||||
case OVARKILL:
|
||||
gvarkill(n.Left)
|
||||
Gvarkill(n.Left)
|
||||
|
||||
case OVARLIVE:
|
||||
gvarlive(n.Left)
|
||||
Gvarlive(n.Left)
|
||||
}
|
||||
|
||||
ret:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue