X7ROOT File Manager
Current Path:
/opt/golang/1.19.4/src/cmd/compile/internal/riscv64
opt
/
golang
/
1.19.4
/
src
/
cmd
/
compile
/
internal
/
riscv64
/
📁
..
📄
galign.go
(592 B)
📄
ggen.go
(1.79 KB)
📄
gsubr.go
(488 B)
📄
ssa.go
(21.43 KB)
Editing: gsubr.go
// 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 riscv64 import ( "cmd/compile/internal/objw" "cmd/internal/obj" "cmd/internal/obj/riscv" ) func ginsnop(pp *objw.Progs) *obj.Prog { // Hardware nop is ADD $0, ZERO p := pp.Prog(riscv.AADD) p.From.Type = obj.TYPE_CONST p.Reg = riscv.REG_ZERO p.To = obj.Addr{Type: obj.TYPE_REG, Reg: riscv.REG_ZERO} return p }
Upload File
Create Folder