Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for riscv64 (0.05 sec)

  1. src/cmd/asm/internal/arch/riscv64.go

    		riscv.AAMOANDW, riscv.AAMOANDD, riscv.AAMOORW, riscv.AAMOORD, riscv.AAMOXORW, riscv.AAMOXORD,
    		riscv.AAMOMINW, riscv.AAMOMIND, riscv.AAMOMINUW, riscv.AAMOMINUD,
    		riscv.AAMOMAXW, riscv.AAMOMAXD, riscv.AAMOMAXUW, riscv.AAMOMAXUD:
    		return true
    	}
    	return false
    }
    
    // IsRISCV64VTypeI reports whether op is a vtype immediate instruction that
    // requires special handling.
    func IsRISCV64VTypeI(op obj.As) bool {
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Sep 12 08:12:45 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64.s

    Joel Sing <******@****.***> 1757427420 +1000
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Nov 13 12:17:37 UTC 2025
    - 73.7K bytes
    - Viewed (0)
  3. api/go1.20.txt

    pkg log/syslog (freebsd-riscv64), const LOG_CRIT Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_CRON = 72 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_CRON Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_DAEMON = 24 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_DAEMON Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_DEBUG = 7 #53466
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/endtoend_test.go

    	defer func(orig int) { buildcfg.GORISCV64 = orig }(buildcfg.GORISCV64)
    
    	for _, goriscv64 := range []int{20, 22, 23} {
    		t.Run(fmt.Sprintf("rva%vu64", goriscv64), func(t *testing.T) {
    			buildcfg.GORISCV64 = goriscv64
    			testFn(t)
    		})
    	}
    }
    
    func TestRISCV64EndToEnd(t *testing.T) {
    	testRISCV64AllProfiles(t, func(t *testing.T) {
    		testEndToEnd(t, "riscv64", "riscv64")
    	})
    }
    
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Dec 23 18:45:48 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  5. buildscripts/checkdeps.sh

    	return 0
    }
    
    assert_is_supported_arch() {
    	case "${ARCH}" in
    	x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x | loong64 | loongarch64 | riscv64)
    		return
    		;;
    	*)
    		echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x, loong64, loongarch64, riscv64]"
    		exit 1
    		;;
    	esac
    }
    
    assert_is_supported_os() {
    	case "${KNAME}" in
    	Linux | FreeBSD | OpenBSD | NetBSD | DragonFly | SunOS)
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Jun 08 16:12:05 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/asm.go

    			// passed RestArgs/AddRestSource
    			switch a[1].Type {
    			case obj.TYPE_REG:
    				prog.Reg = p.getRegister(prog, op, &a[1])
    			default:
    				prog.AddRestSource(a[1])
    			}
    		case sys.RISCV64:
    			// RISCV64 instructions with one input and two outputs.
    			if arch.IsRISCV64AMO(op) {
    				prog.From = a[0]
    				prog.To = a[1]
    				if a[2].Type != obj.TYPE_REG {
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Oct 21 15:13:08 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  7. buildscripts/cross-compile.sh

    	SUPPORTED_OSARCH="linux/ppc64le linux/mips64 linux/amd64 linux/arm64 linux/s390x darwin/arm64 darwin/amd64 freebsd/amd64 windows/amd64 linux/arm linux/386 netbsd/amd64 linux/mips openbsd/amd64 linux/riscv64"
    }
    
    function _build() {
    	local osarch=$1
    	IFS=/ read -r -a arr <<<"$osarch"
    	os="${arr[0]}"
    	arch="${arr[1]}"
    	package=$(go list -f '{{.ImportPath}}')
    	printf -- "--> %15s:%s\n" "${osarch}" "${package}"
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Jun 08 16:12:05 UTC 2025
    - 972 bytes
    - Viewed (0)
  8. doc/asm.html

    <code>softfloat</code>) is made available to assembly code by predefining either
    <code>GOMIPS64_hardfloat</code> or <code>GOMIPS64_softfloat</code>.
    </p>
    
    <h3 id="riscv64">RISCV64</h3>
    
    <p>
    Reference: <a href="/pkg/cmd/internal/obj/riscv">Go RISCV64 Assembly Instructions Reference Manual</a>
    </p>
    
    <h3 id="unsupported_opcodes">Unsupported opcodes</h3>
    
    <p>
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Nov 14 19:09:46 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  9. api/go1.21.txt

    pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Jail int #46259
    pkg syscall (freebsd-arm), type SysProcAttr struct, Jail int #46259
    pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Jail int #46259
    pkg syscall (freebsd-riscv64), type SysProcAttr struct, Jail int #46259
    pkg testing, func Testing() bool #52600
    pkg testing/slogtest, func TestHandler(slog.Handler, func() []map[string]interface{}) error #56345
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  10. src/cmd/api/main_test.go

    	{GOOS: "freebsd", GOARCH: "arm"},
    	{GOOS: "freebsd", GOARCH: "arm64", CgoEnabled: true},
    	{GOOS: "freebsd", GOARCH: "arm64"},
    	{GOOS: "freebsd", GOARCH: "riscv64", CgoEnabled: true},
    	{GOOS: "freebsd", GOARCH: "riscv64"},
    	{GOOS: "netbsd", GOARCH: "386", CgoEnabled: true},
    	{GOOS: "netbsd", GOARCH: "386"},
    	{GOOS: "netbsd", GOARCH: "amd64", CgoEnabled: true},
    	{GOOS: "netbsd", GOARCH: "amd64"},
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Feb 20 03:25:33 UTC 2025
    - 31.4K bytes
    - Viewed (0)
Back to top