github.com/gagliardetto/golang-go@v0.0.0-20201020153340-53909ea70814/cmd/compile/internal/riscv64/galign.go (about)

     1  // Copyright 2016 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 riscv64
     6  
     7  import (
     8  	"github.com/gagliardetto/golang-go/cmd/compile/internal/gc"
     9  	"github.com/gagliardetto/golang-go/cmd/internal/obj/riscv"
    10  )
    11  
    12  func Init(arch *gc.Arch) {
    13  	arch.LinkArch = &riscv.LinkRISCV64
    14  
    15  	arch.REGSP = riscv.REG_SP
    16  	arch.MAXWIDTH = 1 << 50
    17  
    18  	arch.Ginsnop = ginsnop
    19  	arch.Ginsnopdefer = ginsnop
    20  	arch.ZeroRange = zeroRange
    21  
    22  	arch.SSAMarkMoves = ssaMarkMoves
    23  	arch.SSAGenValue = ssaGenValue
    24  	arch.SSAGenBlock = ssaGenBlock
    25  }