Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 418 for noframes (0.21 sec)

  1. src/internal/trace/testdata/tests/go122-annotations.test

    	pc=4815228 func=38 file=31 line=27
    Stack id=12 nframes=1
    	pc=4815680 func=34 file=31 line=37
    Stack id=6 nframes=1
    	pc=4544768 func=43 file=42 line=868
    Stack id=2 nframes=3
    	pc=4538523 func=45 file=42 line=238
    	pc=4814277 func=37 file=36 line=125
    	pc=4815228 func=38 file=31 line=27
    Stack id=13 nframes=1
    	pc=4815492 func=38 file=31 line=37
    Stack id=4 nframes=1
    	pc=4547456 func=56 file=50 line=42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_ppc64x.s

    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	code+0(FP), R3
    	SYSCALL	$SYS_exit_group
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT|NOFRAME,$0-8
    	MOVD	wait+0(FP), R1
    	// We're done using the stack.
    	MOVW	$0, R2
    	SYNC
    	MOVW	R2, (R1)
    	MOVW	$0, R3	// exit code
    	SYSCALL	$SYS_exit
    	JMP	0(PC)
    
    TEXT runtime·open(SB),NOSPLIT|NOFRAME,$0-20
    	MOVD	name+0(FP), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. src/runtime/race_amd64.s

    	JMP	racecall<>(SB)
    
    // Atomic operations for sync/atomic package.
    
    // Load
    TEXT	sync∕atomic·LoadInt32(SB), NOSPLIT|NOFRAME, $0-12
    	GO_ARGS
    	MOVQ	$__tsan_go_atomic32_load(SB), AX
    	CALL	racecallatomic<>(SB)
    	RET
    
    TEXT	sync∕atomic·LoadInt64(SB), NOSPLIT|NOFRAME, $0-16
    	GO_ARGS
    	MOVQ	$__tsan_go_atomic64_load(SB), AX
    	CALL	racecallatomic<>(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/runtime/tls_riscv64.s

    // If !iscgo, this is a no-op.
    //
    // NOTE: mcall() assumes this clobbers only X31 (REG_TMP).
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    #ifndef GOOS_openbsd
    	MOVB	runtime·iscgo(SB), X31
    	BEQZ	X31, nocgo
    #endif
    	MOV	g, runtime·tls_g(SB)
    nocgo:
    	RET
    
    TEXT runtime·load_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOV	runtime·tls_g(SB), g
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 615 bytes
    - Viewed (0)
  5. src/runtime/sys_linux_loong64.s

    #define SYS_timer_settime	110
    #define SYS_timer_delete	111
    
    // func exit(code int32)
    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	code+0(FP), R4
    	MOVV	$SYS_exit_group, R11
    	SYSCALL
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT|NOFRAME,$0-8
    	MOVV	wait+0(FP), R19
    	// We're done using the stack.
    	MOVW	$0, R11
    	DBAR
    	MOVW	R11, (R19)
    	DBAR
    	MOVW	$0, R4	// exit code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. src/runtime/mkduff.go

    	fmt.Fprintln(w, "TEXT runtime·duffzero<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-0")
    	for i := 0; i < 128; i++ {
    		fmt.Fprintln(w, "\tMOVV\tR0, (R20)")
    		fmt.Fprintln(w, "\tADDV\t$8, R20")
    	}
    	fmt.Fprintln(w, "\tRET")
    }
    
    func copyLOONG64(w io.Writer) {
    	fmt.Fprintln(w, "TEXT runtime·duffcopy<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-0")
    	for i := 0; i < 128; i++ {
    		fmt.Fprintln(w, "\tMOVV\t(R20), R30")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:21 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. src/runtime/asm_loong64.s

    	RET
    
    TEXT runtime·abort(SB),NOSPLIT|NOFRAME,$0-0
    	MOVW	(R0), R0
    	UNDEF
    
    // AES hashing not implemented for loong64
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/runtime/sys_freebsd_riscv64.s

    	CALL	runtime·mstart(SB)
    
    	WORD	$0	// crash
    	RET
    
    // func exit(code int32)
    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	code+0(FP), A0
    	MOV	$SYS_exit, T0
    	ECALL
    	WORD	$0	// crash
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT|NOFRAME,$0-8
    	MOV	wait+0(FP), A0
    	// We're done using the stack.
    	FENCE
    	MOVW	ZERO, (A0)
    	FENCE
    	MOV	$0, A0	// exit code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. src/runtime/asan_ppc64le.s

    TEXT	runtime·doasanread(SB),NOSPLIT|NOFRAME,$0-32
    	MOVD	addr+0(FP), RARG0
    	MOVD	sz+8(FP), RARG1
    	MOVD	sp+16(FP), RARG2
    	MOVD	pc+24(FP), RARG3
    	// void __asan_read_go(void *addr, uintptr_t sz, void *sp, void *pc);
    	MOVD	$__asan_read_go(SB), FARG
    	BR	asancall<>(SB)
    
    // func runtime·doasanwrite(addr unsafe.Pointer, sz, sp, pc uintptr)
    TEXT	runtime·doasanwrite(SB),NOSPLIT|NOFRAME,$0-32
    	MOVD	addr+0(FP), RARG0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 18:13:33 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_riscv64.s

    #define SYS_timer_settime	110
    #define SYS_tkill		130
    #define SYS_write		64
    
    // func exit(code int32)
    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	code+0(FP), A0
    	MOV	$SYS_exit_group, A7
    	ECALL
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT|NOFRAME,$0-8
    	MOV	wait+0(FP), A0
    	// We're done using the stack.
    	FENCE
    	MOVW	ZERO, (A0)
    	FENCE
    	MOV	$0, A0	// exit code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top