[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / GlobalISel / combine-ext-debugloc.mir
blob02d27e556fd588994f4b5effc08365090957f2ca
1 # RUN: llc -O0 -verify-machineinstrs -mtriple aarch64-- -run-pass=legalizer %s -o - | FileCheck %s
3 # Check that when we combine ZEXT/ANYEXT we assign the correct location.
4 # CHECK: !8 = !DILocation(line: 23, column: 5, scope: !4)
5 # CHECK:  G_AND %16, %15, debug-location !8
7 --- |
8   target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
9   target triple = "arm64-apple-ios13.0.0"
11   @.str = external dso_local unnamed_addr constant [4 x i8], align 1
13   define void @main() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) !dbg !4 {
14   entry:
15     %tobool = trunc i8 undef to i1
16     %conv = zext i1 %tobool to i32
17     call void (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 %conv), !dbg !8
18     %0 = load i32, i32* undef, align 4, !dbg !9
19     call void (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 %0)
20     ret void
21   }
23   declare void @printf(i8*, ...)
24   declare i32 @__gxx_personality_v0(...)
26   !llvm.dbg.cu = !{!0}
27   !llvm.module.flags = !{!2, !3}
29   !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !1, producer: "clang version 10.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: LineTablesOnly, nameTableKind: None, sysroot: "/pata/tino", sdk: "iPhoneOS13.0.sdk")
30   !1 = !DIFile(filename: "/pata/tino/main.cpp", directory: "/pata/tino")
31   !2 = !{i32 2, !"Debug Info Version", i32 3}
32   !3 = !{i32 7, !"PIC Level", i32 2}
33   !4 = distinct !DISubprogram(name: "main", scope: !5, file: !5, line: 19, type: !6, scopeLine: 20, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0)
34   !5 = !DIFile(filename: "main.cpp", directory: "/pata/tino")
35   !6 = !DISubroutineType(types: !7)
36   !7 = !{}
37   !8 = !DILocation(line: 23, column: 5, scope: !4)
38   !9 = !DILocation(line: 36, column: 21, scope: !4)
40 ...
41 ---
42 name:            main
43 registers:
44   - { id: 0, class: _, preferred-register: '' }
45   - { id: 1, class: _, preferred-register: '' }
46   - { id: 2, class: _, preferred-register: '' }
47   - { id: 3, class: _, preferred-register: '' }
48   - { id: 4, class: _, preferred-register: '' }
49   - { id: 5, class: _, preferred-register: '' }
50   - { id: 6, class: _, preferred-register: '' }
51   - { id: 7, class: _, preferred-register: '' }
52   - { id: 8, class: _, preferred-register: '' }
53   - { id: 9, class: _, preferred-register: '' }
54 body:             |
55   bb.1.entry:
56     %0:_(s8) = G_IMPLICIT_DEF
57     %4:_(p0) = COPY $x0
58     %10:_(p0) = G_IMPLICIT_DEF debug-location !DILocation(line: 0, scope: !4)
59     %1:_(s1) = G_TRUNC %0(s8)
60     %2:_(s32) = G_ZEXT %1(s1)
61     ADJCALLSTACKDOWN 8, 0, implicit-def $sp, implicit $sp, debug-location !8
62     $x0 = COPY %4(p0), debug-location !8
63     %5:_(p0) = COPY $sp, debug-location !8
64     %6:_(s64) = G_CONSTANT i64 0
65     %7:_(p0) = G_PTR_ADD %5, %6(s64), debug-location !8
66     %8:_(s64) = G_ANYEXT %2(s32), debug-location !8
67     G_STORE %8(s64), %7(p0), debug-location !8 :: (store (s64) into stack, align 1)
68     BL @printf, csr_aarch64_aapcs, implicit-def $lr, implicit $sp, implicit $x0, debug-location !8
69     ADJCALLSTACKUP 8, 0, implicit-def $sp, implicit $sp, debug-location !8
70     %13:_(s64) = G_LOAD %10(p0), debug-location !9 :: (load (s32) from `i32* undef`)
71     ADJCALLSTACKDOWN 8, 0, implicit-def $sp, implicit $sp
72     $x0 = COPY %4(p0)
73     %11:_(p0) = COPY $sp
74     %12:_(p0) = G_PTR_ADD %11, %6(s64)
75     G_STORE %13(s64), %12(p0) :: (store (s64) into stack, align 1)
76     BL @printf, csr_aarch64_aapcs, implicit-def $lr, implicit $sp, implicit $x0
77     ADJCALLSTACKUP 8, 0, implicit-def $sp, implicit $sp
78     RET_ReallyLR
80 ...