[PATCH] D29650: [CodeGen] fix alignment of JUMPTABLE_INSTS on v8M.base
Sanne Wouda via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 9 08:32:57 PST 2017
sanwou01 updated this revision to Diff 87815.
sanwou01 added a comment.
Good suggestion, @samparker. I've updated the test to include a check for the
presence of an alignment directive if generating an asm file.
https://reviews.llvm.org/D29650
Files:
lib/Target/ARM/ARMAsmPrinter.cpp
test/CodeGen/ARM/v8m.base-jumptable_alignment.ll
Index: test/CodeGen/ARM/v8m.base-jumptable_alignment.ll
===================================================================
--- /dev/null
+++ test/CodeGen/ARM/v8m.base-jumptable_alignment.ll
@@ -0,0 +1,51 @@
+; RUN: llc -filetype=obj -o /dev/null < %s
+; RUN: llc -filetype=asm < %s | FileCheck %s
+
+; ModuleID = 'bugpoint-reduced-simplified.bc'
+source_filename = "bugpoint-output-39ed676.bc"
+target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
+target triple = "thumbv8m.base-arm-none-eabi"
+
+ at crc32_tab = external unnamed_addr global [256 x i32], align 4
+ at g_566 = external global i32**, align 4
+
+define void @main() {
+entry:
+ %0 = load volatile i32**, i32*** @g_566, align 4
+ br label %func_16.exit.i.i.i
+
+lbl_1394.i.i.i.loopexit: ; preds = %for.cond14.preheader.us.i.i.i
+ unreachable
+
+func_16.exit.i.i.i: ; preds = %entry
+ br i1 undef, label %for.cond7.preheader.i.lr.ph.i.i, label %for.end476.i.i.i.loopexit
+
+for.cond7.preheader.i.lr.ph.i.i: ; preds = %func_16.exit.i.i.i
+ br i1 undef, label %for.end476.i.i.i.loopexit, label %for.cond7.preheader.i.i.preheader.i
+
+for.cond7.preheader.i.i.preheader.i: ; preds = %for.cond7.preheader.i.lr.ph.i.i
+ br label %for.cond14.preheader.us.i.i.i
+
+for.cond7.preheader.i.us.i.i: ; preds = %for.cond7.preheader.i.lr.ph.i.i
+ unreachable
+
+for.cond14.preheader.us.i.i.i: ; preds = %for.inc459.us.i.i.i, %for.cond7.preheader.i.i.preheader.i
+; CHECK: @ BB#4
+; CHECK-NEXT: .p2align 2
+ switch i4 undef, label %func_1.exit.loopexit [
+ i4 0, label %for.inc459.us.i.i.i
+ i4 -5, label %for.inc459.us.i.i.i
+ i4 2, label %lbl_1394.i.i.i.loopexit
+ i4 3, label %for.end476.i.i.i.loopexit
+ ]
+
+for.inc459.us.i.i.i: ; preds = %for.cond14.preheader.us.i.i.i, %for.cond14.preheader.us.i.i.i
+ br label %for.cond14.preheader.us.i.i.i
+
+for.end476.i.i.i.loopexit: ; preds = %for.cond14.preheader.us.i.i.i
+ unreachable
+
+func_1.exit.loopexit: ; preds = %for.cond14.preheader.us.i.i.i
+ %arrayidx.i63.i.i5252 = getelementptr inbounds [256 x i32], [256 x i32]* @crc32_tab, i32 0, i32 undef
+ unreachable
+}
Index: lib/Target/ARM/ARMAsmPrinter.cpp
===================================================================
--- lib/Target/ARM/ARMAsmPrinter.cpp
+++ lib/Target/ARM/ARMAsmPrinter.cpp
@@ -1142,6 +1142,11 @@
const MachineOperand &MO1 = MI->getOperand(1);
unsigned JTI = MO1.getIndex();
+ // Make sure the Thumb jump table is 4-byte aligned. This will be a nop for
+ // ARM mode tables.
+ EmitAlignment(2);
+
+ // Emit a label for the jump table.
MCSymbol *JTISymbol = GetARMJTIPICJumpTableLabel(JTI);
OutStreamer->EmitLabel(JTISymbol);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29650.87815.patch
Type: text/x-patch
Size: 2862 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170209/b4e49587/attachment.bin>
More information about the llvm-commits
mailing list