Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 367 for noframes (0.27 sec)

  1. src/cmd/link/internal/ld/testdata/stackcheck/main.s

    	CALL ·chainEnd(SB)
    	RET
    TEXT ·chainEnd(SB),NOSPLIT,$1000-0 // Should be reported twice
    	RET
    
    // Test reporting of rootless recursion
    TEXT ·startRec(SB),NOSPLIT|NOFRAME,$0-0
    	CALL ·startRec0(SB)
    	RET
    TEXT ·startRec0(SB),NOSPLIT|NOFRAME,$0-0
    	CALL ·startRec(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 21:35:26 UTC 2023
    - 950 bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/rt0_windows_amd64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    TEXT _rt0_amd64_windows(SB),NOSPLIT|NOFRAME,$-8
    	JMP	_rt0_amd64(SB)
    
    // When building with -buildmode=(c-shared or c-archive), this
    // symbol is called. For dynamic libraries it is called when the
    // library is loaded. For static libraries it is called when the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 19 11:55:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_loong64.s

    TEXT ·LoadAcq(SB),NOSPLIT|NOFRAME,$0-12
    	JMP	·Load(SB)
    
    // uint64 ·LoadAcq64(uint64 volatile* ptr)
    TEXT ·LoadAcq64(SB),NOSPLIT|NOFRAME,$0-16
    	JMP	·Load64(SB)
    
    // uintptr ·LoadAcquintptr(uintptr volatile* ptr)
    TEXT ·LoadAcquintptr(SB),NOSPLIT|NOFRAME,$0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/runtime/sys_windows_arm.s

    TEXT runtime·sigresume(SB),NOSPLIT|NOFRAME,$0
    	// Important: do not smash LR,
    	// which is set to a live value when handling
    	// a signal by pushing a call to sigpanic onto the stack.
    	MOVW	R0, R13
    	B	(R1)
    
    TEXT runtime·exceptiontramp(SB),NOSPLIT|NOFRAME,$0
    	MOVW	$const_callbackVEH, R1
    	B	sigtramp<>(SB)
    
    TEXT runtime·firstcontinuetramp(SB),NOSPLIT|NOFRAME,$0
    	MOVW	$const_callbackFirstVCH, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. src/internal/bytealg/compare_arm64.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Compare<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-56
    	// R0 = a_base (want in R0)
    	// R1 = a_len  (want in R1)
    	// R2 = a_cap  (unused)
    	// R3 = b_base (want in R2)
    	// R4 = b_len  (want in R3)
    	// R5 = b_cap  (unused)
    	MOVD	R3, R2
    	MOVD	R4, R3
    	B	cmpbody<>(SB)
    
    TEXT runtime·cmpstring<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40
    	// R0 = a_base
    	// R1 = a_len
    	// R2 = b_base
    	// R3 = b_len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top