File: pr26992.ll

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,388 kB
  • sloc: cpp: 4,167,636; ansic: 714,256; asm: 457,610; python: 155,927; objc: 65,094; sh: 42,856; lisp: 26,908; perl: 7,786; pascal: 7,722; makefile: 6,881; ml: 5,581; awk: 3,648; cs: 2,027; xml: 888; javascript: 381; ruby: 156
file content (37 lines) | stat: -rw-r--r-- 1,143 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
; RUN: opt -instcombine -S < %s | FileCheck %s
target triple = "x86_64-pc-windows-msvc"

define i1 @test1(i8* %p) personality i32 (...)* @__CxxFrameHandler3 {
entry:
  %a = getelementptr i8, i8* %p, i64 1
  invoke void @may_throw()
          to label %invoke.cont unwind label %catch.dispatch

invoke.cont:
  %b = getelementptr inbounds i8, i8* %a, i64 1
  invoke void @may_throw()
          to label %exit unwind label %catch.dispatch

catch.dispatch:
  %c = phi i8* [ %b, %invoke.cont ], [ %a, %entry ]
  %tmp1 = catchswitch within none [label %catch] unwind to caller

catch:
  %tmp2 = catchpad within %tmp1 [i8* null, i32 64, i8* null]
  catchret from %tmp2 to label %exit

exit:
  %d = phi i8* [ %a, %invoke.cont ], [ %c, %catch ]
  %cmp = icmp eq i8* %d, %a
  ret i1 %cmp
}

; CHECK-LABEL: define i1 @test1(
; CHECK:  %[[gep_a:.*]] = getelementptr i8, i8* %p, i64 1
; CHECK:  %[[gep_b:.*]] = getelementptr inbounds i8, i8* %p, i64 2
; CHECK:  phi i8* [ %[[gep_b]], {{.*}} ], [ %[[gep_a]], {{.*}} ]
; CHECK:  %tmp1 = catchswitch within none [label %catch] unwind to caller

declare void @may_throw()

declare i32 @__CxxFrameHandler3(...)