Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 418 for noframes (0.22 sec)

  1. src/cmd/trace/testdata/go122.test

    	pc=5078500 func=35 file=36 line=68
    Stack id=13 nframes=1
    	pc=5077820 func=35 file=36 line=28
    Stack id=65 nframes=2
    	pc=4224086 func=57 file=58 line=145
    	pc=5080123 func=59 file=36 line=94
    Stack id=21 nframes=3
    	pc=4640852 func=60 file=61 line=195
    	pc=5081128 func=62 file=36 line=125
    	pc=5077843 func=35 file=36 line=32
    Stack id=11 nframes=1
    	pc=5077754 func=35 file=36 line=27
    Stack id=10 nframes=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_riscv64.s

    	RET
    
    // func Load(ptr *uint32) uint32
    TEXT ·Load(SB),NOSPLIT|NOFRAME,$0-12
    	MOV	ptr+0(FP), A0
    	LRW	(A0), A0
    	MOVW	A0, ret+8(FP)
    	RET
    
    // func Load8(ptr *uint8) uint8
    TEXT ·Load8(SB),NOSPLIT|NOFRAME,$0-9
    	MOV	ptr+0(FP), A0
    	FENCE
    	MOVBU	(A0), A1
    	FENCE
    	MOVB	A1, ret+8(FP)
    	RET
    
    // func Load64(ptr *uint64) uint64
    TEXT ·Load64(SB),NOSPLIT|NOFRAME,$0-16
    	MOV	ptr+0(FP), A0
    	LRD	(A0), A0
    	MOV	A0, ret+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/runtime/rt0_linux_arm.s

    #include "textflag.h"
    
    TEXT _rt0_arm_linux(SB),NOSPLIT|NOFRAME,$0
    	MOVW	(R13), R0	// argc
    	MOVW	$4(R13), R1		// argv
    	MOVW	$_rt0_arm_linux1(SB), R4
    	B		(R4)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm_linux_lib(SB),NOSPLIT,$0
    	B	_rt0_arm_lib(SB)
    
    TEXT _rt0_arm_linux1(SB),NOSPLIT|NOFRAME,$0
    	// We first need to detect the kernel ABI, and warn the user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:30 UTC 2018
    - 1007 bytes
    - Viewed (0)
  4. 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)
  5. src/internal/bytealg/indexbyte_s390x.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·IndexByte(SB),NOSPLIT|NOFRAME,$0-40
    	MOVD	b_base+0(FP), R3// b_base => R3
    	MOVD	b_len+8(FP), R4 // b_len => R4
    	MOVBZ	c+24(FP), R5    // c => R5
    	MOVD	$ret+32(FP), R2 // &ret => R9
    	BR	indexbytebody<>(SB)
    
    TEXT ·IndexByteString(SB),NOSPLIT|NOFRAME,$0-32
    	MOVD	s_base+0(FP), R3// s_base => R3
    	MOVD	s_len+8(FP), R4 // s_len => R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/rt0_linux_loong64.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_loong64.h"
    
    TEXT _rt0_loong64_linux(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: Mon Apr 10 15:50:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/runtime/asm_arm64.s

    #endif 				\
    
    
    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    	BREAK
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0
    	BL	runtime·mstart0(SB)
    	RET // not reached
    
    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtime·gogo(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD	buf+0(FP), R5
    	MOVD	gobuf_g(R5), R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top