Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 179 for NoFrame (0.48 sec)

  1. src/runtime/rt0_linux_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_linux(SB),NOSPLIT|NOFRAME,$0
    	MOVD	0(RSP), R0	// argc
    	ADD	$8, RSP, R1	// argv
    	BL	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm64_linux_lib(SB),NOSPLIT,$184
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/runtime/asm_mips64x.s

    	JAL	runtime·save_g(SB)
    	RET
    
    TEXT runtime·abort(SB),NOSPLIT|NOFRAME,$0-0
    	MOVW	(R0), R0
    	UNDEF
    
    // AES hashing not implemented for mips64
    TEXT runtime·memhash(SB),NOSPLIT|NOFRAME,$0-32
    	JMP	runtime·memhashFallback(SB)
    TEXT runtime·strhash(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·strhashFallback(SB)
    TEXT runtime·memhash32(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash32Fallback(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    TEXT runtime·retpolineR8(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(8)
    TEXT runtime·retpolineR9(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(9)
    TEXT runtime·retpolineR10(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(10)
    TEXT runtime·retpolineR11(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(11)
    TEXT runtime·retpolineR12(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(12)
    TEXT runtime·retpolineR13(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. 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)
  5. src/runtime/sys_windows_amd64.s

    // in the context that starts executing at sigresume.
    TEXT runtime·sigresume(SB),NOSPLIT|NOFRAME,$0
    	MOVQ	R8, SP
    	JMP	R9
    
    TEXT runtime·exceptiontramp(SB),NOSPLIT|NOFRAME,$0
    	// PExceptionPointers already on CX
    	MOVQ	$const_callbackVEH, DX
    	JMP	sigtramp<>(SB)
    
    TEXT runtime·firstcontinuetramp(SB),NOSPLIT|NOFRAME,$0-0
    	// PExceptionPointers already on CX
    	MOVQ	$const_callbackFirstVCH, DX
    	JMP	sigtramp<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/runtime/rt0_freebsd_arm64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "cgo/abi_arm64.h"
    
    // On FreeBSD argc/argv are passed in R0, not RSP
    TEXT _rt0_arm64_freebsd(SB),NOSPLIT|NOFRAME,$0
    	ADD	$8, R0, R1	// argv
    	MOVD	0(R0), R0	// argc
    	BL	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm64_freebsd_lib(SB),NOSPLIT,$184
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. src/internal/bytealg/count_ppc64x.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Count<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40
    	// R3 = byte array pointer
    	// R4 = length
    	// R6 = byte to count
    	MTVRD	R6, V1		// move compare byte
    	MOVD	R6, R5
    	VSPLTB	$7, V1, V1	// replicate byte across V1
    	BR	countbytebody<>(SB)
    
    TEXT ·CountString<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-32
    	// R3 = byte array pointer
    	// R4 = length
    	// R5 = byte to count
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/runtime/asm_riscv64.s

    TEXT runtime·memhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-32
    	JMP	runtime·memhashFallback<ABIInternal>(SB)
    TEXT runtime·strhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·strhashFallback<ABIInternal>(SB)
    TEXT runtime·memhash32<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash32Fallback<ABIInternal>(SB)
    TEXT runtime·memhash64<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash64Fallback<ABIInternal>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  9. 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)
  10. src/internal/bytealg/compare_riscv64.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Compare<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-56
    	// X10 = a_base
    	// X11 = a_len
    	// X12 = a_cap (unused)
    	// X13 = b_base (want in X12)
    	// X14 = b_len (want in X13)
    	// X15 = b_cap (unused)
    	MOV	X13, X12
    	MOV	X14, X13
    	JMP	compare<>(SB)
    
    TEXT runtime·cmpstring<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40
    	// X10 = a_base
    	// X11 = a_len
    	// X12 = b_base
    	// X13 = b_len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top