Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DIVLU (0.05 sec)

  1. src/runtime/softfloat64.go

    		return fs ^ gs ^ inf64
    
    	case gi, fm == 0: // f / Inf = 0 / g = Inf
    		return fs ^ gs ^ 0
    	}
    	_, _, _, _ = fi, fn, gi, gn
    
    	// 53-bit<<54 / 53-bit = 53- or 54-bit.
    	shift := mantbits64 + 2
    	q, r := divlu(fm>>(64-shift), fm<<shift, gm)
    	return fpack64(fs^gs, q, fe-ge-2, r)
    }
    
    func f64to32(f uint64) uint32 {
    	fs, fm, fe, fi, fn := funpack64(f)
    	if fn {
    		return nan32
    	}
    	fs32 := uint32(fs >> 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "DIVL", argLength: 2, reg: gp11div, asm: "IDIVL", aux: "Bool", clobberFlags: true}, // arg0 / arg1
    		{name: "DIVW", argLength: 2, reg: gp11div, asm: "IDIVW", aux: "Bool", clobberFlags: true}, // arg0 / arg1
    		{name: "DIVLU", argLength: 2, reg: gp11div, asm: "DIVL", clobberFlags: true},              // arg0 / arg1
    		{name: "DIVWU", argLength: 2, reg: gp11div, asm: "DIVW", clobberFlags: true},              // arg0 / arg1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "DIVW", argLength: 2, reg: gp11div, typ: "(Int16,Int16)", asm: "IDIVW", aux: "Bool", clobberFlags: true},
    		{name: "DIVQU", argLength: 2, reg: gp11div, typ: "(UInt64,UInt64)", asm: "DIVQ", clobberFlags: true},
    		{name: "DIVLU", argLength: 2, reg: gp11div, typ: "(UInt32,UInt32)", asm: "DIVL", clobberFlags: true},
    		{name: "DIVWU", argLength: 2, reg: gp11div, typ: "(UInt16,UInt16)", asm: "DIVW", 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)
  4. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    }
    func rewriteValueAMD64_OpDiv32u(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div32u x y)
    	// result: (Select0 (DIVLU x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpSelect0)
    		v0 := b.NewValue0(v.Pos, OpAMD64DIVLU, types.NewTuple(typ.UInt32, typ.UInt32))
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/opGen.go

    				{0, 1},   // AX
    				{1, 251}, // AX CX BX SP BP SI DI
    			},
    			clobbers: 4, // DX
    			outputs: []outputInfo{
    				{0, 1}, // AX
    			},
    		},
    	},
    	{
    		name:         "DIVLU",
    		argLen:       2,
    		clobberFlags: true,
    		asm:          x86.ADIVL,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 1},   // AX
    				{1, 251}, // AX CX BX SP 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)
Back to top