Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for add_args (0.13 sec)

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

    		v8 := b.NewValue0(v.Pos, OpConst16, typ.UInt16)
    		v8.AuxInt = int16ToAuxInt(32)
    		v7.AddArg2(v8, s)
    		v6.AddArg2(v1, v7)
    		v3.AddArg2(v4, v6)
    		v9 := b.NewValue0(v.Pos, OpRsh32Ux16, typ.UInt32)
    		v10 := b.NewValue0(v.Pos, OpSub16, typ.UInt16)
    		v10.AddArg2(s, v8)
    		v9.AddArg2(v1, v10)
    		v2.AddArg2(v3, v9)
    		v.AddArg2(v0, v2)
    		return true
    	}
    }
    func rewriteValuedec64_OpRsh64Ux32(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    		OpPPC64XOR:      OpPPC64XORCC,
    	}
    	b := op.Block
    	opCC := b.NewValue0I(op.Pos, ccOpMap[op.Op], types.NewTuple(op.Type, types.TypeFlags), op.AuxInt)
    	opCC.AddArgs(op.Args...)
    	op.reset(OpSelect0)
    	op.AddArgs(opCC)
    	return op
    }
    
    // Try converting a RLDICL to ANDCC. If successful, return the mask otherwise 0.
    func convertPPC64RldiclAndccconst(sauxint int64) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // the args are easy, CLI only since maven.config file can only contain options
            for (String arg : mavenCli.getArgs()) {
                commandLineBuilder.addArg(arg);
            }
    
            /* Although this looks wrong in terms of order Commons CLI stores the value of options in
             * an array and when a value is potentionally overriden it is added to the array. The single
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // original graph that has an output edge in the subgraph, and whose second
      // element is the arg node in the subgraph that it sends to. The vector will
      // be filled in below in AddArgs.
      std::vector<std::pair<const Node*, Node*>> src_arg_pairs;
    
      TF_RETURN_IF_ERROR(CopySubgraphNodes(&node_images));
      TF_RETURN_IF_ERROR(CopySubgraphEdges(node_images, &src_arg_pairs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    						best = b
    						bestArg = e.c
    						bestDepth = depth
    						break
    					}
    				}
    			}
    		}
    
    		// Put the spill in the best block we found.
    		spill.Block = best
    		spill.AddArg(bestArg)
    		if best == v.Block && !mustBeFirst(v.Op) {
    			// Place immediately after v.
    			after[v.ID] = append(after[v.ID], spill)
    		} else {
    			// Place at the start of best block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top