Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for SEH (0.02 sec)

  1. src/runtime/signal_windows.go

    	}
    
    	// VEH is called before SEH, but arm64 MSVC DLLs use SEH to trap
    	// illegal instructions during runtime initialization to determine
    	// CPU features, so if we make it to the last handler and we're
    	// arm64 and it's an illegal instruction and this is coming from
    	// non-Go code, then assume it's this runtime probing happen, and
    	// pass that onward to SEH.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/plist.go

    		ctxt.Arch.Assemble(ctxt, s, newprog)
    		if ctxt.Errors > 0 {
    			continue
    		}
    		linkpcln(ctxt, s)
    		ctxt.populateDWARF(plist.Curfn, s)
    		if ctxt.Headtype == objabi.Hwindows && ctxt.Arch.SEH != nil {
    			s.Func().sehUnwindInfoSym = ctxt.Arch.SEH(ctxt, s)
    		}
    	}
    }
    
    func (ctxt *Link) InitTextSym(s *LSym, flag int, start src.XPos) {
    	if s == nil {
    		// func _() { }
    		return
    	}
    	if s.Func() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // by a signal, or exited normally with a nonzero exit code.
    GTEST_API_ bool ExitedUnsuccessfully(int exit_status);
    
    // Traps C++ exceptions escaping statement and reports them as test
    // failures. Note that trapping SEH exceptions is not implemented here.
    # if GTEST_HAS_EXCEPTIONS
    #  define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \
      try { \
        GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // by a signal, or exited normally with a nonzero exit code.
    GTEST_API_ bool ExitedUnsuccessfully(int exit_status);
    
    // Traps C++ exceptions escaping statement and reports them as test
    // failures. Note that trapping SEH exceptions is not implemented here.
    # if GTEST_HAS_EXCEPTIONS
    #  define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \
      try { \
        GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadpe/ldpe.go

    			// The PE documentation says that, on x86 platforms, the absolute symbol named @feat.00
    			// is used to indicate that the COFF object supports SEH.
    			// Go doesn't support SEH on windows/386, so we can ignore this symbol.
    			// See https://learn.microsoft.com/en-us/windows/win32/debug/pe-format#the-sxdata-section
    			continue
    		}
    		var sect *pe.Section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/mips64.s

    	RET	foo(SB)
    
    	// unary operation
    	NEGW	R1, R2 // 00011023
    	NEGV	R1, R2 // 0001102f
    
    	WSBH	R1, R2 // 7c0110a0
    	DSBH	R1, R2 // 7c0110a4
    	DSHD	R1, R2 // 7c011164
    
    	SEB	R1, R2 // 7c011420
    	SEH	R1, R2 // 7c011620
    
    	RET
    
    // MSA VMOVI
    	VMOVB	$511, W0   // 7b0ff807
    	VMOVH	$24, W23   // 7b20c5c7
    	VMOVW	$-24, W15  // 7b5f43c7
    	VMOVD	$-511, W31 // 7b700fc7
    
    	VMOVB	(R0), W8       // 78000220
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    	// in the concurrent phase. To ensure a deterministic order, we
    	// add them to a separate list, sort at the end, and append it
    	// to Data.
    	constSyms []*LSym
    
    	// Windows SEH symbols are also data symbols that can be created
    	// concurrently.
    	SEHSyms []*LSym
    
    	// pkgIdx maps package path to index. The index is used for
    	// symbol reference in the object file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/sym.go

    	sort.Slice(ctxt.constSyms, func(i, j int) bool {
    		return ctxt.constSyms[i].Name < ctxt.constSyms[j].Name
    	})
    	ctxt.Data = append(ctxt.Data, ctxt.constSyms...)
    	ctxt.constSyms = nil
    
    	// So are SEH symbols.
    	sort.Slice(ctxt.SEHSyms, func(i, j int) bool {
    		return ctxt.SEHSyms[i].Name < ctxt.SEHSyms[j].Name
    	})
    	ctxt.Data = append(ctxt.Data, ctxt.SEHSyms...)
    	ctxt.SEHSyms = nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/obj6.go

    var Linkamd64 = obj.LinkArch{
    	Arch:           sys.ArchAMD64,
    	Init:           instinit,
    	ErrorCheck:     errorCheck,
    	Preprocess:     preprocess,
    	Assemble:       span6,
    	Progedit:       progedit,
    	SEH:            populateSeh,
    	UnaryDst:       unaryDst,
    	DWARFRegisters: AMD64DWARFRegisters,
    }
    
    var Link386 = obj.LinkArch{
    	Arch:           sys.Arch386,
    	Init:           instinit,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/pe.go

    		if uint64(h.pointerToRawData) != fileoff {
    			Exitf("%s.PointerToRawData = %#x, want %#x", sect.Name, h.pointerToRawData, fileoff)
    		}
    	}
    }
    
    // addSEH adds SEH information to the COFF file f.
    func (f *peFile) addSEH(ctxt *Link) {
    	// .pdata section can exist without the .xdata section.
    	// .xdata section depends on the .pdata section.
    	if Segpdata.Length == 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top