diff options
author | Jan Beulich <JBeulich@suse.com> | 2011-11-29 06:03:46 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-12-05 11:24:39 -0500 |
commit | 39e9543344fa3179e346d2b381c6e0cd17b516de (patch) | |
tree | 885218a6367df3a73aa0b7c6926de52d98a6addc /arch | |
parent | 70ea6855d368588a7f1b0242ab83ca6fe2e2ff16 (diff) |
x86-64: Reduce amount of redundant code generated for invalidate_interruptNN
Previously these up to 32 entry points, consisting of all the
same code except for their very first instruction, consumed 0x70
bytes per instance. Just like for device interrupt entry points,
fold them together so that they all use a single instance of the
code after having pushed their vector indicator (resulting in
0x10 bytes per instance, to retain 16-byte alignment of the
individual entry points).
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andi Kleen <ak@linux.intel.com>
Link: http://lkml.kernel.org/r/4ED4CA230200007800064065@nat28.tlf.novell.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/entry_64.S | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S index ab4b7ffd526d..1581f1990187 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S | |||
@@ -951,6 +951,7 @@ END(common_interrupt) | |||
951 | ENTRY(\sym) | 951 | ENTRY(\sym) |
952 | INTR_FRAME | 952 | INTR_FRAME |
953 | pushq_cfi $~(\num) | 953 | pushq_cfi $~(\num) |
954 | .Lcommon_\sym: | ||
954 | interrupt \do_sym | 955 | interrupt \do_sym |
955 | jmp ret_from_intr | 956 | jmp ret_from_intr |
956 | CFI_ENDPROC | 957 | CFI_ENDPROC |
@@ -974,13 +975,21 @@ apicinterrupt X86_PLATFORM_IPI_VECTOR \ | |||
974 | x86_platform_ipi smp_x86_platform_ipi | 975 | x86_platform_ipi smp_x86_platform_ipi |
975 | 976 | ||
976 | #ifdef CONFIG_SMP | 977 | #ifdef CONFIG_SMP |
977 | .irp idx,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, \ | 978 | ALIGN |
979 | INTR_FRAME | ||
980 | .irp idx,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, \ | ||
978 | 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 | 981 | 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 |
979 | .if NUM_INVALIDATE_TLB_VECTORS > \idx | 982 | .if NUM_INVALIDATE_TLB_VECTORS > \idx |
980 | apicinterrupt (INVALIDATE_TLB_VECTOR_START)+\idx \ | 983 | ENTRY(invalidate_interrupt\idx) |
981 | invalidate_interrupt\idx smp_invalidate_interrupt | 984 | pushq_cfi $~(INVALIDATE_TLB_VECTOR_START+\idx) |
985 | jmp .Lcommon_invalidate_interrupt0 | ||
986 | CFI_ADJUST_CFA_OFFSET -8 | ||
987 | END(invalidate_interrupt\idx) | ||
982 | .endif | 988 | .endif |
983 | .endr | 989 | .endr |
990 | CFI_ENDPROC | ||
991 | apicinterrupt INVALIDATE_TLB_VECTOR_START, \ | ||
992 | invalidate_interrupt0, smp_invalidate_interrupt | ||
984 | #endif | 993 | #endif |
985 | 994 | ||
986 | apicinterrupt THRESHOLD_APIC_VECTOR \ | 995 | apicinterrupt THRESHOLD_APIC_VECTOR \ |