Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 228 for topframe (0.14 sec)

  1. src/runtime/textflag.h

    // Only valid on functions that declare a frame size of 0.
    #define NOFRAME 512
    // Function can call reflect.Type.Method or reflect.Type.MethodByName.
    #define REFLECTMETHOD 1024
    // Function is the outermost frame of the call stack. Call stack unwinders
    // should stop at this function.
    #define TOPFRAME 2048
    // Function is an ABI wrapper.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/textflag.go

    	// TODO(mwhudson): only implemented for ppc64x at present.
    	NOFRAME = 512
    
    	// Function can call reflect.Type.Method or reflect.Type.MethodByName.
    	REFLECTMETHOD = 1024
    
    	// Function is the outermost frame of the call stack. Call stack unwinders
    	// should stop at this function.
    	TOPFRAME = 2048
    
    	// Function is an ABI wrapper.
    	ABIWRAPPER = 4096
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/runtime/asm_wasm.s

    	RET
    
    TEXT runtime·abort(SB),NOSPLIT|NOFRAME,$0-0
    	UNDEF
    
    // AES hashing not implemented for wasm
    TEXT runtime·memhash(SB),NOSPLIT|NOFRAME,$0-32
    	JMP	runtime·memhashFallback(SB)
    TEXT runtime·strhash(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·strhashFallback(SB)
    TEXT runtime·memhash32(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash32Fallback(SB)
    TEXT runtime·memhash64(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash64Fallback(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/runtime/sys_netbsd_arm64.s

    ok:
    	MOVW	R0, ret+8(FP)
    	RET
    
    TEXT runtime·read(SB),NOSPLIT|NOFRAME,$0
    	MOVW	fd+0(FP), R0		// arg 1 - fd
    	MOVD	p+8(FP), R1		// arg 2 - buf
    	MOVW	n+16(FP), R2		// arg 3 - count
    	SVC	$SYS_read
    	BCC	ok
    	NEG	R0, R0
    ok:
    	MOVW	R0, ret+24(FP)
    	RET
    
    // func pipe2(flags int32) (r, w int32, errno int32)
    TEXT runtime·pipe2(SB),NOSPLIT|NOFRAME,$0-20
    	ADD	$16, RSP, R0
    	MOVW	flags+0(FP), R1
    	SVC	$SYS_pipe2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. src/runtime/sys_netbsd_amd64.s

    	MOVQ	ctx+24(FP),  DX
    	MOVQ	SP, BX		// callee-saved
    	ANDQ	$~15, SP	// alignment for x86_64 ABI
    	CALL	AX
    	MOVQ	BX, SP
    	RET
    
    // Called using C ABI.
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME|NOFRAME,$0
    	// Transition from C ABI to Go ABI.
    	PUSH_REGS_HOST_TO_ABI0()
    
    	// Set up ABIInternal environment: g in R14, cleared X15.
    	get_tls(R12)
    	MOVQ	g(R12), R14
    	PXOR	X15, X15
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/internal/abi/symtab.go

    const (
    	// FuncFlagTopFrame indicates a function that appears at the top of its stack.
    	// The traceback routine stop at such a function and consider that a
    	// successful, complete traversal of the stack.
    	// Examples of TopFrame functions include goexit, which appears
    	// at the top of a user goroutine stack, and mstart, which appears
    	// at the top of a system goroutine stack.
    	FuncFlagTopFrame FuncFlag = 1 << iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/runtime/sys_netbsd_386.s

    	MOVL	CX, 4(SP)
    	MOVL	DX, 8(SP)
    	MOVL	SI, 12(SP)	// save SI: handler might be a Go function
    	CALL	AX
    	MOVL	12(SP), AX
    	MOVL	AX, SP
    	RET
    
    // Called by OS using C ABI.
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME,$28
    	NOP	SP	// tell vet SP changed - stop checking offsets
    	// Save callee-saved C registers, since the caller may be a C signal handler.
    	MOVL	BX, bx-4(SP)
    	MOVL	BP, bp-8(SP)
    	MOVL	SI, si-12(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/asm_mips64x.s

    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    	MOVV	R0, 2(R0) // TODO: TD
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0
    	JAL	runtime·mstart0(SB)
    	RET // not reached
    
    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtime·gogo(SB), NOSPLIT|NOFRAME, $0-8
    	MOVV	buf+0(FP), R3
    	MOVV	gobuf_g(R3), R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. src/runtime/asm_s390x.s

    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    	BRRK
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0
    	CALL	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: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top