Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for opAddr (0.17 sec)

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

    	}
    	// match: (EqPtr (Addr {x} _) (Addr {y} _))
    	// result: (ConstBool [x == y])
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpAddr {
    				continue
    			}
    			x := auxToSym(v_0.Aux)
    			if v_1.Op != OpAddr {
    				continue
    			}
    			y := auxToSym(v_1.Aux)
    			v.reset(OpConstBool)
    			v.AuxInt = boolToAuxInt(x == y)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    		v.Op = OpARM64FADDS
    		return true
    	case OpAdd64:
    		v.Op = OpARM64ADD
    		return true
    	case OpAdd64F:
    		v.Op = OpARM64FADDD
    		return true
    	case OpAdd8:
    		v.Op = OpARM64ADD
    		return true
    	case OpAddPtr:
    		v.Op = OpARM64ADD
    		return true
    	case OpAddr:
    		return rewriteValueARM64_OpAddr(v)
    	case OpAnd16:
    		v.Op = OpARM64AND
    		return true
    	case OpAnd32:
    		v.Op = OpARM64AND
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top