Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ADCconst (0.08 sec)

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

    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueARM_OpARMADCconst(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ADCconst [c] (ADDconst [d] x) flags)
    	// result: (ADCconst [c+d] x flags)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpARMADDconst {
    			break
    		}
    		d := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    		flags := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top