Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for clobber (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		case closure != nil:
    			// rawLoad because loading the code pointer from a
    			// closure is always safe, but IsSanitizerSafeAddr
    			// can't always figure that out currently, and it's
    			// critical that we not clobber any arguments already
    			// stored onto the stack.
    			codeptr = s.rawLoad(types.Types[types.TUINTPTR], closure)
    			aux := ssa.ClosureAuxCall(callABI.ABIAnalyzeTypes(ACArgs, ACResults))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

       ([#123190](https://github.com/kubernetes/kubernetes/pull/123190), [@padlar](https://github.com/padlar))
    - Allowed scheduling framework plugins that implement `io.Closer` to be gracefully closed.
       ([#122498](https://github.com/kubernetes/kubernetes/pull/122498), [@Gekko0114](https://github.com/Gekko0114))
    - Bumped cAdvisor to `v0.49.0`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. 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)
  7. docs/en/docs/release-notes.md

    * ♻ Change a `dict()` for `{}` in `fastapi/utils.py`. PR [#3138](https://github.com/tiangolo/fastapi/pull/3138) by [@ShahriyarR](https://github.com/ShahriyarR).
    * ♻ Move internal variable for errors in `jsonable_encoder` to put related code closer. PR [#4560](https://github.com/tiangolo/fastapi/pull/4560) by [@GuilleQP](https://github.com/GuilleQP).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.13.md

    ### SIG UI
    
    The migration to the newest version of Angular is still under active development as it is most important thing on the roadmap at the moment. We are getting closer to the new release. We continue fixing bugs and adding other improvements.
    
    ### SIG VMWare
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
Back to top