Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for sigpanictramp (0.17 sec)

  1. src/runtime/os3_plan9.go

    		// pc == 0, to make unwinding show the context.
    		if pc != 0 && !findfunc(pc).valid() && findfunc(*(*uintptr)(unsafe.Pointer(sp))).valid() {
    			pc = 0
    		}
    
    		// IF LR exists, sigpanictramp must save it to the stack
    		// before entry to sigpanic so that panics in leaf
    		// functions are correctly handled. This will smash
    		// the stack frame but we're not going back there
    		// anyway.
    		if usesLR {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/runtime/defs_plan9_386.go

    	print("pc    ", hex(u.pc), "\n")
    	print("flags ", hex(u.flags), "\n")
    	print("cs    ", hex(u.cs), "\n")
    	print("fs    ", hex(u.fs), "\n")
    	print("gs    ", hex(u.gs), "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. src/runtime/defs_plan9_arm.go

    	print("r12   ", hex(u.r12), "\n")
    	print("sp    ", hex(u.sp), "\n")
    	print("link  ", hex(u.link), "\n")
    	print("pc    ", hex(u.pc), "\n")
    	print("psr   ", hex(u.psr), "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/defs_plan9_amd64.go

    	print("ip    ", hex(u.ip), "\n")
    	print("flags ", hex(u.flags), "\n")
    	print("cs    ", hex(u.cs), "\n")
    	print("fs    ", hex(u.fs), "\n")
    	print("gs    ", hex(u.gs), "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. src/runtime/sys_plan9_386.s

    	MOVL	$ERRMAX, 4(SP)
    	CALL	errstr<>(SB)
    	CALL	runtime·findnull(SB)
    	MOVL	4(SP), AX
    	MOVL	AX, ret_len+4(FP)
    	MOVL	0(SP), AX
    	MOVL	AX, ret_base+0(FP)
    	RET
    
    // never called on this platform
    TEXT ·sigpanictramp(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  6. src/runtime/sys_plan9_amd64.s

    	MOVQ	$ERRMAX, 8(SP)
    	CALL	errstr<>(SB)
    	CALL	runtime·findnull(SB)
    	MOVQ	8(SP), AX
    	MOVQ	AX, ret_len+8(FP)
    	MOVQ	0(SP), AX
    	MOVQ	AX, ret_base+0(FP)
    	RET
    
    // never called on this platform
    TEXT ·sigpanictramp(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 16:41:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/runtime/sys_plan9_arm.s

    	BL	runtime·sighandler(SB)
    	MOVW	16(R13), R0			// retval
    
    	// restore g
    	MOVW	20(R13), g
    
    	// call noted(R0)
    	MOVW	R0, 4(R13)
    	BL	runtime·noted(SB)
    	RET
    
    //func sigpanictramp()
    TEXT  runtime·sigpanictramp(SB),NOSPLIT,$0-0
    	MOVW.W	R0, -4(R13)
    	B	runtime·sigpanic(SB)
    
    //func setfpmasks()
    // Only used by the 64-bit runtime.
    TEXT runtime·setfpmasks(SB),NOSPLIT,$0
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 29 14:15:04 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top