* Question about entry.S RESTORE_REGS macro
@ 2006-09-25 16:26 Ed Reed
0 siblings, 0 replies; only message in thread
From: Ed Reed @ 2006-09-25 16:26 UTC (permalink / raw)
To: linux-assembly
I'm looking at the entry / exit routines to the kernel in
arch/i386/kernel/entry.S, and at the entry conditions for
ret_from_fork() that is also defined there....
And looking at the assembler macro defined at the top of the file,
RESTORE_REGS, I'm trying to figure out what the ELF section stuff is
doing there - have you a clue, or a pointer you give me as to whom to
ask? I don't THINK it's relevant to my current efforts, but I'd like to
understand what's going on.
code:
#define SAVE_ALL \
cld; \
pushl %es; \
pushl %ds; \
pushl %eax; \
pushl %ebp; \
pushl %edi; \
pushl %esi; \
pushl %edx; \
pushl %ecx; \
pushl %ebx; \
movl $(__USER_DS), %edx; \
movl %edx, %ds; \
movl %edx, %es;
#define RESTORE_INT_REGS \
popl %ebx; \
popl %ecx; \
popl %edx; \
popl %esi; \
popl %edi; \
popl %ebp; \
popl %eax
#define RESTORE_REGS \
RESTORE_INT_REGS; \
1: popl %ds; \
2: popl %es; \
.section .fixup,"ax"; \
3: movl $0,(%esp); \
jmp 1b; \
4: movl $0,(%esp); \
jmp 2b; \
.previous; \
.section __ex_table,"a";\
.align 4; \
.long 1b,3b; \
.long 2b,4b; \
.previous
The SAVE_ALL and RESTORE_INT_REGS seem pretty straight forward, but in
RESTORE_REGS, are the two section entries and labels creating relocation
entries for the popl %ds and %es instructions?
Newbie question, I suppose, but that's the only think I can see that
would make sense, and don't know who else to ask.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-09-25 16:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-25 16:26 Question about entry.S RESTORE_REGS macro Ed Reed
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).