Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for binaries (0.17 sec)

  1. doc/go1.22.html

      preserves SEH information from C object files by copying the <code>.pdata</code>
      and <code>.xdata</code> sections into the final binary.
      This helps with debugging and profiling binaries using native tools, such as WinDbg.
      Note that until now, C functions' SEH exception handlers were not being honored,
      so this change may cause some programs to behave differently.
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  2. doc/asm.html

    Instructions, registers, and assembler directives are always in UPPER CASE to remind you
    that assembly programming is a fraught endeavor.
    (Exception: the <code>g</code> register renaming on ARM.)
    </p>
    
    <p>
    In Go object files and binaries, the full name of a symbol is the
    package path followed by a period and the symbol name:
    <code>fmt.Printf</code> or <code>math/rand.Int</code>.
    Because the assembler's parser treats period and slash as punctuation,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top