Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for ddivq (0.1 sec)

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

    	}
    }
    func rewriteValueAMD64_OpDiv64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div64 [a] x y)
    	// result: (Select0 (DIVQ [a] x y))
    	for {
    		a := auxIntToBool(v.AuxInt)
    		x := v_0
    		y := v_1
    		v.reset(OpSelect0)
    		v0 := b.NewValue0(v.Pos, OpAMD64DIVQ, types.NewTuple(typ.Int64, typ.Int64))
    		v0.AuxInt = boolToAuxInt(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 1}, // AX
    				{1, 4}, // DX
    			},
    		},
    	},
    	{
    		name:         "DIVQU",
    		argLen:       2,
    		clobberFlags: true,
    		asm:          x86.ADIVQ,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 1},     // AX
    				{1, 49147}, // AX CX BX SP BP SI DI R8 R9 R10 R11 R12 R13 R15
    			},
    			outputs: []outputInfo{
    				{0, 1}, // AX
    				{1, 4}, // DX
    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