Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 275 for clobber (0.13 sec)

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

    		v = leftShift(loadBlock, pos, v, shift0-(n-1)*size*8)
    	}
    
    	// Install with (Copy v).
    	root.reset(OpCopy)
    	root.AddArg(v)
    
    	// Clobber the loads, just to prevent additional work being done on
    	// subtrees (which are now unreachable).
    	for i := int64(0); i < n; i++ {
    		clobber(r[i].load)
    	}
    	return true
    }
    
    func memcombineStores(f *Func) {
    	mark := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(mark)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/inittask.go

    		ctxt.mainInittasks = ctxt.inittaskSym([]string{fmt.Sprintf("%s..inittask", objabi.PathToPrefix(*flagPluginPath))}, "go:plugin.inittasks")
    		// Make symbol local so multiple plugins don't clobber each other's inittask list.
    		ctxt.loader.SetAttrLocal(ctxt.mainInittasks, true)
    	case BuildModeShared:
    		// For a shared library, all packages are roots.
    		var roots []string
    		for _, lib := range ctxt.Library {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	// cond: canMergeLoad(v, l) && clobber(l)
    	// result: (CMPBload {sym} [off] ptr x mem)
    	for {
    		l := v_0
    		if l.Op != OpAMD64MOVBload {
    			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(OpAMD64CMPBload)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. src/runtime/race_arm64.s

    	load_g
    	MOVD	g_racectx(g), R0	// goroutine context
    	BL	racecall<>(SB)
    	MOVD	R21, R9	// restore the original function
    	// Call the atomic function.
    	// racecall will call LLVM race code which might clobber R28 (g)
    	load_g
    	MOVD	g_racectx(g), R0	// goroutine context
    	MOVD	16(RSP), R1	// caller pc
    	MOVD	R9, R2	// pc
    	ADD	$40, RSP, R3	// arguments
    	BL	racecall<>(SB)
    	// Call __tsan_go_ignore_sync_end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. tools/build-base-images.sh

    # * export DOCKER_ARCHITECTURES="linux/amd64,linux/arm64"
    # Note: if you already have a container builder before running the qemu setup you will need to restart them
    "${ROOT}/tools/docker" --push --no-cache --no-clobber --targets="${DOCKER_TARGETS}"
    
    APKO_IMAGES=""
    for h in ${HUBS}; do
      for t in ${TAGS:-$TAG}; do
        APKO_IMAGES+="${h}/iptables:$t "
      done
    done
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    	.globl	notoc_func
    	.type	notoc_func, @function
    notoc_func:
    	// Save R2 and LR and stack a frame.
    	mflr	0
    	std	0,16(1)
    	stdu	1,-32(1)
    
    	// Save R2 in TOC save slot.
    	std	2,24(1)
    
    	// clobber R2
    	li	2,0
    
    	// Call type2_func. A call stub from notoc to toc should be inserted.
    	bl	toc_func@notoc
    
    	// Call libc random. A notoc plt stub should be inserted.
    	bl	random@notoc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/go/types/conversions.go

    			}
    			*cause = msg
    		}
    	}
    
    	// generic cases with specific type terms
    	// (generic operands cannot be constants, so we can ignore x.val)
    	switch {
    	case Vp != nil && Tp != nil:
    		x := *x // don't clobber outer x
    		return Vp.is(func(V *term) bool {
    			if V == nil {
    				return false // no specific types
    			}
    			x.typ = V.typ
    			return Tp.is(func(T *term) bool {
    				if T == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/runtime/signal_riscv64.go

    	c.set_gp(uint64(uintptr(unsafe.Pointer(gp))))
    	c.set_pc(uint64(abi.FuncPCABIInternal(sigpanic)))
    }
    
    func (c *sigctxt) pushCall(targetPC, resumePC uintptr) {
    	// Push the LR to stack, as we'll clobber it in order to
    	// push the call. The function being pushed is responsible
    	// for restoring the LR and setting the SP back.
    	// This extra slot is known to gentraceback.
    	sp := c.sp() - goarch.PtrSize
    	c.set_sp(sp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390X.rules

      && clobber(x)
      => (STMG3 [i-16] {s} p w0 w1 w2 mem)
    (MOVDstore [i] {s} p w3 x:(STMG3 [i-24] {s} p w0 w1 w2 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-24)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STMG4 [i-24] {s} p w0 w1 w2 w3 mem)
    (STMG2 [i] {s} p w2 w3 x:(STMG2 [i-16] {s} p w0 w1 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-16)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STMG4 [i-16] {s} p w0 w1 w2 w3 mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  10. tools/docker-builder/main.go

    	rootCmd.Flags().BoolVar(&globalArgs.NoCache, "no-cache", globalArgs.NoCache, "disable caching")
    	rootCmd.Flags().BoolVar(&globalArgs.NoClobber, "no-clobber", globalArgs.NoClobber, "do not allow pushing images that already exist")
    	rootCmd.Flags().StringVar(&globalArgs.Builder, "builder", globalArgs.Builder, "type of builder to use. options are crane or docker")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top