Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for signExtNto64 (0.27 sec)

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

    	return false
    }
    func rewriteValueWasm_OpDiv8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div8 x y)
    	// result: (I64DivS (SignExt8to64 x) (SignExt8to64 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpWasmI64DivS)
    		v0 := b.NewValue0(v.Pos, OpSignExt8to64, typ.Int64)
    		v0.AddArg(x)
    		v1 := b.NewValue0(v.Pos, OpSignExt8to64, typ.Int64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	}
    }
    func rewriteValueLOONG64_OpDiv8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div8 x y)
    	// result: (DIVV (SignExt8to64 x) (SignExt8to64 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpLOONG64DIVV)
    		v0 := b.NewValue0(v.Pos, OpSignExt8to64, typ.Int64)
    		v0.AddArg(x)
    		v1 := b.NewValue0(v.Pos, OpSignExt8to64, typ.Int64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	}
    }
    func rewriteValueMIPS64_OpDiv8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div8 x y)
    	// result: (Select1 (DIVV (SignExt8to64 x) (SignExt8to64 y)))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpSelect1)
    		v0 := b.NewValue0(v.Pos, OpMIPS64DIVV, types.NewTuple(typ.Int64, typ.Int64))
    		v1 := b.NewValue0(v.Pos, OpSignExt8to64, typ.Int64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Trunc32to8  (SignExt8to32  x)) => x
    (Trunc32to16 (SignExt8to32  x)) => (SignExt8to16  x)
    (Trunc32to16 (SignExt16to32 x)) => x
    (Trunc64to8  (SignExt8to64  x)) => x
    (Trunc64to16 (SignExt8to64  x)) => (SignExt8to16  x)
    (Trunc64to16 (SignExt16to64 x)) => x
    (Trunc64to32 (SignExt8to64  x)) => (SignExt8to32  x)
    (Trunc64to32 (SignExt16to64 x)) => (SignExt16to32 x)
    (Trunc64to32 (SignExt32to64 x)) => 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)
  5. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	}
    }
    func rewriteValueRISCV64_OpLess8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less8 x y)
    	// result: (SLT (SignExt8to64 x) (SignExt8to64 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpRISCV64SLT)
    		v0 := b.NewValue0(v.Pos, OpSignExt8to64, typ.Int64)
    		v0.AddArg(x)
    		v1 := b.NewValue0(v.Pos, OpSignExt8to64, typ.Int64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Rsh8x64 x y) && !shiftIsBounded(v)        => (SRA (SignExt8to64 x) (CSEL [OpARM64LessThanU] <y.Type> y (Const64 <y.Type> [63]) (CMPconst [64] y)))
    (Rsh8x(32|16|8) x y) && !shiftIsBounded(v) => (SRA (SignExt8to64 x) (CSEL [OpARM64LessThanU] <y.Type> y (Const64 <y.Type> [63]) (CMPconst [64] ((ZeroExt32to64|ZeroExt16to64|ZeroExt8to64) y))))
    
    // constants
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top