]> Cypherpunks.ru repositories - gostls13.git/blob - src/cmd/compile/internal/mips64/galign.go
fc0a34228c8f40bb70dd753aea0756777ed2f864
[gostls13.git] / src / cmd / compile / internal / mips64 / galign.go
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package mips64
6
7 import (
8         "cmd/compile/internal/ssa"
9         "cmd/compile/internal/ssagen"
10         "cmd/internal/obj/mips"
11         "cmd/internal/objabi"
12 )
13
14 func Init(arch *ssagen.ArchInfo) {
15         arch.LinkArch = &mips.Linkmips64
16         if objabi.GOARCH == "mips64le" {
17                 arch.LinkArch = &mips.Linkmips64le
18         }
19         arch.REGSP = mips.REGSP
20         arch.MAXWIDTH = 1 << 50
21         arch.SoftFloat = objabi.GOMIPS64 == "softfloat"
22         arch.ZeroRange = zerorange
23         arch.Ginsnop = ginsnop
24         arch.Ginsnopdefer = ginsnop
25
26         arch.SSAMarkMoves = func(s *ssagen.State, b *ssa.Block) {}
27         arch.SSAGenValue = ssaGenValue
28         arch.SSAGenBlock = ssaGenBlock
29 }