Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for storeVcs (0.17 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "MOVQstoreidx8", argLength: 4, reg: gpstoreidx, asm: "MOVQ", scale: 8, aux: "SymOff", symEffect: "Write"},
    
    		// TODO: add size-mismatched indexed loads/stores, like MOVBstoreidx4?
    
    		// MOVxstoreconst: constant stores
    		// Store (O=16,Q=8,L=4,W=2,B=1) constant bytes.
    		// Does *(arg0+ValAndOff(AuxInt).Off()+aux) = ValAndOff(AuxInt).Val(), arg1=mem.
    		// O version can only store the constant 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/cmd/internal/obj/arm64/asm7.go

    			if isMOVop(p.As) && (cmp(C_LAUTO, a1) || cmp(C_LOREG, a1)) {
    				// More specific classification of large offset loads and stores.
    				a1 = c.loadStoreClass(p, a1, c.instoffset)
    			}
    			if isLoadStorePairOp(p.As) && (cmp(C_LAUTO, a1) || cmp(C_LOREG, a1)) {
    				// More specific classification of large offset loads and stores.
    				a1 = c.loadStorePairClass(p, a1, c.instoffset)
    			}
    		}
    		p.From.Class = int8(a1)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    // The size is needed when setting the offset value in the instruction
    // and when generating relocation for that field.
    // DS form instructions include: ld, ldu, lwa, std, stdu.  All other
    // loads and stores with an offset field are D form.  This function should
    // only be called with the same opcodes as are handled by opstore and opload.
    func (c *ctxt9) opform(insn uint32) int {
    	switch insn {
    	default:
    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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          },
          "required": [
            "type",
            "status"
          ],
          "type": "object"
        },
        "io.k8s.api.apps.v1beta1.DeploymentRollback": {
          "description": "DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    army
    
    // art : 2016-03-24 UK Creative Ideas Limited
    art
    
    // arte : 2014-12-11 Association Relative à la Télévision Européenne G.E.I.E.
    arte
    
    // asda : 2015-07-31 Wal-Mart Stores, Inc.
    asda
    
    // associates : 2014-03-06 Binky Moon, LLC
    associates
    
    // athleta : 2015-07-30 The Gap, Inc.
    athleta
    
    // attorney : 2014-03-20 Dog Beach, LLC
    attorney
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // Load args directly into the register class where it will be used.
    (FMOVDgpfp <t> (Arg [off] {sym})) => @b.Func.Entry (Arg <t> [off] {sym})
    (FMOVDfpgp <t> (Arg [off] {sym})) => @b.Func.Entry (Arg <t> [off] {sym})
    
    // Similarly for stores, if we see a store after FPR <=> GPR move, then redirect store to use the other register set.
    (MOVDstore  [off] {sym} ptr (FMOVDfpgp val) mem) => (FMOVDstore [off] {sym} ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Load <t1> (OffPtr [o] p1) (Zero [n] p2 _))
    	&& is64BitFloat(t1)
    	&& isSamePtr(p1, p2)
    	&& n >= o + 8
    	=> (Const64F [0])
    
    // Eliminate stores of values that have just been loaded from the same location.
    // We also handle the common case where there are some intermediate stores.
    (Store {t1} p1 (Load <t2> p2 mem) mem)
    	&& isSamePtr(p1, p2)
    	&& t2.Size() == t1.Size()
    	=> mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	// variables below.
    	allglock mutex
    	allgs    []*g
    
    	// allglen and allgptr are atomic variables that contain len(allgs) and
    	// &allgs[0] respectively. Proper ordering depends on totally-ordered
    	// loads and stores. Writes are protected by allglock.
    	//
    	// allgptr is updated before allglen. Readers should read allglen
    	// before allgptr to ensure that allglen is always <= len(allgptr). New
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

                "kind": "DeleteOptions",
                "version": "v1alpha1"
              }
            ]
          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                "kind": "DeleteOptions",
                "version": "v1alpha1"
              }
            ]
          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
Back to top