File: 2010-04-13-AnalyzeBranchCrash.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (42 lines) | stat: -rw-r--r-- 1,762 bytes parent folder | download | duplicates (13)
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
41
42
; RUN: llc < %s -mtriple=i386-apple-darwin -mcpu=core2
; rdar://7857830

%0 = type opaque
%1 = type opaque

define void @t(ptr %self, ptr nocapture %_cmd, ptr %scroller, i32 %hitPart, float %multiplier) nounwind optsize ssp {
entry:
  switch i32 %hitPart, label %if.else [
    i32 7, label %if.then
    i32 8, label %if.then
  ]

if.then:                                          ; preds = %entry, %entry
  %tmp69 = load float, ptr null, align 4              ; <float> [#uses=1]
  %cmp19 = icmp eq ptr null, %scroller            ; <i1> [#uses=2]
  %cond = select i1 %cmp19, float %tmp69, float 0.000000e+00 ; <float> [#uses=1]
  %call36 = call i64 @objc_msgSend(ptr undef, ptr undef) nounwind optsize ; <i64> [#uses=2]
  br i1 %cmp19, label %cond.true32, label %cond.false39

cond.true32:                                      ; preds = %if.then
  %sroa.store.elt68 = lshr i64 %call36, 32        ; <i64> [#uses=1]
  %0 = trunc i64 %sroa.store.elt68 to i32         ; <i32> [#uses=1]
  br label %cond.end47

cond.false39:                                     ; preds = %if.then
  %1 = trunc i64 %call36 to i32                   ; <i32> [#uses=1]
  br label %cond.end47

cond.end47:                                       ; preds = %cond.false39, %cond.true32
  %cond48.in = phi i32 [ %0, %cond.true32 ], [ %1, %cond.false39 ] ; <i32> [#uses=1]
  %cond48 = bitcast i32 %cond48.in to float       ; <float> [#uses=1]
  %div = fdiv float %cond, undef                  ; <float> [#uses=1]
  %div58 = fdiv float %div, %cond48               ; <float> [#uses=1]
  call void @objc_msgSend(ptr undef, ptr undef, float %div58) nounwind optsize
  ret void

if.else:                                          ; preds = %entry
  ret void
}

declare ptr @objc_msgSend(ptr, ptr, ...)