Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AVGQU (0.17 sec)

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

    		{name: "HMULLU", argLength: 2, reg: gp21hmul, asm: "MULL", clobberFlags: true},
    
    		// (arg0 + arg1) / 2 as unsigned, all 64 result bits
    		{name: "AVGQU", argLength: 2, reg: gp21, commutative: true, resultInArg0: true, clobberFlags: true},
    
    		// DIVx[U] computes [arg0 / arg1, arg0 % arg1]
    		// For signed versions, AuxInt non-zero means that the divisor has been proved to be not -1.
    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/AMD64.rules

    (Select1 (NEGLflags (MOVQconst [0]))) => (FlagEQ)
    (Select1 (NEGLflags (NEGQ (SBBQcarrymask x)))) => x
    
    
    (Mul64uhilo ...) => (MULQU2 ...)
    (Div128u ...) => (DIVQU2 ...)
    
    (Avg64u ...) => (AVGQU ...)
    
    (Mod(64|32|16) [a] x y) => (Select1 (DIV(Q|L|W) [a] x y))
    (Mod8  x y) => (Select1 (DIVW  (SignExt8to16 x) (SignExt8to16 y)))
    (Mod(64|32|16)u x y) => (Select1 (DIV(Q|L|W)U x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    				{1, 49151}, // AX CX DX BX SP BP SI DI R8 R9 R10 R11 R12 R13 R15
    			},
    			clobbers: 1, // AX
    			outputs: []outputInfo{
    				{0, 4}, // DX
    			},
    		},
    	},
    	{
    		name:         "AVGQU",
    		argLen:       2,
    		commutative:  true,
    		resultInArg0: true,
    		clobberFlags: true,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 49135}, // AX CX DX BX BP SI DI R8 R9 R10 R11 R12 R13 R15
    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