Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MULLQU (0.32 sec)

  1. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "HMULLU", argLength: 2, reg: gp21hmul, commutative: true, asm: "MULL", clobberFlags: true}, // (arg0 * arg1) >> width
    
    		{name: "MULLQU", argLength: 2, reg: gp21mul, commutative: true, asm: "MULL", clobberFlags: true}, // arg0 * arg1, high 32 in result[0], low 32 in result[1]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    				{0, 1},   // AX
    				{1, 255}, // AX CX DX BX SP BP SI DI
    			},
    			clobbers: 1, // AX
    			outputs: []outputInfo{
    				{0, 4}, // DX
    			},
    		},
    	},
    	{
    		name:         "MULLQU",
    		argLen:       2,
    		commutative:  true,
    		clobberFlags: true,
    		asm:          x86.AMULL,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 1},   // AX
    				{1, 255}, // AX CX DX 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