Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for SEH (0.03 sec)

  1. src/cmd/link/internal/sym/symkind.go

    	SDWARFSECT
    	// DWARF symbol types
    	SDWARFCUINFO
    	SDWARFCONST
    	SDWARFFCN
    	SDWARFABSFCN
    	SDWARFTYPE
    	SDWARFVAR
    	SDWARFRANGE
    	SDWARFLOC
    	SDWARFLINES
    
    	// SEH symbol types
    	SSEHUNWINDINFO
    	SSEHSECT
    )
    
    // AbiSymKindToSymKind maps values read from object files (which are
    // of type cmd/internal/objabi.SymKind) to values of type SymKind.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/mips.s

    	JMP	foo(SB)
    	CALL	foo(SB)
    	RET	foo(SB)
    
    	// unary operation
    	NEGW	R1, R2 // 00011023
    	CLZ	R1, R2 // 70221020
    	CLO	R1, R2 // 70221021
    
    	WSBH	R1, R2 // 7c0110a0
    
    	SEB	R1, R2 // 7c011420
    	SEH	R1, R2 // 7c011620
    
    	// to (Hi, Lo)
    	MADD	R2, R1 // 70220000
    	MSUB	R2, R1 // 70220004
    	MUL	R2, R1 // 00220018
    
    	// END
    	//
    	//	LEND	comma // asm doesn't support the trailing comma.
    	//	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. src/runtime/signal_windows_test.go

    		t.Fatalf("failure while running executable: %s\n%s", err, out)
    	}
    	var expectedOutput string
    	if runtime.GOARCH == "arm64" || runtime.GOARCH == "arm" {
    		// TODO: remove when windows/arm64 and windows/arm support SEH stack unwinding.
    		expectedOutput = "exceptionCount: 1\ncontinueCount: 1\nunhandledCount: 0\n"
    	} else {
    		expectedOutput = "exceptionCount: 1\ncontinueCount: 1\nunhandledCount: 1\n"
    	}
    	// cleaning output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #ifndef GTEST_HAS_SEH
    // The user didn't tell us, so we need to figure it out.
    
    # if defined(_MSC_VER) || defined(__BORLANDC__)
    // These two compilers are known to support SEH.
    #  define GTEST_HAS_SEH 1
    # else
    // Assume no SEH.
    #  define GTEST_HAS_SEH 0
    # endif
    
    #endif  // GTEST_HAS_SEH
    
    #ifdef _MSC_VER
    
    # if GTEST_LINKED_AS_SHARED_LIBRARY
    #  define GTEST_API_ __declspec(dllimport)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top