Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 85 for podstore (0.23 sec)

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

    (Store {t} ptr val mem) && t.Size() == 8 && !t.IsFloat() => (MOVVstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 4 &&  t.IsFloat() => (MOVFstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 8 &&  t.IsFloat() => (MOVDstore ptr val mem)
    
    // zeroing
    (Zero [0] _ mem) => mem
    (Zero [1] ptr mem) => (MOVBstore ptr (MOVVconst [0]) mem)
    (Zero [2] {t} ptr mem) && t.Alignment()%2 == 0 =>
    	(MOVHstore ptr (MOVVconst [0]) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  2. src/testdata/Isaac.Newton-Opticks.txt

    and Regress; and when the Image fell upon that Place, I made fast the
    Prism. And in this Posture, as the most convenient, it is to be
    understood that all the Prisms are placed in the following Experiments,
    unless where some other Posture is described. The Prism therefore being
    placed in this Posture, I let the refracted Light fall perpendicularly
    upon a Sheet of white Paper at the opposite Wall of the Chamber, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    		v := c.regoff(&p.To)
    		r := int(p.To.Reg)
    		// Offsets in DS form stores must be a multiple of 4
    		if o.ispfx {
    			o1, o2 = pfxstore(p.As, p.From.Reg, int16(r), PFX_R_ABS)
    			o1 |= uint32((v >> 16) & 0x3FFFF)
    			o2 |= uint32(v & 0xFFFF)
    		} else {
    			inst := c.opstore(p.As)
    			if c.opform(inst) == DS_FORM && v&0x3 != 0 {
    				log.Fatalf("invalid offset for DS form load/store %v", p)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MOVWstore", argLength: 3, reg: gpstore, asm: "MOVW", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 4 bytes
    		{name: "MOVDstore", argLength: 3, reg: gpstore, asm: "MOVD", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 8 bytes
    
    		// Store floating point value into arg0+aux+auxint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// Manage RuntimeClass resources.
    	runtimeClassManager *runtimeclass.Manager
    
    	// Cache last per-container error message to reduce log spam
    	logReduction *logreduction.LogReduction
    
    	// PodState provider instance
    	podStateProvider podStateProvider
    
    	// Use RuntimeDefault as the default seccomp profile for all workloads.
    	seccompDefault bool
    
    	// MemorySwapBehavior defines how swap is used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "MOVWstore", argLength: 3, reg: gpstore, asm: "MOVW", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},       // store 4 bytes in arg1 to arg0+auxint+aux. arg2=mem
    		{name: "MOVDstore", argLength: 3, reg: gpstore, asm: "MOVD", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},       // store 8 bytes in arg1 to arg0+auxint+aux. arg2=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVWstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVW", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},   // store 4 bytes of arg1 to arg0 + auxInt + aux.  arg2=mem.
    		{name: "MOVDstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVD", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},   // store 8 bytes of arg1 to arg0 + auxInt + aux.  arg2=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteARM.go

    		return true
    	}
    	return false
    }
    func rewriteValueARM_OpARMMOVDstore(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MOVDstore [off1] {sym} (ADDconst [off2] ptr) val mem)
    	// result: (MOVDstore [off1+off2] {sym} ptr val mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpARMADDconst {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    		return op_ST, true
    	case AMOVH, AMOVHZ:
    		return op_STH, true
    	case AMOVB, AMOVBZ:
    		return op_STC, true
    	}
    	return 0, false
    }
    
    // zopstore returns the RXY op for the given store.
    func (c *ctxtz) zopstore(a obj.As) uint32 {
    	switch a {
    	// fixed point store
    	case AMOVD:
    		return op_STG
    	case AMOVW, AMOVWZ:
    		return op_STY
    	case AMOVH, AMOVHZ:
    		return op_STHY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    			}
    		}
    	}
    	if isSameCall(sym, "runtime.racefuncenter") {
    		// TODO REGISTER ABI this needs to be cleaned up.
    		// If we're removing racefuncenter, remove its argument as well.
    		if v.Args[0].Op != OpStore {
    			if v.Op == OpStaticLECall {
    				// there is no store, yet.
    				return true
    			}
    			return false
    		}
    		mem := v.Args[0].Args[2]
    		v.Args[0].reset(OpCopy)
    		v.Args[0].AddArg(mem)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top