Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sociale (0.12 sec)

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

    	}
    	// match: (LEAQ2 [off] {sym} x (MOVQconst [scale]))
    	// cond: is32Bit(int64(off)+int64(scale)*2)
    	// result: (LEAQ [off+int32(scale)*2] {sym} x)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		x := v_0
    		if v_1.Op != OpAMD64MOVQconst {
    			break
    		}
    		scale := auxIntToInt64(v_1.AuxInt)
    		if !(is32Bit(int64(off) + int64(scale)*2)) {
    			break
    		}
    		v.reset(OpAMD64LEAQ)
    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