Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Bswap64 (0.65 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Bswap64 x)
    	// cond: buildcfg.GOPPC64>=10
    	// result: (BRD x)
    	for {
    		x := v_0
    		if !(buildcfg.GOPPC64 >= 10) {
    			break
    		}
    		v.reset(OpPPC64BRD)
    		v.AddArg(x)
    		return true
    	}
    	// match: (Bswap64 x:(MOVDload [off] {sym} ptr mem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (SumBytes2 x) => (ADDW (SRWconst <typ.UInt8> x [8]) x)
    (SumBytes4 x) => (SumBytes2 (ADDW <typ.UInt16> (SRWconst <typ.UInt16> x [16]) x))
    (SumBytes8 x) => (SumBytes4 (ADDW <typ.UInt32> (SRDconst <typ.UInt32> x [32]) x))
    
    (Bswap64 ...) => (MOVDBR ...)
    (Bswap32 ...) => (MOVWBR ...)
    
    // add with carry
    (Select0 (Add64carry x y c))
      => (Select0 <typ.UInt64> (ADDE x y (Select1 <types.TypeFlags> (ADDCconst c [-1]))))
    (Select1 (Add64carry x y c))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (FMOVSload [off] {sym} ptr (MOVWstore  [off] {sym} ptr val _)) => (FMOVSgpfp val)
    
    (BitLen64 x) => (SUB (MOVDconst [64]) (CLZ <typ.Int> x))
    (BitLen32 x) => (SUB (MOVDconst [32]) (CLZW <typ.Int> x))
    
    (Bswap64 ...) => (REV ...)
    (Bswap32 ...) => (REVW ...)
    (Bswap16 ...) => (REV16W ...)
    
    (BitRev64 ...) => (RBIT ...)
    (BitRev32 ...) => (RBITW ...)
    (BitRev16   x) => (SRLconst [48] (RBIT <typ.UInt64> x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpBswap32, types.Types[types.TUINT32], args[0])
    		},
    		brev_arch...)
    	addF("runtime/internal/sys", "Bswap64",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpBswap64, types.Types[types.TUINT64], args[0])
    		},
    		brev_arch...)
    
    	/****** Prefetch ******/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:    "Bswap16",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Bswap32",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Bswap64",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "BitRev8",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "BitRev16",
    		argLen:  1,
    		generic: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top