什么是中断100用于?我正在浏览Qemu翻译代码qemu/target-i386/translate.c
,在那里我看到了参考文献。
static void gen_interrupt(DisasContext *s, int intno,
target_ulong cur_eip, target_ulong next_eip)
{
if (intno == 100) {
gen_helper_q_start_trace();
return;
} else if (intno == 101) {
gen_helper_q_end_trace();
return;
} else if (intno == 104 ) {
gen_helper_q_hypercall_entry(); //Hypercall Entry
return;
}