Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for add_args (0.16 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/match.go

    			t.RegionID = Region(x.region)
    		}
    		return true
    	}
    	return false
    }
    
    // Maximize returns a new tag with missing tags filled in.
    func (t Tag) Maximize() (Tag, error) {
    	return addTags(t)
    }
    
    func addTags(t Tag) (Tag, error) {
    	// We leave private use identifiers alone.
    	if t.IsPrivateUse() {
    		return t, nil
    	}
    	if t.ScriptID != 0 && t.RegionID != 0 {
    		if t.LangID != 0 {
    			// already fully specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/raise_custom_ops.cc

        new_block->addArguments(op->getOperandTypes(),
                                SmallVector<Location>(op->getNumOperands(), loc));
        for (const auto &idx_args : llvm::enumerate(new_block->getArguments())) {
          inner_op->setOperand(idx_args.index(), idx_args.value());
        }
        custom_op->setAttrs(inner_op->getAttrs());
        builder.create<YieldOp>(loc, inner_op->getResults());
        custom_op.getBody().takeBody(region);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/shortcircuit.go

    			// this handles all other uses of v.
    			argP, argQ := v.Args[cidx], v.Args[1^cidx]
    			u.replaceUses(v, argQ)
    			phi := t.Func.newValue(OpPhi, v.Type, t, v.Pos)
    			phi.AddArg2(argQ, argP)
    			t.replaceUses(v, phi)
    			if v.Uses == 0 {
    				return
    			}
    			v.moveTo(m, i)
    			// The phi in m belongs to whichever pred idx corresponds to t.
    			if m.Preds[0].b == t {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. src/reflect/abi.go

    		e = len(a.steps)
    	} else {
    		e = a.valueStart[i+1]
    	}
    	return a.steps[s:e]
    }
    
    // addArg extends the abiSeq with a new Go value of type t.
    //
    // If the value was stack-assigned, returns the single
    // abiStep describing that translation, and nil otherwise.
    func (a *abiSeq) addArg(t *abi.Type) *abiStep {
    	// We'll always be adding a new value, so do that first.
    	pStart := len(a.steps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    		if t.RegionID == 0 && t.ScriptID != 0 && t.LangID != 0 {
    			base, _ := addTags(Tag{LangID: t.LangID})
    			if base.ScriptID == t.ScriptID {
    				return Tag{LangID: t.LangID}
    			}
    		}
    		return t
    	}
    	if t.LangID != 0 {
    		if t.RegionID != 0 {
    			maxScript := t.ScriptID
    			if maxScript == 0 {
    				max, _ := addTags(t)
    				maxScript = max.ScriptID
    			}
    
    			for i := range parents {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    				// Fix up child to have one more predecessor.
    				child.Preds = append(child.Preds, Edge{p, pk.i})
    				ai := b.Succs[out].i
    				for _, v := range child.Values {
    					if v.Op != OpPhi {
    						continue
    					}
    					v.AddArg(v.Args[ai])
    				}
    				if b.Func.pass.debug > 0 {
    					b.Func.Warnl(b.Controls[0].Pos, "Redirect %s based on %s", b.Controls[0].Op, p.Controls[0].Op)
    				}
    				changed = true
    				k--
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/loopreschedchecks.go

    		mem1 := sched.NewValue1I(bb.Pos, OpSelectN, types.TypeMem, 0, call)
    		sched.AddEdgeTo(h)
    		headerMemPhi.AddArg(mem1)
    
    		bb.Succs[p.i] = Edge{test, 0}
    		test.Preds = append(test.Preds, Edge{bb, p.i})
    
    		// Must correct all the other phi functions in the header for new incoming edge.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/branchelim.go

    	for _, v := range post.Values {
    		if v.Op != OpPhi {
    			continue
    		}
    		v.Op = OpCondSelect
    		if swap {
    			v.Args[0], v.Args[1] = v.Args[1], v.Args[0]
    		}
    		v.AddArg(dom.Controls[0])
    	}
    
    	// Put all of the instructions into 'dom'
    	// and update the CFG appropriately.
    	dom.Kind = post.Kind
    	dom.CopyControls(post)
    	dom.Aux = post.Aux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/writebarrier.go

    	for i := 0; i < nargs; i++ {
    		argTypes[i] = typ
    	}
    	call := b.NewValue0A(pos, OpStaticCall, types.TypeResultMem, StaticAuxCall(fn, b.Func.ABIDefault.ABIAnalyzeTypes(argTypes, nil)))
    	call.AddArgs(args...)
    	call.AuxInt = int64(nargs) * typ.Size()
    	return b.NewValue1I(pos, OpSelectN, types.TypeMem, 0, call)
    }
    
    // round to a multiple of r, r is a power of 2.
    func round(o int64, r int64) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/sccp.go

    	// change its value immediately after visiting Phi, because some of its input
    	// edges may still not be visited at this moment.
    	constValue := f.newValue(val.Op, val.Type, f.Entry, val.Pos)
    	constValue.AddArgs(args...)
    	matched := rewriteValuegeneric(constValue)
    	if matched {
    		if isConst(constValue) {
    			return lattice{constant, constValue}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top