Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 418 for noframes (0.21 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/bytealg/compare_arm.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Compare(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	a_base+0(FP), R2
    	MOVW	a_len+4(FP), R0
    	MOVW	b_base+12(FP), R3
    	MOVW	b_len+16(FP), R1
    	ADD	$28, R13, R7
    	B	cmpbody<>(SB)
    
    TEXT runtime·cmpstring(SB),NOSPLIT|NOFRAME,$0-20
    	MOVW	a_base+0(FP), R2
    	MOVW	a_len+4(FP), R0
    	MOVW	b_base+8(FP), R3
    	MOVW	b_len+12(FP), R1
    	ADD	$20, R13, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 16:09:38 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/internal/bytealg/compare_s390x.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Compare(SB),NOSPLIT|NOFRAME,$0-56
    	MOVD	a_base+0(FP), R3
    	MOVD	a_len+8(FP), R4
    	MOVD	b_base+24(FP), R5
    	MOVD	b_len+32(FP), R6
    	LA	ret+48(FP), R7
    	BR	cmpbody<>(SB)
    
    TEXT runtime·cmpstring(SB),NOSPLIT|NOFRAME,$0-40
    	MOVD	a_base+0(FP), R3
    	MOVD	a_len+8(FP), R4
    	MOVD	b_base+16(FP), R5
    	MOVD	b_len+24(FP), R6
    	LA	ret+32(FP), R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. 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)
  10. src/runtime/rt0_ios_amd64.s

    #include "textflag.h"
    
    // internal linking executable entry point.
    // ios/amd64 only supports external linking.
    TEXT _rt0_amd64_ios(SB),NOSPLIT|NOFRAME,$0
    	UNDEF
    
    // library entry point.
    TEXT _rt0_amd64_ios_lib(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:13:24 UTC 2020
    - 425 bytes
    - Viewed (0)
Back to top