Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for andc (0.04 sec)

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

    				continue
    			}
    			v.reset(OpPPC64RLWINM)
    			v.AuxInt = int64ToAuxInt(mergePPC64AndSrwi(m, s))
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    	// match: (AND x (NOR y y))
    	// result: (ANDN x y)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpPPC64NOR {
    				continue
    			}
    			y := v_1.Args[1]
    			if y != v_1.Args[0] {
    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

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ADDE x y (FlagEQ))
    	// result: (ADDC x y)
    	for {
    		x := v_0
    		y := v_1
    		if v_2.Op != OpS390XFlagEQ {
    			break
    		}
    		v.reset(OpS390XADDC)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (ADDE x y (FlagLT))
    	// result: (ADDC x y)
    	for {
    		x := v_0
    		y := v_1
    		if v_2.Op != OpS390XFlagLT {
    			break
    		}
    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/ssagen/ssa.go

    	r := s.variable(ternaryVar, x.Type)
    	delete(s.vars, ternaryVar)
    	return r
    }
    
    // condBranch evaluates the boolean expression cond and branches to yes
    // if cond is true and no if cond is false.
    // This function is intended to handle && and || better than just calling
    // s.expr(cond) and branching on the result.
    func (s *state) condBranch(cond ir.Node, yes, no *ssa.Block, likely int8) {
    	switch cond.Op() {
    	case ir.OANDAND:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top