Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LEAL1 (0.05 sec)

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

    	// match: (ADDLconst [c] (ADDL x y))
    	// result: (LEAL1 [c] x y)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpAMD64ADDL {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		v.reset(OpAMD64LEAL1)
    		v.AuxInt = int32ToAuxInt(c)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (ADDLconst [c] (SHLLconst [1] x))
    	// result: (LEAL1 [c] x x)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top