Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LOONG64 (0.12 sec)

  1. src/cmd/go/alldocs.go

    //		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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		if cfg.GOMIPS == "hardfloat" {
    			return append(args, "-mhard-float", "-mfp32", "-mno-odd-spreg")
    		} else if cfg.GOMIPS == "softfloat" {
    			return append(args, "-msoft-float")
    		}
    	case "loong64":
    		return []string{"-mabi=lp64d"}
    	case "ppc64":
    		if cfg.Goos == "aix" {
    			return []string{"-maix64"}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    // Code generated from _gen/LOONG64.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "cmd/compile/internal/types"
    
    func rewriteValueLOONG64(v *Value) bool {
    	switch v.Op {
    	case OpAdd16:
    		v.Op = OpLOONG64ADDV
    		return true
    	case OpAdd32:
    		v.Op = OpLOONG64ADDV
    		return true
    	case OpAdd32F:
    		v.Op = OpLOONG64ADDF
    		return true
    	case OpAdd64:
    		v.Op = OpLOONG64ADDV
    		return true
    	case OpAdd64F:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
Back to top