Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 137 for noframes (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/asm_arm.s

    // instructions, use:
    //
    //	TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    //		B	runtime·armPublicationBarrier(SB)
    //
    TEXT runtime·armPublicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	MOVB	runtime·goarm(SB), R11
    	CMP	$7, R11
    	BLT	2(PC)
    	DMB	MB_ST
    	RET
    
    // AES hashing not implemented for ARM
    TEXT runtime·memhash(SB),NOSPLIT|NOFRAME,$0-16
    	JMP	runtime·memhashFallback(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  5. src/log/slog/value.go

    	return AnyValue(err)
    }
    
    func stack(skip, nFrames int) string {
    	pcs := make([]uintptr, nFrames+1)
    	n := runtime.Callers(skip+1, pcs)
    	if n == 0 {
    		return "(no stack)"
    	}
    	frames := runtime.CallersFrames(pcs[:n])
    	var b strings.Builder
    	i := 0
    	for {
    		frame, more := frames.Next()
    		fmt.Fprintf(&b, "called from %s (%s:%d)\n", frame.Function, frame.File, frame.Line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/runtime/sys_freebsd_arm.s

    	MOVW.CS	R8, (R8)
    	JMP	0(PC)
    
    TEXT runtime·open(SB),NOSPLIT|NOFRAME,$0
    	MOVW name+0(FP), R0	// arg 1 name
    	MOVW mode+4(FP), R1	// arg 2 mode
    	MOVW perm+8(FP), R2	// arg 3 perm
    	MOVW $SYS_open, R7
    	SWI $0
    	MOVW.CS	$-1, R0
    	MOVW	R0, ret+12(FP)
    	RET
    
    TEXT runtime·read(SB),NOSPLIT|NOFRAME,$0
    	MOVW fd+0(FP), R0	// arg 1 fd
    	MOVW p+4(FP), R1	// arg 2 buf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_arm64.s

    TEXT runtime·sigaltstack(SB),NOSPLIT|NOFRAME,$0
    	MOVD	new+0(FP), R0
    	MOVD	old+8(FP), R1
    	MOVD	$SYS_sigaltstack, R8
    	SVC
    	CMN	$4095, R0
    	BCC	ok
    	MOVD	$0, R0
    	MOVD	R0, (R0)	// crash
    ok:
    	RET
    
    TEXT runtime·osyield(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$SYS_sched_yield, R8
    	SVC
    	RET
    
    TEXT runtime·sched_getaffinity(SB),NOSPLIT|NOFRAME,$0
    	MOVD	pid+0(FP), R0
    	MOVD	len+8(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  8. src/runtime/asm_mipsx.s

    	UNDEF
    
    // AES hashing not implemented for mips
    TEXT runtime·memhash(SB),NOSPLIT|NOFRAME,$0-16
    	JMP	runtime·memhashFallback(SB)
    TEXT runtime·strhash(SB),NOSPLIT|NOFRAME,$0-12
    	JMP	runtime·strhashFallback(SB)
    TEXT runtime·memhash32(SB),NOSPLIT|NOFRAME,$0-12
    	JMP	runtime·memhash32Fallback(SB)
    TEXT runtime·memhash64(SB),NOSPLIT|NOFRAME,$0-12
    	JMP	runtime·memhash64Fallback(SB)
    
    TEXT runtime·return0(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/runtime/sys_netbsd_arm.s

    	MOVW R8, (R8)
    	JMP 0(PC)
    
    TEXT runtime·open(SB),NOSPLIT|NOFRAME,$0
    	MOVW name+0(FP), R0
    	MOVW mode+4(FP), R1
    	MOVW perm+8(FP), R2
    	SWI $SYS_open
    	MOVW.CS	$-1, R0
    	MOVW	R0, ret+12(FP)
    	RET
    
    TEXT runtime·closefd(SB),NOSPLIT|NOFRAME,$0
    	MOVW fd+0(FP), R0
    	SWI $SYS_close
    	MOVW.CS	$-1, R0
    	MOVW	R0, ret+4(FP)
    	RET
    
    TEXT runtime·read(SB),NOSPLIT|NOFRAME,$0
    	MOVW fd+0(FP), R0
    	MOVW p+4(FP), R1
    	MOVW n+8(FP), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/runtime/stack_test.go

    func TestStackWrapperCallers(t *testing.T) {
    	var d structWithMethod
    	wrapper := (*structWithMethod).callers
    	// Check that <autogenerated> doesn't appear in the stack trace.
    	pcs := wrapper(&d)
    	frames := CallersFrames(pcs)
    	for {
    		fr, more := frames.Next()
    		if fr.File == "<autogenerated>" {
    			t.Fatalf("<autogenerated> appears in stack trace: %+v", fr)
    		}
    		if !more {
    			break
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top