Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for mips64le (0.47 sec)

  1. src/runtime/preempt.go

    		return false, 0
    	}
    
    	// Check if PC is an unsafe-point.
    	f := findfunc(pc)
    	if !f.valid() {
    		// Not Go code.
    		return false, 0
    	}
    	if (GOARCH == "mips" || GOARCH == "mipsle" || GOARCH == "mips64" || GOARCH == "mips64le") && lr == pc+8 && funcspdelta(f, pc) == 0 {
    		// We probably stopped at a half-executed CALL instruction,
    		// where the LR is updated but the PC has not. If we preempt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. test/nosplit.go

    			continue
    		}
    
    		var gobuf bytes.Buffer
    		fmt.Fprintf(&gobuf, "package main\n")
    
    		var buf bytes.Buffer
    		ptrSize := 4
    		switch goarch {
    		case "mips", "mipsle":
    			fmt.Fprintf(&buf, "#define REGISTER (R0)\n")
    		case "mips64", "mips64le":
    			ptrSize = 8
    			fmt.Fprintf(&buf, "#define REGISTER (R0)\n")
    		case "loong64":
    			ptrSize = 8
    			fmt.Fprintf(&buf, "#define REGISTER (R0)\n")
    		case "ppc64", "ppc64le":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_mips64x.s

    // Copyright 2015 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.
    
    //go:build linux && (mips64 || mips64le)
    
    //
    // System calls and other sys.stuff for mips64, Linux
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define AT_FDCWD -100
    
    #define SYS_exit		5058
    #define SYS_read		5000
    #define SYS_write		5001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  4. src/math/rand/rand_test.go

    	}
    }
    
    func hasSlowFloatingPoint() bool {
    	switch runtime.GOARCH {
    	case "arm":
    		return os.Getenv("GOARM") == "5" || strings.HasSuffix(os.Getenv("GOARM"), ",softfloat")
    	case "mips", "mipsle", "mips64", "mips64le":
    		// Be conservative and assume that all mips boards
    		// have emulated floating point.
    		// TODO: detect what it actually has.
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. src/internal/testenv/testenv.go

    	}
    }
    
    // CPUIsSlow reports whether the CPU running the test is suspected to be slow.
    func CPUIsSlow() bool {
    	switch runtime.GOARCH {
    	case "arm", "mips", "mipsle", "mips64", "mips64le", "wasm":
    		return true
    	}
    	return false
    }
    
    // SkipIfShortAndSlow skips t if -short is set and the CPU running the test is
    // suspected to be slow.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cfg/cfg.go

    		return "GOARM64", GOARM64, goARM64Changed
    	case "386":
    		return "GO386", GO386, go386Changed
    	case "amd64":
    		return "GOAMD64", GOAMD64, goAMD64Changed
    	case "mips", "mipsle":
    		return "GOMIPS", GOMIPS, goMIPSChanged
    	case "mips64", "mips64le":
    		return "GOMIPS64", GOMIPS64, goMIPS64Changed
    	case "ppc64", "ppc64le":
    		return "GOPPC64", GOPPC64, goPPC64Changed
    	case "riscv64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/runtime/duff_mips64x.s

    // Code generated by mkduff.go; DO NOT EDIT.
    // Run go generate from src/runtime to update.
    // See mkduff.go for comments.
    
    //go:build mips64 || mips64le
    
    #include "textflag.h"
    
    TEXT runtime·duffzero(SB), NOSPLIT|NOFRAME, $0-0
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 11.3K bytes
    - Viewed (0)
  8. src/math/rand/v2/rand_test.go

    	}
    }
    
    func hasSlowFloatingPoint() bool {
    	switch runtime.GOARCH {
    	case "arm":
    		return os.Getenv("GOARM") == "5"
    	case "mips", "mipsle", "mips64", "mips64le":
    		// Be conservative and assume that all mips boards
    		// have emulated floating point.
    		// TODO: detect what it actually has.
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gc.go

    		args = append(args, "-D", "GOAMD64_"+cfg.GOAMD64)
    	}
    
    	if cfg.Goarch == "mips" || cfg.Goarch == "mipsle" {
    		// Define GOMIPS_value from cfg.GOMIPS.
    		args = append(args, "-D", "GOMIPS_"+cfg.GOMIPS)
    	}
    
    	if cfg.Goarch == "mips64" || cfg.Goarch == "mips64le" {
    		// Define GOMIPS64_value from cfg.GOMIPS64.
    		args = append(args, "-D", "GOMIPS64_"+cfg.GOMIPS64)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_linux_mips64le.go

    // mksyscall.pl -tags linux,mips64le syscall_linux.go syscall_linux_mips64x.go
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build linux && mips64le
    
    package syscall
    
    import "unsafe"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func faccessat(dirfd int, path string, mode uint32) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 40.3K bytes
    - Viewed (0)
Back to top