mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
d49cb60862
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
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
|
|
# RUN: llc -mtriple=i686-linux-gnu -run-pass=legalizer -verify-machineinstrs %s -o - | FileCheck %s
|
|
|
|
--- |
|
|
|
|
define i32* @inttoptr_p0_s32(i32 %val) {
|
|
entry:
|
|
%0 = inttoptr i32 %val to i32*
|
|
ret i32* %0
|
|
}
|
|
|
|
...
|
|
---
|
|
name: inttoptr_p0_s32
|
|
alignment: 16
|
|
tracksRegLiveness: true
|
|
registers:
|
|
- { id: 0, class: _ }
|
|
- { id: 1, class: _ }
|
|
- { id: 2, class: _ }
|
|
frameInfo:
|
|
maxAlignment: 4
|
|
fixedStack:
|
|
- { id: 0, size: 4, alignment: 16, stack-id: default, isImmutable: true }
|
|
body: |
|
|
bb.1.entry:
|
|
; CHECK-LABEL: name: inttoptr_p0_s32
|
|
; CHECK: [[FRAME_INDEX:%[0-9]+]]:_(p0) = G_FRAME_INDEX %fixed-stack.0
|
|
; CHECK: [[LOAD:%[0-9]+]]:_(s32) = G_LOAD [[FRAME_INDEX]](p0) :: (invariant load 4 from %fixed-stack.0, align 16)
|
|
; CHECK: [[INTTOPTR:%[0-9]+]]:_(p0) = G_INTTOPTR [[LOAD]](s32)
|
|
; CHECK: $eax = COPY [[INTTOPTR]](p0)
|
|
; CHECK: RET 0, implicit $eax
|
|
%1:_(p0) = G_FRAME_INDEX %fixed-stack.0
|
|
%0:_(s32) = G_LOAD %1(p0) :: (invariant load 4 from %fixed-stack.0, align 16)
|
|
%2:_(p0) = G_INTTOPTR %0(s32)
|
|
$eax = COPY %2(p0)
|
|
RET 0, implicit $eax
|
|
|
|
...
|