gpt4 book ai didi

c - nasm 宏无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-04 01:53:27 25 4
gpt4 key购买 nike

我正在尝试设置我的内核的 IDT,但我收到此链接错误:

 bin/obj/idt.o: In function `setup_idt':
idt.c:(.text+0x9b): undefined reference to `interrupt_handler_1'

错误说 interrupt_handler_1 没有定义,但它是 interrupt_manager.asm 中的一个宏:

%macro no_error_code_interrupt_handler 1
global interrupt_handler_%1
interrupt_handler_%1:
cli
push dword 0 ; push 0 as error code
push dword %1 ; push the interrupt number
jmp common_interrupt_handler ; jump to the common handler
%endmacro

这是 setyup_idt 函数:

extern void interrupt_handler_1();

void setup_idt()
{
// Set the special idt_pointer
idt_pointer.limit = ( sizeof(struct InterruptDescriptorTableEntry) * 256 ) - 1; // Subsract 1 because sizeof doesn't start from 0
idt_pointer.address = (uint32)&idt;

// Clear the whole idt to zeros
memset(&idt, 0, sizeof(struct InterruptDescriptorTableEntry) * 256 );

for(unsigned int i = 0; i < 256; i++)
{
idt_set_gate(i, (uint32)&interrupt_handler_1, 0x8, 0x8E);
}

__asm__ __volatile__("lidt %0": :"m"(idt_pointer));

}

我做错了什么?

额外的问题:是否有宏/另一种方法可以自动将 GDT 的 i 条目链接到 i 中断处理程序,让我试着更好地解释一下:

我想做的是这样的:

    for(unsigned int i = 0; i < 256; i++)
{
idt_set_gate(i, (uint32)&interrupt_handler_[i], 0x8, 0x8E);
}

其中 interrupt_handler[i] 将是中断处理程序_[i] 将被 nasm 宏替换

最佳答案

您需要在 NASM 代码中扩展宏。宏定义本身不生成任何代码。它需要在 NASM 代码中明确使用。

您可以使用%rep 指令重复扩展具有不同参数的宏。像这样:

    extern common_interrupt_handler

%macro error_code_interrupt_handler 1
global interrupt_handler_%1
interrupt_handler_%1:
push dword %1 ; push the interrupt number
jmp common_interrupt_handler ; jump to the common handler
%endmacro

%macro no_error_code_interrupt_handler 1
global interrupt_handler_%1
interrupt_handler_%1:
push dword 0 ; push 0 as error code
push dword %1 ; push the interrupt number
jmp common_interrupt_handler ; jump to the common handler
%endmacro

; Some CPU exceptions have error codes, some don't

%assign intnum 0
%rep 8 - intnum
no_error_code_interrupt_handler intnum
%assign intnum intnum + 1
%endrep

error_code_interrupt_handler 8
no_error_code_interrupt_handler 9

%assign intnum 10
%rep 16 - intnum
error_code_interrupt_handler intnum
%assign intnum intnum + 1
%endrep

no_error_code_interrupt_handler 16
error_code_interrupt_handler 17
no_error_code_interrupt_handler 18
no_error_code_interrupt_handler 19
no_error_code_interrupt_handler 20

%assign intnum 21 ; first (currently) unassigned CPU exception
%rep 32 - intnum
no_error_code_interrupt_handler intnum
%assign intnum intnum + 1
%endrep

%assign intnum 32 ; first user defined interrupt
%rep 256 - intnum
no_error_code_interrupt_handler intnum
%assign intnum intnum + 1
%endrep

; define a table of interrupt handlers for C code to use

global interrupt_handler_table
interrupt_handler_table:

%assign intnum 0
%rep 256
dd interrupt_handler_ %+ intnum
%assign intnum intnum + 1
%endrep

上面的代码创建了一个表,其中包含您可以在 C 代码中使用的所有中断处理程序,如下所示:

extern uint32 interrupt_handler_table[256];

for(unsigned int i = 0; i < 256; i++)
{
idt_set_gate(i, interrupt_handler_table[i], 0x8, 0x8E);
}

请注意,我为那些确实会生成错误代码的 CPU 异常创建了一个 error_code_interrupt_handler 宏。此外,我已经从您的代码中删除了不必要的 CLI 指令。由于您在 IDT 中使用中断门,因此中断启用标志会自动清除。

关于c - nasm 宏无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38834670/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com