mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
Teach SSA about the cmd/internal/obj/$ARCH register numbering. It can then return that numbering when requested. Each architecture now does not need to know anything about the internal SSA numbering of registers. Change-Id: I34472a2736227c15482e60994eebcdd2723fa52d Reviewed-on: https://go-review.googlesource.com/29249 Reviewed-by: David Chase <drchase@google.com>
28 lines
651 B
Go
28 lines
651 B
Go
// 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.
|
|
|
|
package arm
|
|
|
|
import (
|
|
"cmd/compile/internal/gc"
|
|
"cmd/compile/internal/ssa"
|
|
"cmd/internal/obj/arm"
|
|
)
|
|
|
|
func Main() {
|
|
gc.Thearch.LinkArch = &arm.Linkarm
|
|
gc.Thearch.REGSP = arm.REGSP
|
|
gc.Thearch.REGCTXT = arm.REGCTXT
|
|
gc.Thearch.MAXWIDTH = (1 << 32) - 1
|
|
|
|
gc.Thearch.Defframe = defframe
|
|
gc.Thearch.Proginfo = proginfo
|
|
|
|
gc.Thearch.SSAMarkMoves = func(s *gc.SSAGenState, b *ssa.Block) {}
|
|
gc.Thearch.SSAGenValue = ssaGenValue
|
|
gc.Thearch.SSAGenBlock = ssaGenBlock
|
|
|
|
gc.Main()
|
|
gc.Exit(0)
|
|
}
|