Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 344 for signext (0.11 sec)

  1. src/internal/buildcfg/cfg.go

    	})
    	year, _ := strconv.Atoi(v[:i])
    	return year
    }
    
    type gowasmFeatures struct {
    	SatConv bool
    	SignExt bool
    }
    
    func (f gowasmFeatures) String() string {
    	var flags []string
    	if f.SatConv {
    		flags = append(flags, "satconv")
    	}
    	if f.SignExt {
    		flags = append(flags, "signext")
    	}
    	return strings.Join(flags, ",")
    }
    
    func gowasm() (f gowasmFeatures) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (ZeroExt16to(64|32)   x:(I64Load16U _ _)) => x
    (ZeroExt8to(64|32|16) x:(I64Load8U  _ _)) => x
    (SignExt32to64        x) && buildcfg.GOWASM.SignExt => (I64Extend32S x)
    (SignExt8to(64|32|16) x) && buildcfg.GOWASM.SignExt => (I64Extend8S x)
    (SignExt16to(64|32)   x) && buildcfg.GOWASM.SignExt => (I64Extend16S x)
    (SignExt32to64        x) => (I64ShrS (I64Shl x (I64Const [32])) (I64Const [32]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Neq(8|16) x y) && x.Type.IsSigned() && y.Type.IsSigned() => (NotEqual (CMPW (SignExt(8|16)to32 x) (SignExt(8|16)to32 y)))
    (Neq(8|16) x y)  => (NotEqual (CMPW (ZeroExt(8|16)to32 x) (ZeroExt(8|16)to32 y)))
    (Neq(32|64|Ptr) x y) => (NotEqual ((CMPW|CMP|CMP) x y))
    (Neq(32|64)F x y) => (NotEqual (FCMPU x y))
    
    (Less(8|16) x y)  => (LessThan (CMPW (SignExt(8|16)to32 x) (SignExt(8|16)to32 y)))
    (Less(32|64) x y) => (LessThan ((CMPW|CMP) x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteWasm.go

    		x := v_0
    		if x.Op != OpWasmI64Load16S {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (SignExt16to32 x)
    	// cond: buildcfg.GOWASM.SignExt
    	// result: (I64Extend16S x)
    	for {
    		x := v_0
    		if !(buildcfg.GOWASM.SignExt) {
    			break
    		}
    		v.reset(OpWasmI64Extend16S)
    		v.AddArg(x)
    		return true
    	}
    	// match: (SignExt16to32 x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    	  feature build tags.
    	- For GOARCH=riscv64,
    	  GORISCV64=rva20u64 and rva22u64 correspond to the riscv64.rva20u64
    	  and riscv64.rva22u64 build tags.
    	- For GOARCH=wasm, GOWASM=satconv and signext
    	  correspond to the wasm.satconv and wasm.signext feature build tags.
    
    For GOARCH=amd64, arm, ppc64, ppc64le, and riscv64, a particular feature level
    sets the feature build tags for all previous levels as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Div32F ...) => (FDIVS ...)
    (Div64F ...) => (FDIVD ...)
    
    (Mod64 x y) => (MOD x y)
    (Mod32 x y) => (MODW x y)
    (Mod64u ...) => (UMOD ...)
    (Mod32u ...) => (UMODW ...)
    (Mod(16|8)  x y) => (MODW  (SignExt(16|8)to32 x) (SignExt(16|8)to32 y))
    (Mod(16|8)u x y) => (UMODW (ZeroExt(16|8)to32 x) (ZeroExt(16|8)to32 y))
    
    // (x + y) / 2 with x>=y    =>    (x - y) / 2 + y
    (Avg64u <t> x y) => (ADD (SRLconst <t> (SUB <t> x y) [1]) y)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    // "sign", so Add32 can be used both for signed and unsigned 32-bit
    // addition.
    
    // Signed/unsigned is explicit with the extension ops
    // (SignExt*/ZeroExt*) and implicit as the arg to some opcodes
    // (e.g. the second argument to shifts is unsigned). If not mentioned,
    // all args take signed inputs, or don't care whether their inputs
    // are signed or unsigned.
    
    var genericOps = []opData{
    	// 2-input arithmetic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. tests/integration/security/external_ca/main_test.go

                    mountPath: /var/lib/istio/inject
    {{- end }}
    `, map[string]any{
    		"rootcert1":              cert1.Rootcert,
    		"signer1":                cert1.Signer,
    		"rootcert2":              cert2.Rootcert,
    		"signer2":                cert2.Signer,
    		"isConfigCluster":        isConfigCluster,
    		"isExternalControlPlane": isExternalControlPlane,
    	})
    	return cfgYaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/math/signbit.go

    // Copyright 2010 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.
    
    package math
    
    // Signbit reports whether x is negative or negative zero.
    func Signbit(x float64) bool {
    	return Float64bits(x)&(1<<63) != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 02 22:47:58 UTC 2018
    - 302 bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //   - For GOARCH=riscv64,
    //     GORISCV64=rva20u64 and rva22u64 correspond to the riscv64.rva20u64
    //     and riscv64.rva22u64 build tags.
    //   - For GOARCH=wasm, GOWASM=satconv and signext
    //     correspond to the wasm.satconv and wasm.signext feature build tags.
    //
    // For GOARCH=amd64, arm, ppc64, ppc64le, and riscv64, a particular feature level
    // sets the feature build tags for all previous levels as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top