Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for LOONG64 (0.08 sec)

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

    				prog.From = a[0]
    				prog.Reg = p.getRegister(prog, op, &a[1])
    				break
    			}
    		} else if p.arch.Family == sys.Loong64 {
    			if arch.IsLoong64CMP(op) {
    				prog.From = a[0]
    				prog.Reg = p.getRegister(prog, op, &a[1])
    				break
    			}
    
    			if arch.IsLoong64RDTIME(op) {
    				// The Loong64 RDTIME family of instructions is a bit special,
    				// in that both its register operands are outputs
    				prog.To = a[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go

    // mkerrors.sh -Wall -Werror -static -I/tmp/loong64/include
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build loong64 && linux
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -Wall -Werror -static -I/tmp/loong64/include _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	B1000000                         = 0x1008
    	B115200                          = 0x1002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	if err != nil {
    		return false
    	}
    	switch compiler.name {
    	case "gcc":
    		if goarch == "loong64" {
    			return compiler.major >= 14
    		}
    		if goarch == "ppc64le" {
    			return compiler.major >= 9
    		}
    		return compiler.major >= 7
    	case "clang":
    		if goarch == "loong64" {
    			return compiler.major >= 16
    		}
    		return compiler.major >= 9
    	default:
    		return false
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go

    // go run mksyscall.go -tags linux,loong64 syscall_linux.go syscall_linux_loong64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build linux && loong64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. src/runtime/stkframe.go

    		}
    		if stackmap.nbit == 0 {
    			args.n = 0
    		} else {
    			args = stackmapdata(stackmap, pcdata)
    		}
    	}
    
    	// stack objects.
    	if (GOARCH == "amd64" || GOARCH == "arm64" || GOARCH == "loong64" || GOARCH == "ppc64" || GOARCH == "ppc64le" || GOARCH == "riscv64") &&
    		unsafe.Sizeof(abi.RegArgs{}) > 0 && isReflect {
    		// For reflect.makeFuncStub and reflect.methodValueCall,
    		// we need to fake the stack object record.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/operand_test.go

    }
    
    func TestMIPS64OperandParser(t *testing.T) {
    	parser := newParser("mips64")
    	testOperandParser(t, parser, mips64OperandTests)
    }
    
    func TestLOONG64OperandParser(t *testing.T) {
    	parser := newParser("loong64")
    	testOperandParser(t, parser, loong64OperandTests)
    }
    
    func TestS390XOperandParser(t *testing.T) {
    	parser := newParser("s390x")
    	testOperandParser(t, parser, s390xOperandTests)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	asmArchS390X    = asmArch{name: "s390x", bigEndian: true, stack: "R15", lr: true}
    	asmArchWasm     = asmArch{name: "wasm", bigEndian: false, stack: "SP", lr: false}
    	asmArchLoong64  = asmArch{name: "loong64", bigEndian: false, stack: "R3", lr: true}
    
    	arches = []*asmArch{
    		&asmArch386,
    		&asmArchArm,
    		&asmArchArm64,
    		&asmArchAmd64,
    		&asmArchMips,
    		&asmArchMipsLE,
    		&asmArchMips64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/imports/build.go

    	"arm64be":     true,
    	"ppc64":       true,
    	"ppc64le":     true,
    	"mips":        true,
    	"mipsle":      true,
    	"mips64":      true,
    	"mips64le":    true,
    	"mips64p32":   true,
    	"mips64p32le": true,
    	"loong64":     true,
    	"ppc":         true,
    	"riscv":       true,
    	"riscv64":     true,
    	"s390":        true,
    	"s390x":       true,
    	"sparc":       true,
    	"sparc64":     true,
    	"wasm":        true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/build.go

    		enable interoperation with memory sanitizer.
    		Supported only on linux/amd64, linux/arm64, linux/loong64, freebsd/amd64
    		and only with Clang/LLVM as the host C compiler.
    		PIE build mode will be used on all platforms except linux/amd64.
    	-asan
    		enable interoperation with address sanitizer.
    		Supported only on linux/arm64, linux/amd64, linux/loong64.
    		Supported on linux/amd64 or linux/arm64 and only with GCC 7 and higher
    		or Clang/LLVM 9 and higher.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/config.go

    		c.gpRegMask = gpRegMaskMIPS64
    		c.fpRegMask = fpRegMaskMIPS64
    		c.specialRegMask = specialRegMaskMIPS64
    		c.FPReg = framepointerRegMIPS64
    		c.LinkReg = linkRegMIPS64
    		c.hasGReg = true
    	case "loong64":
    		c.PtrSize = 8
    		c.RegSize = 8
    		c.lowerBlock = rewriteBlockLOONG64
    		c.lowerValue = rewriteValueLOONG64
    		c.registers = registersLOONG64[:]
    		c.gpRegMask = gpRegMaskLOONG64
    		c.fpRegMask = fpRegMaskLOONG64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top