Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for Or64 (0.43 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    (And8  (And8  i:(Const8  <t>) z) x) && (z.Op != OpConst8  && x.Op != OpConst8)  => (And8  i (And8  <t> z x))
    
    // x | (C | z) -> C | (x | z)
    (Or64 (Or64 i:(Const64 <t>) z) x) && (z.Op != OpConst64 && x.Op != OpConst64) => (Or64 i (Or64 <t> z x))
    (Or32 (Or32 i:(Const32 <t>) z) x) && (z.Op != OpConst32 && x.Op != OpConst32) => (Or32 i (Or32 <t> z x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/dec64.rules

    		(Select1 <typ.UInt32> (Mul32uhilo (Int64Lo x) (Int64Lo y))))
    
    (And64 x y) =>
    	(Int64Make
    		(And32 <typ.UInt32> (Int64Hi x) (Int64Hi y))
    		(And32 <typ.UInt32> (Int64Lo x) (Int64Lo y)))
    
    (Or64 x y) =>
    	(Int64Make
    		(Or32 <typ.UInt32> (Int64Hi x) (Int64Hi y))
    		(Or32 <typ.UInt32> (Int64Lo x) (Int64Lo y)))
    
    (Xor64 x y) =>
    	(Int64Make
    		(Xor32 <typ.UInt32> (Int64Hi x) (Int64Hi y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    				v0.AuxInt = int64ToAuxInt(c1)
    				v.AddArg2(v0, x)
    				return true
    			}
    		}
    		break
    	}
    	// match: (Or64 (Or64 i:(Const64 <t>) z) x)
    	// cond: (z.Op != OpConst64 && x.Op != OpConst64)
    	// result: (Or64 i (Or64 <t> z x))
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpOr64 {
    				continue
    			}
    			_ = v_0.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (RotateLeft32 <t> x (MOVWconst [c])) => (Or32 (Lsh32x32 <t> x (MOVWconst [c&31])) (Rsh32Ux32 <t> x (MOVWconst [-c&31])))
    (RotateLeft64 <t> x (MOVWconst [c])) => (Or64 (Lsh64x32 <t> x (MOVWconst [c&63])) (Rsh64Ux32 <t> x (MOVWconst [-c&63])))
    
    // unary ops
    (Neg(32|16|8) ...) => (NEG ...)
    (Neg(32|64)F ...) => (NEG(F|D) ...)
    
    (Com(32|16|8) x) => (NORconst [0] x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (RotateLeft32 <t> x (MOVVconst [c])) => (Or32 (Lsh32x64 <t> x (MOVVconst [c&31])) (Rsh32Ux64 <t> x (MOVVconst [-c&31])))
    (RotateLeft64 <t> x (MOVVconst [c])) => (Or64 (Lsh64x64 <t> x (MOVVconst [c&63])) (Rsh64Ux64 <t> x (MOVVconst [-c&63])))
    
    // unary ops
    (Neg(64|32|16|8) ...) => (NEGV ...)
    (Neg(32|64)F ...) => (NEG(F|D) ...)
    
    (Com(64|32|16|8) x) => (NOR (MOVVconst [0]) x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "And64", argLength: 2, commutative: true},
    
    	{name: "Or8", argLength: 2, commutative: true}, // arg0 | arg1
    	{name: "Or16", argLength: 2, commutative: true},
    	{name: "Or32", argLength: 2, commutative: true},
    	{name: "Or64", argLength: 2, commutative: true},
    
    	{name: "Xor8", argLength: 2, commutative: true}, // arg0 ^ arg1
    	{name: "Xor16", argLength: 2, commutative: true},
    	{name: "Xor32", argLength: 2, commutative: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	alias("sync/atomic", "OrUint32", "internal/runtime/atomic", "Or32", sys.ArchARM64)
    	alias("sync/atomic", "OrInt64", "internal/runtime/atomic", "Or64", sys.ArchARM64)
    	alias("sync/atomic", "OrUint64", "internal/runtime/atomic", "Or64", sys.ArchARM64)
    	alias("sync/atomic", "OrUintptr", "internal/runtime/atomic", "Or64", sys.ArchARM64)
    
    	/******** math/big ********/
    	alias("math/big", "mulWW", "math/bits", "Mul64", p8...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritedec64.go

    		}
    		break
    	}
    	return false
    }
    func rewriteValuedec64_OpOr64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Or64 x y)
    	// result: (Int64Make (Or32 <typ.UInt32> (Int64Hi x) (Int64Hi y)) (Or32 <typ.UInt32> (Int64Lo x) (Int64Lo y)))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpInt64Make)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Mod8u  x y) => (MODWU (MOVBZreg x) (MOVBZreg y))
    
    // (x + y) / 2 with x>=y -> (x - y) / 2 + y
    (Avg64u <t> x y) => (ADD (SRDconst <t> (SUB <t> x y) [1]) y)
    
    (And64 ...) => (AND ...)
    (And(32|16|8) ...) => (ANDW ...)
    
    (Or64 ...) => (OR ...)
    (Or(32|16|8) ...) => (ORW ...)
    
    (Xor64 ...) => (XOR ...)
    (Xor(32|16|8) ...) => (XORW ...)
    
    (Neg64 ...) => (NEG ...)
    (Neg(32|16|8) ...) => (NEGW ...)
    (Neg32F ...) => (FNEGS ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  10. test/ken/cplx2.go

    		panic("fail")
    	}
    	
    	r32 := real(complex64(ce))
    	if r32 != float32(real(Ce)) {
    		println("real(complex64(ce))", r32, real(Ce))
    		panic("fail")
    	}
    	
    	r64 := real(complex128(ce))
    	if r64 != real(Ce) {
    		println("real(complex128(ce))", r64, real(Ce))
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.9K bytes
    - Viewed (0)
Back to top