Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for edi (0.01 sec)

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

    	R11W: "R11W",
    	R12W: "R12W",
    	R13W: "R13W",
    	R14W: "R14W",
    	R15W: "R15W",
    	EAX:  "EAX",
    	ECX:  "ECX",
    	EDX:  "EDX",
    	EBX:  "EBX",
    	ESP:  "ESP",
    	EBP:  "EBP",
    	ESI:  "ESI",
    	EDI:  "EDI",
    	R8L:  "R8L",
    	R9L:  "R9L",
    	R10L: "R10L",
    	R11L: "R11L",
    	R12L: "R12L",
    	R13L: "R13L",
    	R14L: "R14L",
    	R15L: "R15L",
    	RAX:  "RAX",
    	RCX:  "RCX",
    	RDX:  "RDX",
    	RBX:  "RBX",
    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/arch/x86/x86asm/gnu.go

    	R12W: "%r12w",
    	R13W: "%r13w",
    	R14W: "%r14w",
    	R15W: "%r15w",
    	EAX:  "%eax",
    	ECX:  "%ecx",
    	EDX:  "%edx",
    	EBX:  "%ebx",
    	ESP:  "%esp",
    	EBP:  "%ebp",
    	ESI:  "%esi",
    	EDI:  "%edi",
    	R8L:  "%r8d",
    	R9L:  "%r9d",
    	R10L: "%r10d",
    	R11L: "%r11d",
    	R12L: "%r12d",
    	R13L: "%r13d",
    	R14L: "%r14d",
    	R15L: "%r15d",
    	RAX:  "%rax",
    	RCX:  "%rcx",
    	RDX:  "%rdx",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		}
    		switch inst.Op {
    		case MOVSB, MOVSW, MOVSD, MOVSQ, CMPSB, CMPSW, CMPSD, CMPSQ, STOSB, STOSW, STOSD, STOSQ, SCASB, SCASW, SCASD, SCASQ, LODSB, LODSW, LODSD, LODSQ:
    			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:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	SizeofCmsghdr         = 0xc
    )
    
    const (
    	SizeofSockFprog = 0x8
    )
    
    type PtraceRegs struct {
    	Ebx      int32
    	Ecx      int32
    	Edx      int32
    	Esi      int32
    	Edi      int32
    	Ebp      int32
    	Eax      int32
    	Xds      int32
    	Xes      int32
    	Xfs      int32
    	Xgs      int32
    	Orig_eax int32
    	Eip      int32
    	Xcs      int32
    	Eflags   int32
    	Esp      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_386.go

    	Cookie uint32
    	Len    uint32
    	Name   [0]uint8
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Ebx      int32
    	Ecx      int32
    	Edx      int32
    	Esi      int32
    	Edi      int32
    	Ebp      int32
    	Eax      int32
    	Xds      int32
    	Xes      int32
    	Xfs      int32
    	Xgs      int32
    	Orig_eax int32
    	Eip      int32
    	Xcs      int32
    	Eflags   int32
    	Esp      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top