diff options
| author | Volkan Keles <vkeles@apple.com> | 2018-02-07 02:44:51 +0000 |
|---|---|---|
| committer | Volkan Keles <vkeles@apple.com> | 2018-02-07 02:44:51 +0000 |
| commit | 5838f7c013d327c8eda3e2cd4b3e9745b493fcaf (patch) | |
| tree | 84e5d951bf8f122261f8cf48783243ab60687c7f /llvm/test/CodeGen | |
| parent | 16d26f6f94575191c4660859167e8b36e612802b (diff) | |
| download | bcm5719-llvm-5838f7c013d327c8eda3e2cd4b3e9745b493fcaf.tar.gz bcm5719-llvm-5838f7c013d327c8eda3e2cd4b3e9745b493fcaf.zip | |
GlobalISel: Always check operand types when executing match table
Summary:
Some of the commands tries to get the register without checking
if the specified operands is a register and causing crash. All commands
should check the type of the operand first and reject if the type is
not expected.
Reviewers: dsanders, qcolombet
Reviewed By: qcolombet
Subscribers: qcolombet, rovka, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D42984
llvm-svn: 324442
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/X86/GlobalISel/avoid-matchtable-crash.mir | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/GlobalISel/avoid-matchtable-crash.mir b/llvm/test/CodeGen/X86/GlobalISel/avoid-matchtable-crash.mir new file mode 100644 index 00000000000..b4afd808ac1 --- /dev/null +++ b/llvm/test/CodeGen/X86/GlobalISel/avoid-matchtable-crash.mir @@ -0,0 +1,36 @@ +# RUN: not llc -o - -run-pass=instruction-select -pass-remarks-missed=gisel %s 2>&1 | FileCheck %s +--- | + target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" + target triple = "x86_64--linux-gnu" + + define void @test_check_type() { + ret void + } +... +--- +name: test_check_type +alignment: 4 +legalized: true +regBankSelected: true +tracksRegLiveness: true +registers: + - { id: 0, class: gpr } + - { id: 1, class: gpr } +body: | + bb.1 (%ir-block.0): + liveins: $edi + + ; Intrinsic::x86_flags_read_u64 has a higher prority than + ; Intrinsic::x86_int in the match table and both of them + ; have two operands, but their IntrinsicID index is different. + ; This causes crash when executing GIM_CheckType for Intrinsic::x86_int + ; because Operand0 is not a register. + ; Make sure we check whether the first operand is a register and + ; reject if it's not. + ; CHECK: cannot select: G_INTRINSIC_W_SIDE_EFFECTS intrinsic(@llvm.x86.int) + %1:gpr(s32) = COPY $edi + %0:gpr(s8) = G_TRUNC %1(s32) + G_INTRINSIC_W_SIDE_EFFECTS intrinsic(@llvm.x86.int), %0(s8) + RET 0 + +... |

