我很难理解一段代码。 我阅读了xv6讲座at line 1054
以下是代码:
.globl entry
entry:
# Turn on page size extension for 4Mbyte pages
movl %cr4, %eax
orl $(CR4_PSE), %eax
movl %eax, %cr4
# Set page directory
movl $(V2P_WO(entrypgdir)), %eax
movl %eax, %cr3
# Turn on paging.
movl %cr0, %eax
orl $(CR0_PG|CR0_WP), %eax
movl %eax, %cr0
# Set up the stack pointer.
movl $(stack + KSTACKSIZE), %esp
# Jump to main(), and switch to executing at
# high addresses. The indirect call is needed because
# the assembler produces a PC-relative instruction
# for a direct jump.
mov $main, %eax
jmp *%eax
.comm stack, KSTACKSIZE
我的问题是:
当movl $(stack + KSTACKSIZE), %esp
在项目中没有被定义时,我们stack
怎么可能,但是在第1063行作为.comm符号和稍后调用的函数,并将堆栈变量重新定义为当地人
static void
startothers(void)
{
char *stack; // THIS ONE IS A DIFFERENT BEAST, right ?
...
// Tell entryother.S what stack to use, where to enter, and what
// pgdir to use. We cannot use kpgdir yet, because the AP processor
// is running in low memory, so we use entrypgdir for the APs too.
stack = kalloc();
*(void**)(code-4) = stack + KSTACKSIZE;
*(void**)(code-8) = mpenter;
*(int**)(code-12) = (void *) v2p(entrypgdir);
我可能会错过一个技巧,但是当它的地址设置时我不会得到。
在链接阶段,以便实际定义堆栈?
由于
答案 0 :(得分:0)
是.comm
使用stack
部分中的给定STACKSIZE
定义并分配.bss
。首次执行时,代码按原样运行,并使用该堆栈。从startothers
的函数名称判断,我假设这是一个多处理器启动。初始cpu启动后,它会为每个其他处理器分配一个新堆栈,并修改代码本身,以便它使用新分配的。
在我看来,如果entry
使用这些东西的变量,那将会更加令人困惑。