Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for MULL (0.06 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "MULQ", argLength: 2, reg: gp21, asm: "IMULQ", commutative: true, resultInArg0: true, clobberFlags: true},
    		{name: "MULL", argLength: 2, reg: gp21, asm: "IMULL", commutative: true, resultInArg0: true, clobberFlags: true},
    		{name: "MULQconst", argLength: 1, reg: gp11, asm: "IMUL3Q", aux: "Int32", clobberFlags: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (ADDconst [c] (MOVDaddr [d] {sym} x)) && is32Bit(c+int64(d)) => (MOVDaddr [int32(c+int64(d))] {sym} x)
    (ADDconst [c] x:(SP)) && is32Bit(c) => (MOVDaddr [int32(c)] x) // so it is rematerializeable
    
    (MULL(W|D) x (MOVDconst [c])) && is16Bit(c) => (MULL(W|D)const [int32(c)] x)
    
    // Subtract from (with carry, but ignored) constant.
    // Note, these clobber the carry bit.
    (SUB (MOVDconst [c]) x) && is32Bit(c) => (SUBFCconst [c] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "RSBconst", argLength: 1, reg: gp11, asm: "RSB", aux: "Int32"},     // auxInt - arg0
    		{name: "MUL", argLength: 2, reg: gp21, asm: "MUL", commutative: true},     // arg0 * arg1
    		{name: "HMUL", argLength: 2, reg: gp21, asm: "MULL", commutative: true},   // (arg0 * arg1) >> 32, signed
    		{name: "HMULU", argLength: 2, reg: gp21, asm: "MULLU", commutative: true}, // (arg0 * arg1) >> 32, unsigned
    
    		// udiv runtime call for soft division
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "UMULH", argLength: 2, reg: gp21, asm: "UMULH", commutative: true},                                     // (arg0 * arg1) >> 64, unsigned
    		{name: "MULL", argLength: 2, reg: gp21, asm: "SMULL", commutative: true},                                      // arg0 * arg1, signed, 32-bit mult results in 64-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	MULW DX                                 // 66f7e2
    	MULW R11                                // 6641f7e3
    	MULL (BX)                               // f723
    	MULL (R11)                              // 41f723
    	MULL DX                                 // f7e2
    	MULL R11                                // 41f7e3
    	MULQ (BX)                               // 48f723
    	MULQ (R11)                              // 49f723
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (SUBL x (MOVLconst [c])) => (SUBLconst x [c])
    (SUBL (MOVLconst [c]) x) => (NEGL (SUBLconst <v.Type> x [c]))
    
    (MULQ x (MOVQconst [c])) && is32Bit(c) => (MULQconst [int32(c)] x)
    (MULL x (MOVLconst [c])) => (MULLconst [c] x)
    
    (ANDQ x (MOVQconst [c])) && is32Bit(c) => (ANDQconst [int32(c)] x)
    (ANDL x (MOVLconst [c])) => (ANDLconst [c] x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Sub(32|64)F ...) => (FSUB(S|D) ...)
    
    (Mul64 ...) => (MUL ...)
    (Mul(32|16|8) ...) => (MULW ...)
    (Mul(32|64)F  ...) => (FMUL(S|D) ...)
    
    (Hmul64  ...) => (MULH ...)
    (Hmul64u ...) => (UMULH ...)
    (Hmul32  x y) => (SRAconst (MULL <typ.Int64> x y) [32])
    (Hmul32u x y) => (SRAconst (UMULL <typ.UInt64> x y) [32])
    (Select0 (Mul64uhilo x y)) => (UMULH x y)
    (Select1 (Mul64uhilo x y)) => (MUL x y)
    
    (Div64 [false] x y) => (DIV  x 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)
  8. src/cmd/compile/internal/ssa/rewrite386.go

    		v.Aux = symToAux(mergeSym(sym1, sym2))
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386MULL(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MULL x (MOVLconst [c]))
    	// result: (MULLconst [c] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != Op386MOVLconst {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/opGen.go

    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:         "MULL",
    		argLen:       2,
    		commutative:  true,
    		resultInArg0: true,
    		clobberFlags: true,
    		asm:          x86.AIMULL,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteARM64.go

    	}
    }
    func rewriteValueARM64_OpHmul32(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Hmul32 x y)
    	// result: (SRAconst (MULL <typ.Int64> x y) [32])
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpARM64SRAconst)
    		v.AuxInt = int64ToAuxInt(32)
    		v0 := b.NewValue0(v.Pos, OpARM64MULL, typ.Int64)
    		v0.AddArg2(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top