Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for unwinder (0.24 sec)

  1. src/runtime/race.go

    			ctx.file = &bytes(file)[0] // assume NUL-terminated
    			ctx.off = pc - fi.entry()
    			ctx.res = 1
    			if u.isInlined(uf) {
    				// Set ctx.pc to the "caller" so the race detector calls this again
    				// to further unwind.
    				uf = u.next(uf)
    				ctx.pc = uf.pc
    			}
    			return
    		}
    	}
    	ctx.fn = &qq[0]
    	ctx.file = &dash[0]
    	ctx.line = 0
    	ctx.off = ctx.pc
    	ctx.res = 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/runtime/sys_freebsd_amd64.s

    	MOVL	m_cgoCallersUse(AX), CX
    	TESTL	CX, CX
    	JNZ	sigtramp	// g.m.cgoCallersUse != 0
    
    	// Jump to a function in runtime/cgo.
    	// That function, written in C, will call the user's traceback
    	// function with proper unwind info, and will then call back here.
    	// The first three arguments, and the fifth, are already in registers.
    	// Set the two remaining arguments now.
    	MOVQ	runtime·cgoTraceback(SB), CX
    	MOVQ	$runtime·sigtramp(SB), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    const CLDRVersion = "32"
    
    // NumCompactTags is the number of common tags. The maximum tag is
    // NumCompactTags-1.
    const NumCompactTags = 775
    const (
    	undIndex          ID = 0
    	afIndex           ID = 1
    	afNAIndex         ID = 2
    	afZAIndex         ID = 3
    	agqIndex          ID = 4
    	agqCMIndex        ID = 5
    	akIndex           ID = 6
    	akGHIndex         ID = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  4. src/runtime/asm_386.s

    	// The next few lines (after the havem label)
    	// will save this SP onto the stack and then write
    	// the same SP back to m->sched.sp. That seems redundant,
    	// but if an unrecovered panic happens, unwindm will
    	// restore the g->sched.sp from the stack location
    	// and then systemstack will try to use it. If we don't set it here,
    	// that restored SP will be uninitialized (typically 0) and
    	// will not be usable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_386.s

    // The code that cares about the precise instructions used is:
    // https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=libgcc/config/i386/linux-unwind.h;h=5486223d60272c73d5103b29ae592d2ee998e1cf#l136
    //
    // For gdb unwinding to work, this function must look precisely like the one in
    // glibc and must be named "__restore_rt" or contain the string "sigaction" in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/runtime/crash_cgo_test.go

    	// Test unwinding over a sigpanic in C code without a C
    	// symbolizer. See issue #23576.
    	if runtime.GOOS == "windows" {
    		// On Windows if we get an exception in C code, we let
    		// the Windows exception handler unwind it, rather
    		// than injecting a sigpanic.
    		t.Skip("no sigpanic in C on windows")
    	}
    	if runtime.GOOS == "ios" {
    		testenv.SkipFlaky(t, 59912)
    	}
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (1)
  7. src/debug/elf/elf.go

    	PT_SUNW_EH_FRAME ProgType = 0x6474e550 /* Frame unwind information */
    	PT_SUNWSTACK     ProgType = 0x6ffffffb /* Stack segment */
    
    	PT_HIOS ProgType = 0x6fffffff /* Last OS-specific. */
    
    	PT_LOPROC ProgType = 0x70000000 /* First processor-specific type. */
    
    	PT_ARM_ARCHEXT ProgType = 0x70000000 /* Architecture compatibility */
    	PT_ARM_EXIDX   ProgType = 0x70000001 /* Exception unwind tables */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. src/runtime/sys_darwin_amd64.s

    	MOVL	m_cgoCallersUse(AX), CX
    	TESTL	CX, CX
    	JNZ	sigtramp	// g.m.cgoCallersUse != 0
    
    	// Jump to a function in runtime/cgo.
    	// That function, written in C, will call the user's traceback
    	// function with proper unwind info, and will then call back here.
    	// The first three arguments, and the fifth, are already in registers.
    	// Set the two remaining arguments now.
    	MOVQ	runtime·cgoTraceback(SB), CX
    	MOVQ	$runtime·sigtramp(SB), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. src/testing/fuzz.go

    		// Detect whether the fuzz test panicked or called runtime.Goexit
    		// without calling F.Fuzz, F.Fail, or F.Skip. If it did, panic (possibly
    		// replacing a nil panic value). Nothing should recover after fRunner
    		// unwinds, so this should crash the process and print stack.
    		// Unfortunately, recovering here adds stack frames, but the location of
    		// the original panic should still be
    		// clear.
    		f.checkRaces()
    		if f.Failed() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. src/debug/elf/file_test.go

    					Offset:   0xb,
    					Tag:      dwarf.TagCompileUnit,
    					Children: true,
    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrProducer, Val: "GNU C17 9.3.0 -mtune=generic -march=x86-64 -g -fno-asynchronous-unwind-tables", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(12), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "multiple-code-sections.c", Class: dwarf.ClassString},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top