Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for add_args (0.28 sec)

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

    		v2.AuxInt = int64ToAuxInt(-1)
    		v2.AddArg(x)
    		v1.AddArg2(v2, x)
    		v0.AddArg(v1)
    		v.AddArg(v0)
    		return true
    	}
    	// match: (Ctz32 x)
    	// result: (CNTTZW (MOVWZreg x))
    	for {
    		x := v_0
    		v.reset(OpPPC64CNTTZW)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVWZreg, typ.Int64)
    		v0.AddArg(x)
    		v.AddArg(v0)
    		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/ssagen/ssa.go

    			// Make new structure.
    			new := s.newValue0(ssa.StructMakeOp(t.NumFields()), t)
    
    			// Add fields as args.
    			for i := 0; i < nf; i++ {
    				if i == idx {
    					new.AddArg(right)
    				} else {
    					new.AddArg(s.newValue1I(ssa.OpStructSelect, t.FieldType(i), int64(i), old))
    				}
    			}
    
    			// Recursively assign the new value we've made to the base of the dot op.
    			s.assign(left.X, new, false, 0)
    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