aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/mips/galign.go
blob: 39f5d2bf641516d92cb81a26cd77cb6af70680f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2016 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 mips

import (
	"cmd/compile/internal/gc"
	"cmd/compile/internal/ssa"
	"cmd/internal/obj"
	"cmd/internal/obj/mips"
)

func Init() {
	gc.Thearch.LinkArch = &mips.Linkmips
	if obj.GOARCH == "mipsle" {
		gc.Thearch.LinkArch = &mips.Linkmipsle
	}
	gc.Thearch.REGSP = mips.REGSP
	gc.Thearch.MAXWIDTH = (1 << 31) - 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
}