Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 638 for zeroing (0.14 sec)

  1. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    	(MOVWstore [12] ptr (MOVWconst [0])
    		(MOVWstore [8] ptr (MOVWconst [0])
    			(MOVWstore [4] ptr (MOVWconst [0])
    				(MOVWstore [0] ptr (MOVWconst [0]) mem))))
    
    // large or unaligned zeroing uses a loop
    (Zero [s] {t} ptr mem)
    	&& (s > 16  || t.Alignment()%4 != 0) =>
    	(LoweredZero [int32(t.Alignment())]
    		ptr
    		(ADDconst <ptr.Type> ptr [int32(s-moveSize(t.Alignment(), config))])
    		mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// large or unaligned zeroing
    		// arg0 = address of memory to zero (in R3, changed as side effect)
    		// returns mem
    		//
    		// a loop is generated when there is more than one iteration
    		// needed to clear 4 doublewords
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    				}
    				if n.Heapaddr != nil {
    					// If this variable moved to the heap, then
    					// its stack copy is not live.
    					continue
    				}
    				// Note: zeroing is handled by zeroResults in walk.go.
    				livedefer.Set(int32(i))
    			}
    			if n.IsOutputParamHeapAddr() {
    				// This variable will be overwritten early in the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	// if Listener is set, use it and omit BindAddress/BindPort/BindNetwork.
    	Listener net.Listener
    
    	// ServerCert is the TLS cert info for serving secure traffic
    	ServerCert GeneratableKeyCert
    	// SNICertKeys are named CertKeys for serving secure traffic with SNI support.
    	SNICertKeys []cliflag.NamedCertKey
    	// CipherSuites is the list of allowed cipher suites for the server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. doc/asm.html

    At the start of the function, the arguments are assumed
    to be initialized but the results are assumed uninitialized.
    If the results will hold live pointers during a call instruction,
    the function should start by zeroing the results and then
    executing the pseudo-instruction <code>GO_RESULTS_INITIALIZED</code>.
    This instruction records that the results are now initialized
    and should be scanned during stack movement and garbage collection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  6. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VPEXTRW $17, X20, (SP)(AX*2)      // 62e37d0815244411 or 62e3fd0815244411
    	VPEXTRW $127, X20, (SP)(AX*2)     // 62e37d081524447f or 62e3fd081524447f
    	// EVEX: embedded zeroing.
    	VADDPD.Z X30, X1, K7, X0  // 6291f58f58c6
    	VMAXPD.Z (AX), Z2, K1, Z1 // 62f1edc95f08
    	// EVEX: embedded rounding.
    	VADDPD.RU_SAE Z3, Z2, K1, Z1   // 62f1ed5958cb
    	VADDPD.RD_SAE Z3, Z2, K1, Z1   // 62f1ed3958cb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  7. releasenotes/notes/openmetrics-merging.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
    - 33474
    releaseNotes:
    - |
      **Fixed** Prometheus [metrics merging](/docs/ops/integrations/prometheus/#option-1-metrics-merging) to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 14 16:53:19 UTC 2021
    - 335 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM.rules

    			(MOVBstore [0] ptr (MOVWconst [0]) mem)))
    
    // Medium zeroing uses a duff device
    // 4 and 128 are magic constants, see runtime/mkduff.go
    (Zero [s] {t} ptr mem)
    	&& s%4 == 0 && s > 4 && s <= 512
    	&& t.Alignment()%4 == 0 && !config.noDuffDevice =>
    	(DUFFZERO [4 * (128 - s/4)] ptr (MOVWconst [0]) mem)
    
    // Large zeroing uses a loop
    (Zero [s] {t} ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	evexZ := byte(0)
    	evexLL := evex.L()
    	evexB := byte(0)
    	evexV := byte(1)
    	evexA := byte(0)
    	if suffix.zeroing {
    		if !evex.ZeroingEnabled() {
    			ctxt.Diag("unsupported zeroing: %v", p)
    		}
    		if k == nil {
    			// When you request zeroing you must specify a mask register.
    			// See issue 57952.
    			ctxt.Diag("mask register must be specified for .Z instructions: %v", p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    				clobbers: buildReg("R16 R17 R20 R30"),
    			},
    			faultOnNilArg0: true,
    			unsafePoint:    true, // FP maintenance around DUFFZERO can be clobbered by interrupts
    		},
    
    		// large zeroing
    		// arg0 = address of memory to zero (in R16 aka arm64.REGRT1, changed as side effect)
    		// arg1 = address of the last 16-byte unit to zero
    		// arg2 = mem
    		// returns mem
    		//	STP.P	(ZR,ZR), 16(R16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top