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 5package mips64 6 7import ( 8 "cmd/compile/internal/ssa" 9 "cmd/compile/internal/ssagen" 10 "cmd/internal/obj/mips" 11 "internal/buildcfg" 12) 13 14func Init(arch *ssagen.ArchInfo) { 15 arch.LinkArch = &mips.Linkmips64 16 if buildcfg.GOARCH == "mips64le" { 17 arch.LinkArch = &mips.Linkmips64le 18 } 19 arch.REGSP = mips.REGSP 20 arch.MAXWIDTH = 1 << 50 21 arch.SoftFloat = buildcfg.GOMIPS64 == "softfloat" 22 arch.ZeroRange = zerorange 23 arch.Ginsnop = ginsnop 24 25 arch.SSAMarkMoves = func(s *ssagen.State, b *ssa.Block) {} 26 arch.SSAGenValue = ssaGenValue 27 arch.SSAGenBlock = ssaGenBlock 28} 29