Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for Rsi (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Val [4]uint32
    }
    
    type Reg struct {
    	R15    int64
    	R14    int64
    	R13    int64
    	R12    int64
    	R11    int64
    	R10    int64
    	R9     int64
    	R8     int64
    	Rdi    int64
    	Rsi    int64
    	Rbp    int64
    	Rbx    int64
    	Rdx    int64
    	Rcx    int64
    	Rax    int64
    	Trapno uint32
    	Fs     uint16
    	Gs     uint16
    	Err    uint32
    	Es     uint16
    	Ds     uint16
    	Rip    int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    	R13      uint64
    	R12      uint64
    	Rbp      uint64
    	Rbx      uint64
    	R11      uint64
    	R10      uint64
    	R9       uint64
    	R8       uint64
    	Rax      uint64
    	Rcx      uint64
    	Rdx      uint64
    	Rsi      uint64
    	Rdi      uint64
    	Orig_rax uint64
    	Rip      uint64
    	Cs       uint64
    	Eflags   uint64
    	Rsp      uint64
    	Ss       uint64
    	Fs_base  uint64
    	Gs_base  uint64
    	Ds       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	R11L: "%r11d",
    	R12L: "%r12d",
    	R13L: "%r13d",
    	R14L: "%r14d",
    	R15L: "%r15d",
    	RAX:  "%rax",
    	RCX:  "%rcx",
    	RDX:  "%rdx",
    	RBX:  "%rbx",
    	RSP:  "%rsp",
    	RBP:  "%rbp",
    	RSI:  "%rsi",
    	RDI:  "%rdi",
    	R8:   "%r8",
    	R9:   "%r9",
    	R10:  "%r10",
    	R11:  "%r11",
    	R12:  "%r12",
    	R13:  "%r13",
    	R14:  "%r14",
    	R15:  "%r15",
    	IP:   "%ip",
    	EIP:  "%eip",
    	RIP:  "%rip",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. src/syscall/ztypes_linux_amd64.go

    	R13      uint64
    	R12      uint64
    	Rbp      uint64
    	Rbx      uint64
    	R11      uint64
    	R10      uint64
    	R9       uint64
    	R8       uint64
    	Rax      uint64
    	Rcx      uint64
    	Rdx      uint64
    	Rsi      uint64
    	Rdi      uint64
    	Orig_rax uint64
    	Rip      uint64
    	Cs       uint64
    	Eflags   uint64
    	Rsp      uint64
    	Ss       uint64
    	Fs_base  uint64
    	Gs_base  uint64
    	Ds       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    			switch a.Base {
    			case DI, EDI, RDI:
    				if a.Segment == ES {
    					a.Segment = 0
    				}
    			case SI, ESI, RSI:
    				if a.Segment == DS {
    					a.Segment = 0
    				}
    			}
    		case LEA:
    			a.Segment = 0
    		default:
    			switch a.Base {
    			case SP, ESP, RSP, BP, EBP, RBP:
    				if a.Segment == SS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/abiutils_test.go

    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/x86"
    	"cmd/internal/src"
    	"fmt"
    	"os"
    	"testing"
    )
    
    // AMD64 registers available:
    // - integer: RAX, RBX, RCX, RDI, RSI, R8, R9, r10, R11
    // - floating point: X0 - X14
    var configAMD64 = abi.NewABIConfig(9, 15, 0, 1)
    
    func TestMain(m *testing.M) {
    	ssagen.Arch.LinkArch = &x86.Linkamd64
    	ssagen.Arch.REGSP = x86.REGSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    // ref via "__imp_XYZ", or a direct ref to "XYZ". Here's an example of
    // an indirect ref (this is an excerpt from objdump -ldr):
    //
    //	     1c1: 48 89 c6                     	movq	%rax, %rsi
    //	     1c4: ff 15 00 00 00 00            	callq	*(%rip)
    //			00000000000001c6:  IMAGE_REL_AMD64_REL32	__imp__errno
    //
    // In the assembly above, the code loads up the value of __imp_errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PtraceRegs.Rbx", Field, 0},
    		{"PtraceRegs.Rcx", Field, 0},
    		{"PtraceRegs.Rdi", Field, 0},
    		{"PtraceRegs.Rdx", Field, 0},
    		{"PtraceRegs.Rip", Field, 0},
    		{"PtraceRegs.Rsi", Field, 0},
    		{"PtraceRegs.Rsp", Field, 0},
    		{"PtraceRegs.Ss", Field, 0},
    		{"PtraceRegs.Uregs", Field, 0},
    		{"PtraceRegs.Xcs", Field, 0},
    		{"PtraceRegs.Xds", Field, 0},
    		{"PtraceRegs.Xes", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg syscall (linux-amd64), type PtraceRegs struct, Rdx uint64
    pkg syscall (linux-amd64), type PtraceRegs struct, Rip uint64
    pkg syscall (linux-amd64), type PtraceRegs struct, Rsi uint64
    pkg syscall (linux-amd64), type PtraceRegs struct, Rsp uint64
    pkg syscall (linux-amd64), type PtraceRegs struct, Ss uint64
    pkg syscall (linux-amd64), type RawSockaddr struct, Data [14]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top