/linux-4.1.27/drivers/scsi/ |
D | esp_scsi.c | 57 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 62 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 67 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 72 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 77 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 82 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 87 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 92 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 97 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 102 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ [all …]
|
D | jazz_esp.c | 31 static void jazz_esp_write8(struct esp *esp, u8 val, unsigned long reg) in jazz_esp_write8() argument 33 *(volatile u8 *)(esp->regs + reg) = val; in jazz_esp_write8() 36 static u8 jazz_esp_read8(struct esp *esp, unsigned long reg) in jazz_esp_read8() argument 38 return *(volatile u8 *)(esp->regs + reg); in jazz_esp_read8() 41 static dma_addr_t jazz_esp_map_single(struct esp *esp, void *buf, in jazz_esp_map_single() argument 44 return dma_map_single(esp->dev, buf, sz, dir); in jazz_esp_map_single() 47 static int jazz_esp_map_sg(struct esp *esp, struct scatterlist *sg, in jazz_esp_map_sg() argument 50 return dma_map_sg(esp->dev, sg, num_sg, dir); in jazz_esp_map_sg() 53 static void jazz_esp_unmap_single(struct esp *esp, dma_addr_t addr, in jazz_esp_unmap_single() argument 56 dma_unmap_single(esp->dev, addr, sz, dir); in jazz_esp_unmap_single() [all …]
|
D | sun_esp.c | 31 sbus_readl(esp->dma_regs + (REG)) 33 sbus_writel((VAL), esp->dma_regs + (REG)) 46 static int esp_sbus_setup_dma(struct esp *esp, struct platform_device *dma_of) in esp_sbus_setup_dma() argument 48 esp->dma = dma_of; in esp_sbus_setup_dma() 50 esp->dma_regs = of_ioremap(&dma_of->resource[0], 0, in esp_sbus_setup_dma() 53 if (!esp->dma_regs) in esp_sbus_setup_dma() 58 esp->dmarev = dvmarev0; in esp_sbus_setup_dma() 61 esp->dmarev = dvmaesc1; in esp_sbus_setup_dma() 64 esp->dmarev = dvmarev1; in esp_sbus_setup_dma() 67 esp->dmarev = dvmarev2; in esp_sbus_setup_dma() [all …]
|
D | mac_esp.c | 48 #define esp_read8(REG) mac_esp_read8(esp, REG) 49 #define esp_write8(VAL, REG) mac_esp_write8(esp, VAL, REG) 52 struct esp *esp; member 57 static struct esp *esp_chips[2]; 59 #define MAC_ESP_GET_PRIV(esp) ((struct mac_esp_priv *) \ argument 61 (esp->dev))) 63 static inline void mac_esp_write8(struct esp *esp, u8 val, unsigned long reg) in mac_esp_write8() argument 65 nubus_writeb(val, esp->regs + reg * 16); in mac_esp_write8() 68 static inline u8 mac_esp_read8(struct esp *esp, unsigned long reg) in mac_esp_read8() argument 70 return nubus_readb(esp->regs + reg * 16); in mac_esp_read8() [all …]
|
D | am53c974.c | 26 shost_printk(KERN_DEBUG, esp->host, f, ##a); \ 91 struct esp *esp; member 95 static void pci_esp_dma_drain(struct esp *esp); 97 static inline struct pci_esp_priv *pci_esp_get_priv(struct esp *esp) in pci_esp_get_priv() argument 99 struct pci_dev *pdev = esp->dev; in pci_esp_get_priv() 104 static void pci_esp_write8(struct esp *esp, u8 val, unsigned long reg) in pci_esp_write8() argument 106 iowrite8(val, esp->regs + (reg * 4UL)); in pci_esp_write8() 109 static u8 pci_esp_read8(struct esp *esp, unsigned long reg) in pci_esp_read8() argument 111 return ioread8(esp->regs + (reg * 4UL)); in pci_esp_read8() 114 static void pci_esp_write32(struct esp *esp, u32 val, unsigned long reg) in pci_esp_write32() argument [all …]
|
D | sun3x_esp.c | 43 readl(esp->dma_regs + (REG)) 45 writel((VAL), esp->dma_regs + (REG)) 48 *(volatile u32 *)(esp->dma_regs + (REG)) 50 do { *(volatile u32 *)(esp->dma_regs + (REG)) = (VAL); } while (0) 53 static void sun3x_esp_write8(struct esp *esp, u8 val, unsigned long reg) in sun3x_esp_write8() argument 55 writeb(val, esp->regs + (reg * 4UL)); in sun3x_esp_write8() 58 static u8 sun3x_esp_read8(struct esp *esp, unsigned long reg) in sun3x_esp_read8() argument 60 return readb(esp->regs + (reg * 4UL)); in sun3x_esp_read8() 63 static dma_addr_t sun3x_esp_map_single(struct esp *esp, void *buf, in sun3x_esp_map_single() argument 66 return dma_map_single(esp->dev, buf, sz, dir); in sun3x_esp_map_single() [all …]
|
D | esp_scsi.h | 357 struct esp; 363 void (*esp_write8)(struct esp *esp, u8 val, unsigned long reg); 364 u8 (*esp_read8)(struct esp *esp, unsigned long reg); 370 dma_addr_t (*map_single)(struct esp *esp, void *buf, 372 int (*map_sg)(struct esp *esp, struct scatterlist *sg, 374 void (*unmap_single)(struct esp *esp, dma_addr_t addr, 376 void (*unmap_sg)(struct esp *esp, struct scatterlist *sg, 384 int (*irq_pending)(struct esp *esp); 389 u32 (*dma_length_limit)(struct esp *esp, u32 dma_addr, 396 void (*reset_dma)(struct esp *esp); [all …]
|
/linux-4.1.27/arch/x86/crypto/ |
D | salsa20-i586-asm_32.S | 11 mov %esp,%eax 14 sub %eax,%esp 16 movl %eax,80(%esp) 18 movl %ebx,84(%esp) 20 movl %esi,88(%esp) 22 movl %edi,92(%esp) 24 movl %ebp,96(%esp) 26 movl 4(%esp,%eax),%edx 28 movl 8(%esp,%eax),%esi 30 movl 12(%esp,%eax),%edi [all …]
|
D | aes-i586-asm_32.S | 145 mov %a2,4*a1(%esp) 148 mov 4*a2(%esp),%a1 228 mov ctx(%esp),%ebp 234 mov in_blk+4(%esp),%r2 253 sub $8,%esp // space for register saves on stack 279 add $8,%esp 280 mov out_blk+12(%esp),%ebp 300 mov ctx(%esp),%ebp 306 mov in_blk+4(%esp),%r2 325 sub $8,%esp // space for register saves on stack [all …]
|
D | twofish-i586-asm_32.S | 229 mov ctx + 16(%esp), %ebp /* abuse the base pointer: set new base 231 mov in_blk+16(%esp),%edi /* input address in edi */ 265 mov out_blk+16(%esp),%edi; 286 mov ctx + 16(%esp), %ebp /* abuse the base pointer: set new base 288 mov in_blk+16(%esp),%edi /* input address in edi */ 322 mov out_blk+16(%esp),%edi;
|
D | aesni-intel_asm.S | 1805 movl 8(%esp), KEYP # ctx 1806 movl 12(%esp), UKEYP # in_key 1807 movl 16(%esp), %edx # key_len 1918 movl 12(%esp), KEYP 1919 movl 16(%esp), OUTP 1920 movl 20(%esp), INP 2107 movl 12(%esp), KEYP 2108 movl 16(%esp), OUTP 2109 movl 20(%esp), INP 2299 movl 16(%esp), KEYP [all …]
|
D | serpent-sse2-i586-asm_32.S | 525 movl arg_ctx(%esp), CTX; 527 movl arg_src(%esp), %eax; 564 movl arg_dst(%esp), %eax; 566 cmpb $0, arg_xor(%esp); 588 movl arg_ctx(%esp), CTX; 590 movl arg_src(%esp), %eax; 627 movl arg_dst(%esp), %eax;
|
/linux-4.1.27/arch/x86/kernel/ |
D | entry_32.S | 96 testl $X86_EFLAGS_IF,PT_EFLAGS(%esp) # interrupts off? 119 addl $(4 + \pop), %esp 148 add $\pop, %esp 154 99: movl $0, (%esp) 161 98: mov PT_GS(%esp), %gs 165 99: movl $0, PT_GS(%esp) 176 movl \reg, PT_GS(%esp) 244 4: movl $0, (%esp) 246 5: movl $0, (%esp) 248 6: movl $0, (%esp) [all …]
|
D | relocate_kernel_32.S | 50 movl 20+8(%esp), %ebp /* list of pages */ 52 movl %esp, ESP(%edi) 61 movl 20+4(%esp), %ebx /* page_list */ 62 movl 20+8(%esp), %ebp /* list of pages */ 63 movl 20+12(%esp), %edx /* start address */ 64 movl 20+16(%esp), %ecx /* cpu_has_pae */ 65 movl 20+20(%esp), %esi /* preserve_context */ 91 lea PAGE_SIZE(%edi), %esp 140 addl $8, %esp 167 movl CP_PA_SWAP_PAGE(%edi), %esp [all …]
|
D | head_32.S | 115 leal -__PAGE_OFFSET(%ecx),%esp 290 movl %ecx, %esp 312 leal -__PAGE_OFFSET(%ecx),%esp 405 addl $__PAGE_OFFSET, %esp 536 # 36(%esp) %eflags 537 # 32(%esp) %cs 538 # 28(%esp) %eip 545 pushl $i # 20(%esp) Vector number 559 cmpl $2,(%esp) # X86_TRAP_NMI 566 push %eax # 16(%esp) [all …]
|
D | ptrace.c | 971 R32(esp, sp); in putreg32() 1042 R32(esp, sp); in getreg32()
|
/linux-4.1.27/arch/x86/xen/ |
D | xen-asm_32.S | 44 movl PT_EAX(%esp), %eax /* Shouldn't be necessary? */ 45 orl $X86_EFLAGS_IF, PT_EFLAGS(%esp) 46 lea PT_EIP(%esp), %esp 83 2: movw $0, (%esp) 91 testl $(X86_EFLAGS_VM | XEN_EFLAGS_NMI), 8(%esp) 109 testb $X86_EFLAGS_IF>>8, 8+1+ESP_OFFSET(%esp) 209 movl PT_CS(%esp), %ecx 214 lea PT_ORIG_EAX(%esp), %esi 215 lea PT_EFLAGS(%esp), %edi 225 movl %eax, PT_EAX(%esp) [all …]
|
D | xen-head.S | 43 mov $init_thread_union+THREAD_SIZE,%esp
|
D | smp.c | 431 ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs); in cpu_initialize_context()
|
/linux-4.1.27/arch/x86/lib/ |
D | checksum_32.S | 56 movl 20(%esp),%eax # Function arg: unsigned int sum 57 movl 16(%esp),%ecx # Function arg: int len 58 movl 12(%esp),%esi # Function arg: unsigned char *buff 128 testb $1, 12(%esp) 146 movl 20(%esp),%eax # Function arg: unsigned int sum 147 movl 16(%esp),%ecx # Function arg: int len 148 movl 12(%esp),%esi # Function arg: const unsigned char *buf 248 testb $1, 12(%esp) 291 subl $4,%esp 296 movl ARGBASE+16(%esp),%eax # sum [all …]
|
D | msr-reg.S | 72 movl 4(%esp), %eax 74 addl $4, %esp 90 movl $-EIO, 4(%esp)
|
D | atomic64_cx8_32.S | 157 cmpl %eax, 0(%esp) 170 addl $8, %esp 176 cmpl %edx, 4(%esp)
|
D | thunk_32.S | 22 movl 3*4(%esp), %eax
|
/linux-4.1.27/arch/x86/um/ |
D | setjmp_32.S | 10 # %esp 25 movl 4(%esp),%edx 30 movl %esp,4(%edx) # Post-return %esp! 48 movl 4(%esp),%edx # jmp_ptr address 49 movl 8(%esp),%eax # Return value 52 movl 4(%edx),%esp
|
D | stub_32.S | 9 mov $(STUB_DATA+8), %esp 13 mov 0x0(%esp), %eax 22 mov %esp, STUB_DATA+4 25 add %eax, %esp
|
D | checksum_32.S | 55 movl 20(%esp),%eax # Function arg: unsigned int sum 56 movl 16(%esp),%ecx # Function arg: int len 57 movl 12(%esp),%esi # Function arg: unsigned char *buff 125 movl 20(%esp),%eax # Function arg: unsigned int sum 126 movl 16(%esp),%ecx # Function arg: int len 127 movl 12(%esp),%esi # Function arg: const unsigned char *buf
|
/linux-4.1.27/arch/cris/arch-v10/kernel/ |
D | process.c | 151 unsigned long ebp, esp, eip; in get_wchan() 157 esp = p->thread.esp; in get_wchan() 158 if (!stack_page || esp < stack_page || esp > 8188+stack_page) in get_wchan() 161 ebp = *(unsigned long *) esp; in get_wchan()
|
/linux-4.1.27/arch/openrisc/kernel/ |
D | traps.c | 69 void show_stack(struct task_struct *task, unsigned long *esp) in show_stack() argument 74 if (esp == NULL) in show_stack() 75 esp = (unsigned long *)&esp; in show_stack() 77 stack = esp; in show_stack() 79 printk("Stack dump [0x%08lx]:\n", (unsigned long)esp); in show_stack() 96 show_trace(task, esp); in show_stack() 112 unsigned long esp; in show_registers() local 114 esp = (unsigned long)(®s->sp); in show_registers() 149 show_stack(NULL, (unsigned long *)esp); in show_registers()
|
/linux-4.1.27/drivers/lguest/x86/ |
D | switcher_32.S | 124 movl %esp, LGUEST_PAGES_host_sp(%eax) 136 movl %edx, %esp 189 addl $8, %esp 230 movl %esp, %eax; \ 250 movl LGUEST_PAGES_host_sp(%eax), %esp; \ 380 addl $8, %esp
|
D | core.c | 205 return &cpu->regs->esp; in lguest_arch_regptr()
|
/linux-4.1.27/arch/x86/math-emu/ |
D | mul_Xsig.S | 29 movl %esp,%ebp 30 subl $16,%esp 69 movl %esp,%ebp 70 subl $16,%esp 122 movl %esp,%ebp 123 subl $16,%esp
|
D | reg_u_mul.S | 49 movl %esp,%ebp 51 subl $8,%esp
|
D | round_Xsig.S | 27 movl %esp,%ebp 87 movl %esp,%ebp
|
D | reg_norm.S | 26 movl %esp,%ebp 103 movl %esp,%ebp
|
D | polynom_Xsig.S | 41 movl %esp,%ebp 42 subl $32,%esp
|
D | div_small.S | 23 movl %esp,%ebp
|
D | wm_shrx.S | 37 movl %esp,%ebp 115 movl %esp,%ebp
|
D | div_Xsig.S | 79 movl %esp,%ebp 81 subl $28,%esp
|
D | shr_Xsig.S | 26 movl %esp,%ebp
|
D | reg_round.S | 91 #define FPU_bits_lost (%esp) 92 #define FPU_denormal 1(%esp) 113 movl %esp,%ebp
|
D | reg_u_div.S | 79 movl %esp,%ebp 81 subl $28,%esp
|
D | wm_sqrt.S | 79 movl %esp,%ebp 81 subl $28,%esp
|
D | reg_u_add.S | 36 movl %esp,%ebp
|
D | reg_u_sub.S | 37 movl %esp,%ebp
|
D | README | 132 movl %esp,[%ebx]
|
/linux-4.1.27/arch/x86/boot/compressed/ |
D | head_32.S | 44 add $0x4, %esp 70 add $0x4, %esp 126 leal (BP_scratch+4)(%esi), %esp 154 leal boot_stack_end(%ebx), %esp 222 addl $28, %esp
|
D | head_64.S | 68 leal (BP_scratch+4)(%esi), %esp 76 movl %eax, %esp 203 add $0x4, %esp /* Discard return address */ 208 leal (BP_scratch+4)(%esi), %esp
|
D | efi_thunk_64.S | 146 movl 56(%esp), %eax 165 movl 60(%esp), %eax
|
/linux-4.1.27/arch/x86/kernel/acpi/ |
D | wakeup_32.S | 30 movl saved_context_esp, %esp 50 leal 4(%esp), %eax 77 addl $4, %esp
|
/linux-4.1.27/arch/um/kernel/ |
D | exec.c | 41 void start_thread(struct pt_regs *regs, unsigned long eip, unsigned long esp) in start_thread() argument 44 PT_REGS_SP(regs) = esp; in start_thread()
|
/linux-4.1.27/tools/perf/arch/x86/tests/ |
D | regs_load.S | 66 movl 8(%esp), %edi 76 leal 4(%esp), %eax /* exclude this call. */ 79 movl 0(%esp), %eax
|
/linux-4.1.27/drivers/lguest/ |
D | interrupts_and_traps.c | 95 push_guest_stack(cpu, &gstack, cpu->regs->esp); in push_guest_interrupt_stack() 98 virtstack = cpu->regs->esp; in push_guest_interrupt_stack() 130 cpu->regs->esp = virtstack + (gstack - origstack); in push_guest_interrupt_stack() 176 unsigned long stack_pa = guest_pa(cpu, cpu->regs->esp); in restore_eflags() 493 void guest_set_stack(struct lg_cpu *cpu, u32 seg, u32 esp, unsigned int pages) in guest_set_stack() argument 505 cpu->esp1 = esp; in guest_set_stack()
|
D | lg.h | 160 void guest_set_stack(struct lg_cpu *cpu, u32 seg, u32 esp, unsigned int pages);
|
/linux-4.1.27/arch/x86/platform/efi/ |
D | efi_stub_32.S | 71 subl $__PAGE_OFFSET, %esp 83 addl $__PAGE_OFFSET, %esp
|
D | efi_thunk_64.S | 142 movl 72(%esp), %eax
|
/linux-4.1.27/arch/x86/boot/ |
D | bioscall.S | 62 movzwl %sp, %esp 68 movw 68(%esp), %di /* Original %cx == 3rd argument */
|
D | pmjump.S | 60 addl %ebx, %esp
|
/linux-4.1.27/arch/x86/lguest/ |
D | head_32.S | 47 movl $(init_thread_union+THREAD_SIZE),%esp 183 pushl 2*4(%esp)
|
/linux-4.1.27/arch/x86/power/ |
D | hibernate_asm_32.S | 18 movl %esp, saved_context_esp 69 movl saved_context_esp, %esp
|
/linux-4.1.27/Documentation/kdump/ |
D | gdbmacros.txt | 25 set var $stackp = $next_t.thread.esp 39 set var $stackp = $next_t.thread.esp 66 set var $stackp = $next_t.thread.esp 82 set var $stackp = $next_t.thread.esp 129 set var $stackp = $pid_task.thread.esp
|
/linux-4.1.27/arch/x86/platform/olpc/ |
D | xo1-wakeup.S | 97 movl %esp, saved_context_esp 105 movl saved_context_esp, %esp
|
/linux-4.1.27/arch/x86/include/asm/ |
D | dwarf2.h | 159 movl %\reg, \offset(%esp) 164 movl \offset(%esp), %\reg
|
D | lguest.h | 42 unsigned long esp; member
|
D | user32.h | 41 __u32 eflags, esp; member
|
D | inst.h | 31 .ifc \r32,%esp
|
/linux-4.1.27/arch/x86/include/uapi/asm/ |
D | ptrace.h | 33 long esp; member
|
D | vm86.h | 81 long esp; member
|
D | sigcontext.h | 113 unsigned long esp; member
|
/linux-4.1.27/arch/x86/include/asm/xen/ |
D | hypercall.h | 251 HYPERVISOR_stack_switch(unsigned long ss, unsigned long esp) in HYPERVISOR_stack_switch() argument 253 return _hypercall2(int, stack_switch, ss, esp); in HYPERVISOR_stack_switch() 594 unsigned long ss, unsigned long esp) in MULTI_stack_switch() argument 598 mcl->args[1] = esp; in MULTI_stack_switch()
|
D | interface_32.h | 63 uint32_t esp; member
|
/linux-4.1.27/include/uapi/video/ |
D | uvesafb.h | 16 __u32 esp; member
|
/linux-4.1.27/arch/x86/kvm/ |
D | tss.h | 19 u32 esp; member
|
D | emulate.c | 2704 tss->esp = reg_read(ctxt, VCPU_REGS_RSP); in save_state_to_tss32() 2733 *reg_write(ctxt, VCPU_REGS_RSP) = tss->esp; in load_state_from_tss32()
|
/linux-4.1.27/arch/x86/vdso/vdso32/ |
D | sysenter.S | 39 movl %esp,%ebp
|
/linux-4.1.27/arch/x86/ia32/ |
D | ia32entry.S | 215 movl RSP(%rsp),%esp 357 movl %esp,%r8d 422 movl RSP(%rsp),%esp
|
D | ia32_aout.c | 97 dump->regs.esp = regs->sp; in dump_thread32()
|
/linux-4.1.27/fs/proc/ |
D | array.c | 367 unsigned long vsize, eip, esp, wchan = 0; in do_task_stat() local 386 vsize = eip = esp = 0; in do_task_stat() 393 esp = KSTK_ESP(task); in do_task_stat() 489 seq_put_decimal_ull(m, ' ', esp); in do_task_stat()
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | mm.txt | 17 ffffff0000000000 - ffffff7fffffffff (=39 bits) %esp fixup stacks
|
/linux-4.1.27/arch/x86/realmode/rm/ |
D | wakeup_asm.S | 69 movl $rm_stack_end, %esp
|
/linux-4.1.27/Documentation/x86/ |
D | exception-tables.txt | 132 > cmpl $-1073741825,64(%esp) 136 > movl 64(%esp),%ebx 192 > c017e795 <do_con_write+d1> cmpl $0xbfffffff,0x40(%esp,1) 195 > c017e7a1 <do_con_write+dd> movl 0x40(%esp,1),%ebx
|
D | boot.txt | 1011 IMPORTANT: All the hooks are required to preserve %esp, %ebp, %esi and
|
/linux-4.1.27/Documentation/ |
D | SecurityBugs | 31 disclosure is from immediate (esp. if it's already publicly known)
|
D | BUG-HUNTING | 189 > sub $0xbc, %esp 190 > mov 0xd0(%esp), %ebp ! %ebp = arg0 (skb)
|
D | oops-tracing.txt | 204 Aug 29 09:51:01 blizard kernel: esi: 00000000 edi: bffffdb3 ebp: 00589f90 esp: 00589f8c
|
/linux-4.1.27/scripts/ |
D | markup_oops.pl | 61 $regs{"%esp"} = $4;
|
/linux-4.1.27/arch/x86/ |
D | Makefile_32.cpu | 50 # prologue (push %ebp, mov %esp, %ebp) which breaks the function graph
|
D | Makefile | 140 sp-$(CONFIG_X86_32) := esp
|
D | Kconfig | 359 (esp with 64bit cpus) with acpi support, MADT and DSDT will override it
|
/linux-4.1.27/Documentation/zh_CN/ |
D | oops-tracing.txt | 168 Aug 29 09:51:01 blizard kernel: esi: 00000000 edi: bffffdb3 ebp: 00589f90 esp: 00589f8c
|
/linux-4.1.27/arch/tile/kernel/ |
D | stack.c | 465 void show_stack(struct task_struct *task, unsigned long *esp) in show_stack() argument
|
/linux-4.1.27/Documentation/blockdev/ |
D | ramdisk.txt | 122 area (esp. for disks) so that maximal compression is achieved for
|
/linux-4.1.27/tools/lguest/ |
D | lguest.c | 1551 case 4: return getreg(esp) & mask; in getreg_num() 1578 case 4: setreg(esp, val | (getreg(esp) & ~mask)); return; in setreg_num()
|
/linux-4.1.27/net/netfilter/ |
D | Kconfig | 1107 tristate '"esp" match support'
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 3220 esp = 1342630420, ebx = 1348150624, edx = 1280, ecx = 0, eax = 0, 3573 esp = 1342630864, ebx = 256, edx = 0, ecx = 256, eax = 1024, trapno = 14,
|
/linux-4.1.27/Documentation/filesystems/ |
D | proc.txt | 307 esp current value of ESP
|