Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TestSPWrite (0.28 sec)

  1. src/runtime/test_stubs.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !amd64
    
    package runtime
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 218 bytes
    - Viewed (0)
  2. src/runtime/test_amd64.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 196 bytes
    - Viewed (0)
  3. src/runtime/test_amd64.s

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Create a large frame to force stack growth. See #62326.
    TEXT ยทtestSPWrite(SB),0,$16384-0
    	// Write to SP
    	MOVQ SP, AX
    	ANDQ $~0xf, SP
    	MOVQ AX, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 316 bytes
    - Viewed (0)
  4. src/runtime/tracebackx_test.go

    	// that writes to SP. See #62326.
    
    	// Start a goroutine to minimize the initial stack and ensure we grow the stack.
    	done := make(chan bool)
    	go func() {
    		testSPWrite() // Defined in assembly
    		done <- true
    	}()
    	<-done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 509 bytes
    - Viewed (0)
  5. src/runtime/import_test.go

    )
    
    func init() {
    	runtime.FmtSprintf = fmt.Sprintf
    	runtime.TestenvOptimizationOff = testenv.OptimizationOff
    }
    
    func TestInlineUnwinder(t *testing.T) {
    	runtime.XTestInlineUnwinder(t)
    }
    
    func TestSPWrite(t *testing.T) {
    	runtime.XTestSPWrite(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top