Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xp3 (0.1 sec)

  1. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    	var s Single
    	s.x[i] = j
    	r += s.x[j]
    
    	// Here p1 and p2 interfere, but p1 could be overlapped with xp3 + xp4.
    	var p1, p2 Pointery
    	p1.x[i] = j
    	r += p1.x[j]
    	p2.x[i] = j
    	r += p2.x[j]
    	if j != 505 {
    		var xp3 Pointery2
    		xp3.x[i] = j
    		r += xp3.x[j]
    	}
    
    	if i == j*2 {
    		// p2 live on this path
    		p2.x[i] += j
    		r += p2.x[j]
    	} else {
    		// p2 not live on this path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/mergelocals_test.go

    	// this (for amd64):
    	//
    	// =-= stack layout for ABC:
    	// 2: "p1" frameoff -8200 ...
    	// 3: "s" frameoff -8200 ...
    	// 4: "v2" frameoff -8200 ...
    	// 5: "v3" frameoff -8200 ...
    	// 6: "xp3" frameoff -8200 ...
    	// 7: "xp4" frameoff -8200 ...
    	// 8: "p2" frameoff -16400 ...
    	// 9: "r" frameoff -16408 ...
    	//
    	tmpdir := t.TempDir()
    	src := filepath.Join("testdata", "mergelocals", "integration.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top