Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for GS (0.15 sec)

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

    	{"0(BP)", "(BP)"},
    	{"0(BX)", "(BX)"},
    	{"4(AX)", "4(AX)"},
    	{"AL", "AL"},
    	{"AX", "AX"},
    	{"BP", "BP"},
    	{"BX", "BX"},
    	{"CX", "CX"},
    	{"DI", "DI"},
    	{"DX", "DX"},
    	{"F0", "F0"},
    	{"GS", "GS"},
    	{"SI", "SI"},
    	{"SP", "SP"},
    	{"X0", "X0"},
    	{"X1", "X1"},
    	{"X2", "X2"},
    	{"X3", "X3"},
    	{"X4", "X4"},
    	{"X5", "X5"},
    	{"X6", "X6"},
    	{"X7", "X7"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  2. doc/asm.html

    </p>
    
    <pre>
    $ go build -o x.exe x.go
    $ go tool objdump -s main.main x.exe
    TEXT main.main(SB) /tmp/x.go
      x.go:3		0x10501c0		65488b0c2530000000	MOVQ GS:0x30, CX
      x.go:3		0x10501c9		483b6110		CMPQ 0x10(CX), SP
      x.go:3		0x10501cd		7634			JBE 0x1050203
      x.go:3		0x10501cf		4883ec10		SUBQ $0x10, SP
      x.go:3		0x10501d3		48896c2408		MOVQ BP, 0x8(SP)
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	MOVQ DX, CR0 // 0f22c2
    	MOVQ DI, CR4 // 0f22e7
    	MOVQ DR0, AX // 0f21c0
    	MOVQ DR6, DX // 0f21f2
    	MOVQ DR7, SI // 0f21fe
    	// Test other movtab entries.
    	PUSHQ GS // 0fa8
    	PUSHQ FS // 0fa0
    	POPQ FS  // 0fa1
    	POPQ GS  // 0fa9
    	// All instructions below semantically have unsigned operands,
    	// but previous assembler permitted negative arguments.
    	// This behavior is preserved for compatibility reasons.
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	PMULULQ X2, X11                         // 66440ff4da
    	PMULULQ X11, X11                        // 66450ff4db
    	PUSHQ AX
    	POPQ FS                                 // 660fa1 or 0fa1
    	PUSHQ AX
    	POPQ GS                                 // 660fa9 or 0fa9
    	PUSHW AX
    	POPW (BX)                               // 668f03
    	PUSHW AX
    	POPW (R11)                              // 66418f03
    	PUSHW AX
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (linux-amd64), type PtraceRegs struct, Fs uint64
    pkg syscall (linux-amd64), type PtraceRegs struct, Fs_base uint64
    pkg syscall (linux-amd64), type PtraceRegs struct, Gs uint64
    pkg syscall (linux-amd64), type PtraceRegs struct, Gs_base uint64
    pkg syscall (linux-amd64), type PtraceRegs struct, Orig_rax uint64
    pkg syscall (linux-amd64), type PtraceRegs struct, R10 uint64
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top