Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ORN (0.07 sec)

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

    func rewriteValuePPC64_OpPPC64ORN(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ORN x (MOVDconst [-1]))
    	// result: x
    	for {
    		x := v_0
    		if v_1.Op != OpPPC64MOVDconst || auxIntToInt64(v_1.AuxInt) != -1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (ORN (MOVDconst [c]) (MOVDconst [d]))
    	// result: (MOVDconst [c|^d])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top