Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MULL (0.13 sec)

  1. 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)
  2. 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)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v.AddArg2(ptr, mem)
    		return true
    	}
    	return false
    }
    func rewriteValueAMD64_OpAMD64MULL(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 != OpAMD64MOVLconst {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top