Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SUBVconst (0.19 sec)

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

    	}
    	return false
    }
    func rewriteValueLOONG64_OpLOONG64SUBVconst(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (SUBVconst [0] x)
    	// result: x
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	// match: (SUBVconst [c] (MOVVconst [d]))
    	// result: (MOVVconst [d-c])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	}
    	return false
    }
    func rewriteValueMIPS64_OpMIPS64SUBVconst(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (SUBVconst [0] x)
    	// result: x
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	// match: (SUBVconst [c] (MOVVconst [d]))
    	// result: (MOVVconst [d-c])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
Back to top