Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 418 for noframes (0.15 sec)

  1. src/runtime/rt0_darwin_arm64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "cgo/abi_arm64.h"
    
    TEXT _rt0_arm64_darwin(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$runtime·rt0_go(SB), R2
    	BL	(R2)
    exit:
    	MOVD	$0, R0
    	MOVD	$1, R16	// sys_exit
    	SVC	$0x80
    	B	exit
    
    // When linking with -buildmode=c-archive or -buildmode=c-shared,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. src/runtime/wincallback.go

    // appropriately so different callbacks start with different
    // CALL instruction in runtime·callbackasm. This determines
    // which Go callback function is executed later on.
    
    TEXT runtime·callbackasm(SB),NOSPLIT|NOFRAME,$0
    `)
    	for i := 0; i < maxCallback; i++ {
    		buf.WriteString("\tCALL\truntime·callbackasm1(SB)\n")
    	}
    
    	filename := fmt.Sprintf("zcallback_windows.s")
    	err := os.WriteFile(filename, buf.Bytes(), 0666)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:29:51 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/runtime/atomic_riscv64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // func publicationBarrier()
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	FENCE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 15 07:13:18 UTC 2020
    - 275 bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/framepointer_arm64.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.
    
    #include "textflag.h"
    
    TEXT	·getFP(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD	R29, ret+0(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:58:13 UTC 2023
    - 249 bytes
    - Viewed (0)
  5. src/runtime/tls_ppc64x.s

    // ppc64 code that will overwrite this register.
    //
    // If !iscgo, this is a no-op.
    //
    // NOTE: setg_gcc<> assume this clobbers only R31.
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    #ifndef GOOS_aix
    #ifndef GOOS_openbsd
    	MOVBZ	runtime·iscgo(SB), R31
    	CMP	R31, $0
    	BEQ	nocgo
    #endif
    #endif
    	MOVD	runtime·tls_g(SB), R31
    	MOVD	g, 0(R31)
    
    nocgo:
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/internal/bytealg/equal_arm.s

    TEXT runtime·memequal(SB),NOSPLIT|NOFRAME,$0-13
    	MOVW	a+0(FP), R0
    	MOVW	b+4(FP), R2
    	CMP	R0, R2
    	B.EQ	eq
    	MOVW	size+8(FP), R1
    	CMP	$0, R1
    	B.EQ	eq		// short path to handle 0-byte case
    	MOVW	$ret+12(FP), R7
    	B	memeqbody<>(SB)
    eq:
    	MOVW	$1, R0
    	MOVB	R0, ret+12(FP)
    	RET
    
    // memequal_varlen(a, b unsafe.Pointer) bool
    TEXT runtime·memequal_varlen(SB),NOSPLIT|NOFRAME,$0-9
    	MOVW	a+0(FP), R0
    	MOVW	b+4(FP), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 00:56:36 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. src/runtime/rt0_linux_mips64x.s

    //go:build linux && (mips64 || mips64le)
    
    #include "textflag.h"
    
    TEXT _rt0_mips64_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _rt0_mips64le_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _main<>(SB),NOSPLIT|NOFRAME,$0
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1014 bytes
    - Viewed (0)
  8. test/fixedbugs/issue11656.dir/asm_ppc64le.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // func syncIcache(p uintptr)
    TEXT main·syncIcache(SB), NOSPLIT|NOFRAME, $0-0
    	SYNC
    	MOVD (R3), R3
    	ICBI (R3)
    	ISYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 15:28:40 UTC 2022
    - 306 bytes
    - Viewed (0)
  9. src/internal/bytealg/equal_riscv64.s

    #define	CTXT	S10
    
    // func memequal(a, b unsafe.Pointer, size uintptr) bool
    TEXT runtime·memequal<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-25
    	// X10 = a_base
    	// X11 = b_base
    	// X12 = size
    	JMP	memequal<>(SB)
    
    // func memequal_varlen(a, b unsafe.Pointer) bool
    TEXT runtime·memequal_varlen<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-17
    	MOV	8(CTXT), X12    // compiler stores size at offset 8 in the closure
    	// X10 = a_base
    	// X11 = b_base
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/runtime/tls_s390x.s

    // s390x code that will overwrite this register.
    //
    // If !iscgo, this is a no-op.
    //
    // NOTE: setg_gcc<> assume this clobbers only R10 and R11.
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVB	runtime·iscgo(SB),  R10
    	CMPBEQ	R10, $0, nocgo
    	MOVW	AR0, R11
    	SLD	$32, R11
    	MOVW	AR1, R11
    	MOVD	runtime·tls_g(SB), R10
    	MOVD	g, 0(R10)(R11*1)
    nocgo:
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 18:56:54 UTC 2016
    - 1.5K bytes
    - Viewed (0)
Back to top