Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for RISCV64 (0.18 sec)

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

    // Copyright 2020 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.
    
    // This file encapsulates some of the odd characteristics of the RISCV64
    // instruction set, to minimize its interaction with the core of the
    // assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/riscv"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 15 08:13:28 UTC 2020
    - 943 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64.s

    Joel Sing <******@****.***> 1702109880 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    Joel Sing <******@****.***> 1707360850 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.freebsd-riscv64.txt

    golang.org/******@****.***d-riscv64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.freebsd-riscv64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 306 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.linux-riscv64.txt

    golang.org/******@****.***-riscv64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.linux-riscv64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 302 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-riscv64.txt

    golang.org/******@****.***d-riscv64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.openbsd-riscv64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:49 UTC 2023
    - 306 bytes
    - Viewed (0)
  7. src/debug/elf/testdata/go-relocation-test-gcc720-riscv64.obj

    Tobias Klauser <******@****.***> 1523543751 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 18 13:19:31 UTC 2018
    - 9.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/tooltags.txt

    go list -f '{{context.ToolTags}}'
    stdout 'ppc64le.power8 ppc64le.power9 ppc64le.power10'
    
    env GOARCH=riscv64
    env GORISCV64=rva20u64
    go list -f '{{context.ToolTags}}'
    stdout 'riscv64.rva20u64'
    
    env GOARCH=riscv64
    env GORISCV64=rva22u64
    go list -f '{{context.ToolTags}}'
    stdout 'riscv64.rva20u64 riscv64.rva22u64'
    
    env GOARCH=riscv64
    env GORISCV64=rva22
    ! go list -f '{{context.ToolTags}}'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 07:25:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  10. test/codegen/rotate.go

    	// amd64:"ROLW\t[$]7"
    	// riscv64: "OR","SLLI","SRLI",-"AND"
    	a += x<<7 | x>>9
    
    	// amd64:`ROLW\t[$]8`
    	// riscv64: "OR","SLLI","SRLI",-"AND"
    	a += x<<8 + x>>8
    
    	// amd64:"ROLW\t[$]9"
    	// riscv64: "OR","SLLI","SRLI",-"AND"
    	a += x<<9 ^ x>>7
    
    	return a
    }
    
    func rot8(x uint8) uint8 {
    	var a uint8
    
    	// amd64:"ROLB\t[$]5"
    	// riscv64: "OR","SLLI","SRLI",-"AND"
    	a += x<<5 | x>>3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top