aboutsummaryrefslogtreecommitdiff
path: root/tests/cases/invokebitcast.ll
blob: ecbce6dd261c4230390f97428c0a45451b0bd190 (plain)
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
43
44
45
46
47
; ModuleID = '/dev/shm/tmp/src.cpp.o'
; Just test for compilation here
target datalayout = "e-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-p:32:32:32-v128:32:128-n32-S128"
target triple = "asmjs-unknown-emscripten"

%struct.CPU_Regs = type { [8 x %union.GenReg32] }
%union.GenReg32 = type { [1 x i32] }

@cpu_regs = unnamed_addr global %struct.CPU_Regs zeroinitializer, align 32 ; [#uses=2]
@.str = private unnamed_addr constant [14 x i8] c"hello, world!\00", align 1 ; [#uses=1]

; [#uses=0]
define i32 @main(i32 %p) {
entry:
  %retval = alloca i32                            ; [#uses=2]
  %0 = alloca i32                                 ; [#uses=2]
  %"alloca point" = bitcast i32 0 to i32          ; [#uses=0]
  %1 = load i32* bitcast (i32* getelementptr inbounds (%struct.CPU_Regs* @cpu_regs, i32 0, i32 0, i32 1, i32 0, i32 0) to i32*), align 2 ; [#uses=1]
  %s = trunc i32 %1 to i16
  store i16 %s, i16* bitcast (%struct.CPU_Regs* @cpu_regs to i16*), align 2
  %2 = call i32 @puts(i8* getelementptr inbounds ([14 x i8]* @.str, i32 0, i32 0)) ; [#uses=0]
  store i32 0, i32* %0, align 4
  %3 = load i32* %0, align 4                      ; [#uses=1]
  store i32 %3, i32* %retval, align 4
  br label %return

  invoke void bitcast (void (i32*, i32)* @_Z8toStringj to void (i64*, i32)*)(i64* bitcast (%struct.CPU_Regs* @cpu_regs to i64*), i32 %p)
          to label %invcont33 unwind label %lpad106

invcont33:
  ret i32 %retval1

lpad106:
  %Z = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
       cleanup 
  ret i32 %retval1

return:                                           ; preds = %entry
  %retval1 = load i32* %retval                    ; [#uses=1]
  ret i32 %retval1
}

; [#uses=1]
declare i32 @puts(i8*)

declare void @_Z8toStringj(i32*, i32)
declare i32 @__gxx_personality_v0(...)