ladybird/Kernel/Interrupts
Ben Wiederhake 860a3bbce3 Kernel: Use default con/de-structors
This may seem like a no-op change, however it shrinks down the Kernel by a bit:
.text -432
.unmap_after_init -60
.data -480
.debug_info -673
.debug_aranges 8
.debug_ranges -232
.debug_line -558
.debug_str -308
.debug_frame -40

With '= default', the compiler can do more inlining, hence the savings.
I intentionally omitted some opportunities for '= default', because they
would increase the Kernel size.
2021-02-28 18:09:12 +01:00
..
APIC.cpp Kernel: Fix GenericInterruptHandler problems with virtual functions 2021-02-28 15:27:53 +01:00
APIC.h Everywhere: Remove a bunch of redundant 'AK::' namespace prefixes 2021-02-26 16:59:56 +01:00
GenericInterruptHandler.cpp Kernel: Fix GenericInterruptHandler problems with virtual functions 2021-02-28 15:27:53 +01:00
GenericInterruptHandler.h Kernel: Fix GenericInterruptHandler problems with virtual functions 2021-02-28 15:27:53 +01:00
InterruptManagement.cpp Everywhere: Rename ASSERT => VERIFY 2021-02-23 20:56:54 +01:00
InterruptManagement.h Refactor: Replace usages of FixedArray with Vector. 2020-09-08 14:01:21 +02:00
IOAPIC.cpp Everywhere: Rename ASSERT => VERIFY 2021-02-23 20:56:54 +01:00
IOAPIC.h Everywhere: Re-format with clang-format-11 2020-12-31 21:51:00 +01:00
IRQController.h Kernel: Use default con/de-structors 2021-02-28 18:09:12 +01:00
IRQHandler.cpp Kernel: Fix GenericInterruptHandler problems with virtual functions 2021-02-28 15:27:53 +01:00
IRQHandler.h Kernel: Add and remove explicit keyword where needed 2020-08-28 09:16:18 +02:00
MSIHandler.h Meta+Kernel: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
PIC.cpp Everywhere: Rename ASSERT => VERIFY 2021-02-23 20:56:54 +01:00
PIC.h Interrupts: Simplify IRQ disabling & enabling in IRQController(s) 2020-03-24 16:15:33 +01:00
SharedIRQHandler.cpp Kernel: Fix GenericInterruptHandler problems with virtual functions 2021-02-28 15:27:53 +01:00
SharedIRQHandler.h Kernel: Add missing initializer for SharedIRQHandler::m_enabled 2021-02-05 21:23:11 +01:00
SpuriousInterruptHandler.cpp Kernel: Fix GenericInterruptHandler problems with virtual functions 2021-02-28 15:27:53 +01:00
SpuriousInterruptHandler.h Kernel: Allow to install a real IRQ handler on a spurious one 2020-12-21 00:19:21 +01:00
UnhandledInterruptHandler.cpp Kernel: Use PANIC() in a bunch of places :^) 2021-02-14 09:36:58 +01:00
UnhandledInterruptHandler.h Everywhere: Rename ASSERT => VERIFY 2021-02-23 20:56:54 +01:00