File: unroll-cleanuppad.ll

package info (click to toggle)
llvm-toolchain-7 1%3A7.0.1-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 733,456 kB
  • sloc: cpp: 3,776,651; ansic: 633,271; asm: 350,301; python: 142,716; objc: 107,612; sh: 22,626; lisp: 11,056; perl: 7,999; pascal: 6,742; ml: 5,537; awk: 3,536; makefile: 2,557; cs: 2,027; xml: 841; ruby: 156
file content (40 lines) | stat: -rw-r--r-- 1,171 bytes parent folder | download | duplicates (17)
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
38
39
40
; RUN: opt -S -loop-unroll %s | FileCheck %s
target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-windows-msvc18.0.0"

define void @test1() personality i32 (...)* @__CxxFrameHandler3 {
entry:
  br label %for.body

for.body:                                         ; preds = %entry, %for.inc
  %phi = phi i32 [ 0, %entry ], [ %inc, %for.inc ]
  invoke void @callee(i32 %phi)
          to label %for.inc unwind label %ehcleanup

for.inc:                                          ; preds = %for.body
  %inc = add nuw nsw i32 %phi, 1
  %cmp = icmp slt i32 %inc, 3
  br i1 %cmp, label %for.body, label %for.cond.cleanup

for.cond.cleanup:                                 ; preds = %for.inc
  call void @dtor()
  ret void

ehcleanup:                                        ; preds = %for.body
  %cp = cleanuppad within none []
  call void @dtor() [ "funclet"(token %cp) ]
  cleanupret from %cp unwind to caller
}

; CHECK-LABEL: define void @test1(
; CHECK: invoke void @callee(i32 0

; CHECK: invoke void @callee(i32 1

; CHECK: invoke void @callee(i32 2

declare void @callee(i32)

declare i32 @__CxxFrameHandler3(...)

declare void @dtor()