Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Sanders (0.16 sec)

  1. src/cmd/asm/internal/arch/arch.go

    	for i := riscv.REG_X0; i <= riscv.REG_X31; i++ {
    		// Disallow X3 in shared mode, as this will likely be used as the
    		// GP register, which could result in problems in non-Go code,
    		// including signal handlers.
    		if shared && i == riscv.REG_GP {
    			continue
    		}
    		if i == riscv.REG_TP || i == riscv.REG_G {
    			continue
    		}
    		name := fmt.Sprintf("X%d", i-riscv.REG_X0)
    		register[name] = int16(i)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
  2. doc/go1.22.html

      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.
      <code>-linkmode=external</code> is not affected by this change, as external linkers
      already preserve SEH information.
    </p>
    
    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)
Back to top