Lines Matching refs:vector
29 An :abbr:`IDT (Interrupt Descriptor Table)` or a vector table is used
524 gen_isr_tables.py script to generate a C file defining a vector table and
536 A vector table is generated when :kconfig:option:`CONFIG_GEN_IRQ_VECTOR_TABLE` is
552 common entry point for all interrupts and do not support a vector table, in
678 The x86 architecture has a special type of vector table called the Interrupt
680 processor documentation. It is still fundamentally a vector table, and the
682 systems the indexes in the vector table do not correspond to the IRQ line. The
687 configures an interrupt it will look for a free vector in the appropriate range
690 On x86 when an interrupt or exception vector is executed by the CPU, there is
691 no foolproof way to determine which vector was fired, so a software ISR table
699 On systems where the position in the vector table corresponds to the
701 runtime what vector is associated with an IRQ line. :ref:`gen_idt.py` additionally
703 configured vector in the IDT. This is used at runtime by :c:macro:`IRQ_CONNECT`
704 to program the IRQ-to-vector association in the interrupt controller.