Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xp4 (0.01 sec)

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

    	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
    		var xp4 Pointery2
    		xp4.x[i] = j
    		r += xp4.x[j]
    	}
    
    	return r + G
    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

    	//
    	// =-= 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")
    	obj := filepath.Join(tmpdir, "p.a")
    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