Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for MULH (0.04 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Sub(Ptr|64|32|16|8) ...) => (SUB ...)
    (Sub(32|64)F ...) => (FSUB(S|D) ...)
    
    (Mul64 ...) => (MUL ...)
    (Mul(32|16|8) ...) => (MULW ...)
    (Mul(32|64)F  ...) => (FMUL(S|D) ...)
    
    (Hmul64  ...) => (MULH ...)
    (Hmul64u ...) => (UMULH ...)
    (Hmul32  x y) => (SRAconst (MULL <typ.Int64> x y) [32])
    (Hmul32u x y) => (SRAconst (UMULL <typ.UInt64> x y) [32])
    (Select0 (Mul64uhilo x y)) => (UMULH x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 670826495}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 R30
    			},
    		},
    	},
    	{
    		name:        "MULH",
    		argLen:      2,
    		commutative: true,
    		asm:         arm64.ASMULH,
    		reg: regInfo{
    			inputs: []inputInfo{
    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