Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for copyref (2.52 sec)

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

    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVWZreg x:(MOVWZload _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpPPC64MOVWZload {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVWZreg x:(MOVWZloadidx _ _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpPPC64MOVWZloadidx {
    			break
    		}
    		v.copyOf(x)
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		if v_2.Op != OpS390XFlagEQ || !(c&s390x.Equal != 0) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (LOCGR {c} _ x (FlagLT))
    	// cond: c&s390x.Less != 0
    	// result: x
    	for {
    		c := auxToS390xCCMask(v.Aux)
    		x := v_1
    		if v_2.Op != OpS390XFlagLT || !(c&s390x.Less != 0) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (LOCGR {c} _ x (FlagGT))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite386.go

    		x := v_0
    		if x != v_1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386ORLconst(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (ORLconst [c] x)
    	// cond: c==0
    	// result: x
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		x := v_0
    		if !(c == 0) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (ORLconst [c] _)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM.go

    	for {
    		x := v_0
    		if x != v_1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteValueARM_OpARMORconst(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (ORconst [0] x)
    	// result: x
    	for {
    		if auxIntToInt32(v.AuxInt) != 0 {
    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	// match: (ORconst [c] _)
    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