Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Rsi (0.02 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	R10L: "R10L",
    	R11L: "R11L",
    	R12L: "R12L",
    	R13L: "R13L",
    	R14L: "R14L",
    	R15L: "R15L",
    	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
    - 10.6K 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)
Back to top