Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 275 for clobber (0.22 sec)

  1. src/runtime/stubs.go

    // getclosureptr can only be used in an assignment statement
    // at the entry of a function. Moreover, go:nosplit directive
    // must be specified at the declaration of caller function,
    // so that the function prolog does not clobber the closure register.
    // for example:
    //
    //	//go:nosplit
    //	func f(arg1, arg2, arg3 int) {
    //		dx := getclosureptr()
    //	}
    //
    // The compiler rewrites calls to this function into instructions that fetch the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/runtime/extern.go

    time.
    
    The GODEBUG variable controls debugging variables within the runtime.
    It is a comma-separated list of name=val pairs setting these named variables:
    
    	clobberfree: setting clobberfree=1 causes the garbage collector to
    	clobber the memory content of an object with bad content when it frees
    	the object.
    
    	cpu.*: cpu.all=off disables the use of all optional instruction set extensions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/writebarrier.go

    		// find the memory before the WB stores
    		mem := stores[0].MemoryArg()
    		pos := stores[0].Pos
    
    		// If the source of a MoveWB is volatile (will be clobbered by a
    		// function call), we need to copy it to a temporary location, as
    		// marshaling the args of wbMove might clobber the value we're
    		// trying to move.
    		// Look for volatile source, copy it to temporary before we check
    		// the write barrier flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. test/live_regabi.go

    	f43([]*int{&p, &r, &q})
    	f43([]*int{&q, &p, &r})
    }
    
    //go:noescape
    func f43(a []*int)
    
    // Assigning to a sub-element that makes up an entire local variable
    // should clobber that variable.
    func f44(f func() [2]*int) interface{} { // ERROR "live at entry to f44: f"
    	type T struct {
    		s [1][2]*int
    	}
    	ret := T{} // ERROR "stack object ret T"
    	ret.s[0] = f()
    	return ret
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// result: (MSUBW a x y)
    	for {
    		a := v_0
    		l := v_1
    		if l.Op != OpARM64MULW {
    			break
    		}
    		y := l.Args[1]
    		x := l.Args[0]
    		if !(v.Type.Size() <= 4 && l.Uses == 1 && clobber(l)) {
    			break
    		}
    		v.reset(OpARM64MSUBW)
    		v.AddArg3(a, x, y)
    		return true
    	}
    	// match: (SUB a l:(MNEGW x y))
    	// cond: v.Type.Size() <= 4 && l.Uses==1 && clobber(l)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      // Whether to replace quantization params of the first dequantize op
      // after the quantized value is produced.
      // If there is a use other than the requantize states, then we can't clobber.
      bool clobber_first = num_uses <= states.size();
      for (RequantizeState& state : states) {
        Type expressed_type = QuantizedType::castToExpressedType(value.getType());
        if (!expressed_type) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		xergp       = regInfo{inputs: []regMask{xer}, outputs: []regMask{gp}, clobbers: xer}
    		gp11cxer    = regInfo{inputs: []regMask{gp | sp | sb}, outputs: []regMask{gp}, clobbers: xer}
    		gp11xer     = regInfo{inputs: []regMask{gp | sp | sb}, outputs: []regMask{gp, xer}}
    		gp1xer1xer  = regInfo{inputs: []regMask{gp | sp | sb, xer}, outputs: []regMask{gp, xer}, clobbers: xer}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/obj7.go

    				q1.From.Offset = REGLINK
    				q1.To.Type = obj.TYPE_MEM
    				q1.To.Reg = REG_R20
    				q1.To.Offset = -8
    
    				// This is not async preemptible, as if we open a frame
    				// at the current SP, it will clobber the saved LR.
    				q1 = c.ctxt.StartUnsafePoint(q1, c.newprog)
    
    				// MOVD R20, RSP
    				q1 = obj.Appendp(q1, c.newprog)
    				q1.Pos = p.Pos
    				q1.As = AMOVD
    				q1.From.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. src/go/types/infer.go

    	for _, arg := range args {
    		if arg.mode == invalid {
    			return nil
    		}
    	}
    
    	// Make sure we have a "full" list of type arguments, some of which may
    	// be nil (unknown). Make a copy so as to not clobber the incoming slice.
    	if len(targs) < n {
    		targs2 := make([]Type, n)
    		copy(targs2, targs)
    		targs = targs2
    	}
    	// len(targs) == n
    
    	// Continue with the type arguments we have. Avoid matching generic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

        if (llvm::isa<FixedOutputRangeInterface, SameScalesOpInterface>(def) ||
            !def->hasTrait<OpTrait::quant::QuantizableResult>()) {
          return failure();
        }
    
        // This op should not clobber def, if more than one requant of this value.
        if (!pre_quantized.hasOneUse()) {
          return failure();
        }
    
        op.emitWarning("Remove trivial `rescale` op. Please fix the source graph.");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top