2020-11-10 01:21:11 +08:00
|
|
|
# RUN: llc -mtriple=i386-linux-gnu -run-pass=regbankselect %s -o - | FileCheck %s
|
|
|
|
# RUN: llc -mtriple=i386-linux-gnu -regbankselect-greedy -run-pass=regbankselect %s -o - | FileCheck %s
|
2017-05-17 20:48:08 +08:00
|
|
|
|
|
|
|
--- |
|
|
|
|
define void @test_uadde_i32() {
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
...
|
|
|
|
---
|
|
|
|
name: test_uadde_i32
|
|
|
|
# CHECK-LABEL: name: test_uadde_i32
|
[Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing
Summary:
This catches malformed mir files which specify alignment as log2 instead of pow2.
See https://reviews.llvm.org/D65945 for reference,
This is patch is part of a series to introduce an Alignment type.
See this thread for context: http://lists.llvm.org/pipermail/llvm-dev/2019-July/133851.html
See this patch for the introduction of the type: https://reviews.llvm.org/D64790
Reviewers: courbet
Subscribers: MatzeB, qcolombet, dschuff, arsenm, sdardis, nemanjai, jvesely, nhaehnle, hiraditya, kbarton, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, PkmX, jocewei, jsji, Petar.Avramovic, asbirlea, s.egerton, pzheng, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67433
llvm-svn: 371608
2019-09-11 19:16:48 +08:00
|
|
|
alignment: 16
|
2017-05-17 20:48:08 +08:00
|
|
|
legalized: true
|
|
|
|
regBankSelected: false
|
|
|
|
# CHECK: registers:
|
2017-06-06 16:16:19 +08:00
|
|
|
# CHECK-NEXT: - { id: 0, class: gpr, preferred-register: '' }
|
|
|
|
# CHECK-NEXT: - { id: 1, class: gpr, preferred-register: '' }
|
|
|
|
# CHECK-NEXT: - { id: 2, class: gpr, preferred-register: '' }
|
|
|
|
# CHECK-NEXT: - { id: 3, class: gpr, preferred-register: '' }
|
|
|
|
# CHECK-NEXT: - { id: 4, class: gpr, preferred-register: '' }
|
2017-05-17 20:48:08 +08:00
|
|
|
registers:
|
|
|
|
- { id: 0, class: _ }
|
|
|
|
- { id: 1, class: _ }
|
|
|
|
- { id: 2, class: _ }
|
|
|
|
- { id: 3, class: _ }
|
|
|
|
- { id: 4, class: _ }
|
|
|
|
body: |
|
|
|
|
bb.0 (%ir-block.0):
|
|
|
|
%0(s32) = IMPLICIT_DEF
|
|
|
|
%1(s32) = IMPLICIT_DEF
|
|
|
|
%2(s1) = IMPLICIT_DEF
|
|
|
|
%3(s32), %4(s1) = G_UADDE %0, %1, %2
|
|
|
|
RET 0
|
|
|
|
|
|
|
|
...
|