Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. prow/config/calico.yaml

                    description: 'IptablesPostWriteCheckInterval is the period after Felix
                      has done a write to the dataplane that it schedules an extra read
                      back in order to check the write was not clobbered by another process.
                      This should only occur if another application on the system doesn''t
                      respect the iptables lock. [Default: 1s]'
                    pattern: ^([0-9]+(\\.[0-9]+)?(ms|s|m|h))*$
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite386.go

    	// cond: canMergeLoad(v, l) && clobber(l)
    	// result: (CMPBload {sym} [off] ptr x mem)
    	for {
    		l := v_0
    		if l.Op != Op386MOVBload {
    			break
    		}
    		off := auxIntToInt32(l.AuxInt)
    		sym := auxToSym(l.Aux)
    		mem := l.Args[1]
    		ptr := l.Args[0]
    		x := v_1
    		if !(canMergeLoad(v, l) && clobber(l)) {
    			break
    		}
    		v.reset(Op386CMPBload)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    	// match: (MOVBZreg <t> x:(MOVBload [o] {s} p mem))
    	// cond: x.Uses == 1 && clobber(x)
    	// result: @x.Block (MOVBZload <t> [o] {s} p mem)
    	for {
    		t := v.Type
    		x := v_0
    		if x.Op != OpS390XMOVBload {
    			break
    		}
    		o := auxIntToInt32(x.AuxInt)
    		s := auxToSym(x.Aux)
    		mem := x.Args[1]
    		p := x.Args[0]
    		if !(x.Uses == 1 && clobber(x)) {
    			break
    		}
    		b = x.Block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: buildcfg.GOPPC64 >= 9 && l.Uses == 1 && clobber(l)
    	// result: (MADDLD x y z)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			l := v_0
    			if l.Op != OpPPC64MULLD {
    				continue
    			}
    			y := l.Args[1]
    			x := l.Args[0]
    			z := v_1
    			if !(buildcfg.GOPPC64 >= 9 && l.Uses == 1 && clobber(l)) {
    				continue
    			}
    			v.reset(OpPPC64MADDLD)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    			return
    		}
    		left := left.(*ir.Name)
    		// Update variable assignment.
    		s.vars[left] = right
    		s.addNamedValue(left, right)
    		return
    	}
    
    	// If this assignment clobbers an entire local variable, then emit
    	// OpVarDef so liveness analysis knows the variable is redefined.
    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