vmcore.ml revision c8ac229cc8349685117f68bc6f1da04f98015cd6
1(* RUN: rm -rf %t.builddir
2 * RUN: mkdir -p %t.builddir
3 * RUN: cp %s %t.builddir
4 * RUN: %ocamlopt -warn-error A llvm.cmxa llvm_analysis.cmxa llvm_bitwriter.cmxa %t.builddir/vmcore.ml -o %t
5 * RUN: %t %t.bc
6 * RUN: llvm-dis < %t.bc > %t.ll
7 * RUN: FileCheck %s < %t.ll
8 * Do a second pass for things that shouldn't be anywhere.
9 * RUN: FileCheck -check-prefix=CHECK-NOWHERE %s < %t.ll
10 * XFAIL: vg_leak
11 *)
12
13(* Note: It takes several seconds for ocamlopt to link an executable with
14         libLLVMCore.a, so it's better to write a big test than a bunch of
15         little ones. *)
16
17open Llvm
18open Llvm_bitwriter
19
20
21(* Tiny unit test framework - really just to help find which line is busted *)
22let exit_status = ref 0
23let suite_name = ref ""
24let group_name = ref ""
25let case_num = ref 0
26let print_checkpoints = false
27let context = global_context ()
28let i1_type = Llvm.i1_type context
29let i8_type = Llvm.i8_type context
30let i16_type = Llvm.i16_type context
31let i32_type = Llvm.i32_type context
32let i64_type = Llvm.i64_type context
33let void_type = Llvm.void_type context
34let float_type = Llvm.float_type context
35let double_type = Llvm.double_type context
36let fp128_type = Llvm.fp128_type context
37
38let group name =
39  group_name := !suite_name ^ "/" ^ name;
40  case_num := 0;
41  if print_checkpoints then
42    prerr_endline ("  " ^ name ^ "...")
43
44let insist cond =
45  incr case_num;
46  if not cond then
47    exit_status := 10;
48  match print_checkpoints, cond with
49  | false, true -> ()
50  | false, false ->
51      prerr_endline ("FAILED: " ^ !suite_name ^ "/" ^ !group_name ^ " #" ^ (string_of_int !case_num))
52  | true, true ->
53      prerr_endline ("    " ^ (string_of_int !case_num))
54  | true, false ->
55      prerr_endline ("    " ^ (string_of_int !case_num) ^ " FAIL")
56
57let suite name f =
58  suite_name := name;
59  if print_checkpoints then
60    prerr_endline (name ^ ":");
61  f ()
62
63
64(*===-- Fixture -----------------------------------------------------------===*)
65
66let filename = Sys.argv.(1)
67let m = create_module context filename
68
69
70(*===-- Target ------------------------------------------------------------===*)
71
72let test_target () =
73  begin group "triple";
74    let trip = "i686-apple-darwin8" in
75    set_target_triple trip m;
76    insist (trip = target_triple m)
77  end;
78  
79  begin group "layout";
80    let layout = "bogus" in
81    set_data_layout layout m;
82    insist (layout = data_layout m)
83  end
84  (* CHECK: target datalayout = "bogus"
85   * CHECK: target triple = "i686-apple-darwin8"
86   *)
87
88
89(*===-- Constants ---------------------------------------------------------===*)
90
91let test_constants () =
92  (* CHECK: const_int{{.*}}i32{{.*}}-1
93   *)
94  group "int";
95  let c = const_int i32_type (-1) in
96  ignore (define_global "const_int" c m);
97  insist (i32_type = type_of c);
98  insist (is_constant c);
99
100  (* CHECK: const_sext_int{{.*}}i64{{.*}}-1
101   *)
102  group "sext int";
103  let c = const_int i64_type (-1) in
104  ignore (define_global "const_sext_int" c m);
105  insist (i64_type = type_of c);
106
107  (* CHECK: const_zext_int64{{.*}}i64{{.*}}4294967295
108   *)
109  group "zext int64";
110  let c = const_of_int64 i64_type (Int64.of_string "4294967295") false in
111  ignore (define_global "const_zext_int64" c m);
112  insist (i64_type = type_of c);
113
114  (* CHECK: const_int_string{{.*}}i32{{.*}}-1
115   *)
116  group "int string";
117  let c = const_int_of_string i32_type "-1" 10 in
118  ignore (define_global "const_int_string" c m);
119  insist (i32_type = type_of c);
120
121  (* CHECK: @const_string = global {{.*}}c"cruel\00world"
122   *)
123  group "string";
124  let c = const_string context "cruel\000world" in
125  ignore (define_global "const_string" c m);
126  insist ((array_type i8_type 11) = type_of c);
127
128  (* CHECK: const_stringz{{.*}}"hi\00again\00"
129   *)
130  group "stringz";
131  let c = const_stringz context "hi\000again" in
132  ignore (define_global "const_stringz" c m);
133  insist ((array_type i8_type 9) = type_of c);
134
135  (* CHECK: const_single{{.*}}2.75
136   * CHECK: const_double{{.*}}3.1459
137   * CHECK: const_double_string{{.*}}1.25
138   *)
139  begin group "real";
140    let cs = const_float float_type 2.75 in
141    ignore (define_global "const_single" cs m);
142    insist (float_type = type_of cs);
143    
144    let cd = const_float double_type 3.1459 in
145    ignore (define_global "const_double" cd m);
146    insist (double_type = type_of cd);
147
148    let cd = const_float_of_string double_type "1.25" in
149    ignore (define_global "const_double_string" cd m);
150    insist (double_type = type_of cd)
151  end;
152  
153  let one = const_int i16_type 1 in
154  let two = const_int i16_type 2 in
155  let three = const_int i32_type 3 in
156  let four = const_int i32_type 4 in
157  
158  (* CHECK: const_array{{.*}}[i32 3, i32 4]
159   *)
160  group "array";
161  let c = const_array i32_type [| three; four |] in
162  ignore (define_global "const_array" c m);
163  insist ((array_type i32_type 2) = (type_of c));
164  
165  (* CHECK: const_vector{{.*}}<i16 1, i16 2{{.*}}>
166   *)
167  group "vector";
168  let c = const_vector [| one; two; one; two;
169                          one; two; one; two |] in
170  ignore (define_global "const_vector" c m);
171  insist ((vector_type i16_type 8) = (type_of c));
172
173  (* CHECK: const_structure{{.*.}}i16 1, i16 2, i32 3, i32 4
174   *)
175  group "structure";
176  let c = const_struct context [| one; two; three; four |] in
177  ignore (define_global "const_structure" c m);
178  insist ((struct_type context [| i16_type; i16_type; i32_type; i32_type |])
179        = (type_of c));
180
181  (* CHECK: const_null{{.*}}zeroinit
182   *)
183  group "null";
184  let c = const_null (packed_struct_type context [| i1_type; i8_type; i64_type;
185                                                    double_type |]) in
186  ignore (define_global "const_null" c m);
187  
188  (* CHECK: const_all_ones{{.*}}-1
189   *)
190  group "all ones";
191  let c = const_all_ones i64_type in
192  ignore (define_global "const_all_ones" c m);
193
194  group "pointer null"; begin
195    (* CHECK: const_pointer_null = global i64* null
196     *)
197    let c = const_pointer_null (pointer_type i64_type) in
198    ignore (define_global "const_pointer_null" c m);
199  end;
200  
201  (* CHECK: const_undef{{.*}}undef
202   *)
203  group "undef";
204  let c = undef i1_type in
205  ignore (define_global "const_undef" c m);
206  insist (i1_type = type_of c);
207  insist (is_undef c);
208  
209  group "constant arithmetic";
210  (* CHECK: @const_neg = global i64 sub
211   * CHECK: @const_nsw_neg = global i64 sub nsw
212   * CHECK: @const_nuw_neg = global i64 sub nuw
213   * CHECK: @const_fneg = global double fsub
214   * CHECK: @const_not = global i64 xor
215   * CHECK: @const_add = global i64 add
216   * CHECK: @const_nsw_add = global i64 add nsw
217   * CHECK: @const_nuw_add = global i64 add nuw
218   * CHECK: @const_fadd = global double fadd
219   * CHECK: @const_sub = global i64 sub
220   * CHECK: @const_nsw_sub = global i64 sub nsw
221   * CHECK: @const_nuw_sub = global i64 sub nuw
222   * CHECK: @const_fsub = global double fsub
223   * CHECK: @const_mul = global i64 mul
224   * CHECK: @const_nsw_mul = global i64 mul nsw
225   * CHECK: @const_nuw_mul = global i64 mul nuw
226   * CHECK: @const_fmul = global double fmul
227   * CHECK: @const_udiv = global i64 udiv
228   * CHECK: @const_sdiv = global i64 sdiv
229   * CHECK: @const_exact_sdiv = global i64 sdiv exact
230   * CHECK: @const_fdiv = global double fdiv
231   * CHECK: @const_urem = global i64 urem
232   * CHECK: @const_srem = global i64 srem
233   * CHECK: @const_frem = global double frem
234   * CHECK: @const_and = global i64 and
235   * CHECK: @const_or = global i64 or
236   * CHECK: @const_xor = global i64 xor
237   * CHECK: @const_icmp = global i1 icmp sle
238   * CHECK: @const_fcmp = global i1 fcmp ole
239   *)
240  let void_ptr = pointer_type i8_type in
241  let five = const_int i64_type 5 in
242  let ffive = const_uitofp five double_type in
243  let foldbomb_gv = define_global "FoldBomb" (const_null i8_type) m in
244  let foldbomb = const_ptrtoint foldbomb_gv i64_type in
245  let ffoldbomb = const_uitofp foldbomb double_type in
246  ignore (define_global "const_neg" (const_neg foldbomb) m);
247  ignore (define_global "const_nsw_neg" (const_nsw_neg foldbomb) m);
248  ignore (define_global "const_nuw_neg" (const_nuw_neg foldbomb) m);
249  ignore (define_global "const_fneg" (const_fneg ffoldbomb) m);
250  ignore (define_global "const_not" (const_not foldbomb) m);
251  ignore (define_global "const_add" (const_add foldbomb five) m);
252  ignore (define_global "const_nsw_add" (const_nsw_add foldbomb five) m);
253  ignore (define_global "const_nuw_add" (const_nuw_add foldbomb five) m);
254  ignore (define_global "const_fadd" (const_fadd ffoldbomb ffive) m);
255  ignore (define_global "const_sub" (const_sub foldbomb five) m);
256  ignore (define_global "const_nsw_sub" (const_nsw_sub foldbomb five) m);
257  ignore (define_global "const_nuw_sub" (const_nuw_sub foldbomb five) m);
258  ignore (define_global "const_fsub" (const_fsub ffoldbomb ffive) m);
259  ignore (define_global "const_mul" (const_mul foldbomb five) m);
260  ignore (define_global "const_nsw_mul" (const_nsw_mul foldbomb five) m);
261  ignore (define_global "const_nuw_mul" (const_nuw_mul foldbomb five) m);
262  ignore (define_global "const_fmul" (const_fmul ffoldbomb ffive) m);
263  ignore (define_global "const_udiv" (const_udiv foldbomb five) m);
264  ignore (define_global "const_sdiv" (const_sdiv foldbomb five) m);
265  ignore (define_global "const_exact_sdiv" (const_exact_sdiv foldbomb five) m);
266  ignore (define_global "const_fdiv" (const_fdiv ffoldbomb ffive) m);
267  ignore (define_global "const_urem" (const_urem foldbomb five) m);
268  ignore (define_global "const_srem" (const_srem foldbomb five) m);
269  ignore (define_global "const_frem" (const_frem ffoldbomb ffive) m);
270  ignore (define_global "const_and" (const_and foldbomb five) m);
271  ignore (define_global "const_or" (const_or foldbomb five) m);
272  ignore (define_global "const_xor" (const_xor foldbomb five) m);
273  ignore (define_global "const_icmp" (const_icmp Icmp.Sle foldbomb five) m);
274  ignore (define_global "const_fcmp" (const_fcmp Fcmp.Ole ffoldbomb ffive) m);
275  
276  group "constant casts";
277  (* CHECK: const_trunc{{.*}}trunc
278   * CHECK: const_sext{{.*}}sext
279   * CHECK: const_zext{{.*}}zext
280   * CHECK: const_fptrunc{{.*}}fptrunc
281   * CHECK: const_fpext{{.*}}fpext
282   * CHECK: const_uitofp{{.*}}uitofp
283   * CHECK: const_sitofp{{.*}}sitofp
284   * CHECK: const_fptoui{{.*}}fptoui
285   * CHECK: const_fptosi{{.*}}fptosi
286   * CHECK: const_ptrtoint{{.*}}ptrtoint
287   * CHECK: const_inttoptr{{.*}}inttoptr
288   * CHECK: const_bitcast{{.*}}bitcast
289   * CHECK: const_intcast{{.*}}zext
290   *)
291  let i128_type = integer_type context 128 in
292  ignore (define_global "const_trunc" (const_trunc (const_add foldbomb five)
293                                               i8_type) m);
294  ignore (define_global "const_sext" (const_sext foldbomb i128_type) m);
295  ignore (define_global "const_zext" (const_zext foldbomb i128_type) m);
296  ignore (define_global "const_fptrunc" (const_fptrunc ffoldbomb float_type) m);
297  ignore (define_global "const_fpext" (const_fpext ffoldbomb fp128_type) m);
298  ignore (define_global "const_uitofp" (const_uitofp foldbomb double_type) m);
299  ignore (define_global "const_sitofp" (const_sitofp foldbomb double_type) m);
300  ignore (define_global "const_fptoui" (const_fptoui ffoldbomb i32_type) m);
301  ignore (define_global "const_fptosi" (const_fptosi ffoldbomb i32_type) m);
302  ignore (define_global "const_ptrtoint" (const_ptrtoint 
303    (const_gep (const_null (pointer_type i8_type))
304               [| const_int i32_type 1 |])
305    i32_type) m);
306  ignore (define_global "const_inttoptr" (const_inttoptr (const_add foldbomb five)
307                                                  void_ptr) m);
308  ignore (define_global "const_bitcast" (const_bitcast ffoldbomb i64_type) m);
309  ignore (define_global "const_intcast"
310          (const_intcast foldbomb i128_type ~is_signed:false) m);
311  
312  group "misc constants";
313  (* CHECK: const_size_of{{.*}}getelementptr{{.*}}null
314   * CHECK: const_gep{{.*}}getelementptr
315   * CHECK: const_select{{.*}}select
316   * CHECK: const_extractelement{{.*}}extractelement
317   * CHECK: const_insertelement{{.*}}insertelement
318   * CHECK: const_shufflevector = global <4 x i32> <i32 0, i32 1, i32 1, i32 0>
319   *)
320  ignore (define_global "const_size_of" (size_of (pointer_type i8_type)) m);
321  ignore (define_global "const_gep" (const_gep foldbomb_gv [| five |]) m);
322  ignore (define_global "const_select" (const_select
323    (const_icmp Icmp.Sle foldbomb five)
324    (const_int i8_type (-1))
325    (const_int i8_type 0)) m);
326  let zero = const_int i32_type 0 in
327  let one  = const_int i32_type 1 in
328  ignore (define_global "const_extractelement" (const_extractelement
329    (const_vector [| zero; one; zero; one |])
330    (const_trunc foldbomb i32_type)) m);
331  ignore (define_global "const_insertelement" (const_insertelement
332    (const_vector [| zero; one; zero; one |])
333    zero (const_trunc foldbomb i32_type)) m);
334  ignore (define_global "const_shufflevector" (const_shufflevector
335    (const_vector [| zero; one |])
336    (const_vector [| one; zero |])
337    (const_vector [| const_int i32_type 0; const_int i32_type 1;
338                     const_int i32_type 2; const_int i32_type 3 |])) m);
339
340  group "asm"; begin
341    let ft = function_type void_type [| i32_type; i32_type; i32_type |] in
342    ignore (const_inline_asm
343      ft
344      ""
345      "{cx},{ax},{di},~{dirflag},~{fpsr},~{flags},~{edi},~{ecx}"
346      true
347      false)
348  end;
349
350  group "recursive struct"; begin
351      let nsty = named_struct_type context "rec" in
352      let pty = pointer_type nsty in
353      struct_set_body nsty [| i32_type; pty |] false;
354      let elts = [| const_int i32_type 4; const_pointer_null pty |] in
355      let grec_init = const_named_struct nsty elts in
356      ignore (define_global "grec" grec_init m);
357      ignore (string_of_lltype nsty);
358  end
359
360
361(*===-- Global Values -----------------------------------------------------===*)
362
363let test_global_values () =
364  let (++) x f = f x; x in
365  let zero32 = const_null i32_type in
366
367  (* CHECK: GVal01
368   *)
369  group "naming";
370  let g = define_global "TEMPORARY" zero32 m in
371  insist ("TEMPORARY" = value_name g);
372  set_value_name "GVal01" g;
373  insist ("GVal01" = value_name g);
374
375  (* CHECK: GVal02{{.*}}linkonce
376   *)
377  group "linkage";
378  let g = define_global "GVal02" zero32 m ++
379          set_linkage Linkage.Link_once in
380  insist (Linkage.Link_once = linkage g);
381
382  (* CHECK: GVal03{{.*}}Hanalei
383   *)
384  group "section";
385  let g = define_global "GVal03" zero32 m ++
386          set_section "Hanalei" in
387  insist ("Hanalei" = section g);
388  
389  (* CHECK: GVal04{{.*}}hidden
390   *)
391  group "visibility";
392  let g = define_global "GVal04" zero32 m ++
393          set_visibility Visibility.Hidden in
394  insist (Visibility.Hidden = visibility g);
395  
396  (* CHECK: GVal05{{.*}}align 128
397   *)
398  group "alignment";
399  let g = define_global "GVal05" zero32 m ++
400          set_alignment 128 in
401  insist (128 = alignment g)
402
403
404(*===-- Global Variables --------------------------------------------------===*)
405
406let test_global_variables () =
407  let (++) x f = f x; x in
408  let fourty_two32 = const_int i32_type 42 in
409
410  group "declarations"; begin
411    (* CHECK: @GVar01 = external global i32
412     * CHECK: @QGVar01 = external addrspace(3) global i32
413     *)
414    insist (None == lookup_global "GVar01" m);
415    let g = declare_global i32_type "GVar01" m in
416    insist (is_declaration g);
417    insist (pointer_type float_type ==
418              type_of (declare_global float_type "GVar01" m));
419    insist (g == declare_global i32_type "GVar01" m);
420    insist (match lookup_global "GVar01" m with Some x -> x = g
421                                              | None -> false);
422
423    insist (None == lookup_global "QGVar01" m);
424    let g = declare_qualified_global i32_type "QGVar01" 3 m in
425    insist (is_declaration g);
426    insist (qualified_pointer_type float_type 3 ==
427              type_of (declare_qualified_global float_type "QGVar01" 3 m));
428    insist (g == declare_qualified_global i32_type "QGVar01" 3 m);
429    insist (match lookup_global "QGVar01" m with Some x -> x = g
430                                              | None -> false);
431  end;
432  
433  group "definitions"; begin
434    (* CHECK: @GVar02 = global i32 42
435     * CHECK: @GVar03 = global i32 42
436     * CHECK: @QGVar02 = addrspace(3) global i32 42
437     * CHECK: @QGVar03 = addrspace(3) global i32 42
438     *)
439    let g = define_global "GVar02" fourty_two32 m in
440    let g2 = declare_global i32_type "GVar03" m ++
441           set_initializer fourty_two32 in
442    insist (not (is_declaration g));
443    insist (not (is_declaration g2));
444    insist ((global_initializer g) == (global_initializer g2));
445
446    let g = define_qualified_global "QGVar02" fourty_two32 3 m in
447    let g2 = declare_qualified_global i32_type "QGVar03" 3 m ++
448           set_initializer fourty_two32 in
449    insist (not (is_declaration g));
450    insist (not (is_declaration g2));
451    insist ((global_initializer g) == (global_initializer g2));
452  end;
453
454  (* CHECK: GVar04{{.*}}thread_local
455   *)
456  group "threadlocal";
457  let g = define_global "GVar04" fourty_two32 m ++
458          set_thread_local true in
459  insist (is_thread_local g);
460
461  (* CHECK: GVar05{{.*}}thread_local(initialexec)
462   *)
463  group "threadlocal_mode";
464  let g = define_global "GVar05" fourty_two32 m ++
465          set_thread_local_mode ThreadLocalMode.InitialExec in
466  insist ((thread_local_mode g) = ThreadLocalMode.InitialExec);
467
468  (* CHECK: GVar06{{.*}}externally_initialized
469   *)
470  group "externally_initialized";
471  let g = define_global "GVar06" fourty_two32 m ++
472          set_externally_initialized true in
473  insist (is_externally_initialized g);
474
475  (* CHECK-NOWHERE-NOT: GVar07
476   *)
477  group "delete";
478  let g = define_global "GVar07" fourty_two32 m in
479  delete_global g;
480
481  (* CHECK: ConstGlobalVar{{.*}}constant
482   *)
483  group "constant";
484  let g = define_global "ConstGlobalVar" fourty_two32 m in
485  insist (not (is_global_constant g));
486  set_global_constant true g;
487  insist (is_global_constant g);
488  
489  begin group "iteration";
490    let m = create_module context "temp" in
491    
492    insist (At_end m = global_begin m);
493    insist (At_start m = global_end m);
494    
495    let g1 = declare_global i32_type "One" m in
496    let g2 = declare_global i32_type "Two" m in
497    
498    insist (Before g1 = global_begin m);
499    insist (Before g2 = global_succ g1);
500    insist (At_end m = global_succ g2);
501    
502    insist (After g2 = global_end m);
503    insist (After g1 = global_pred g2);
504    insist (At_start m = global_pred g1);
505    
506    let lf s x = s ^ "->" ^ value_name x in
507    insist ("->One->Two" = fold_left_globals lf "" m);
508    
509    let rf x s = value_name x ^ "<-" ^ s in
510    insist ("One<-Two<-" = fold_right_globals rf m "");
511    
512    dispose_module m
513  end
514
515(* String globals built below are emitted here.
516 * CHECK: build_global_string{{.*}}stringval
517 *)
518
519
520(*===-- Uses --------------------------------------------------------------===*)
521
522let test_uses () =
523  let ty = function_type i32_type [| i32_type; i32_type |] in
524  let fn = define_function "use_function" ty m in
525  let b = builder_at_end context (entry_block fn) in
526
527  let p1 = param fn 0 in
528  let p2 = param fn 1 in
529  let v1 = build_add p1 p2 "v1" b in
530  let v2 = build_add p1 v1 "v2" b in
531  let _ = build_add v1 v2 "v3" b in
532
533  let lf s u = value_name (user u) ^ "->" ^ s in
534  insist ("v2->v3->" = fold_left_uses lf "" v1);
535  let rf u s = value_name (user u) ^ "<-" ^ s in
536  insist ("v3<-v2<-" = fold_right_uses rf v1 "");
537
538  let lf s u = value_name (used_value u) ^ "->" ^ s in
539  insist ("v1->v1->" = fold_left_uses lf "" v1);
540
541  let rf u s = value_name (used_value u) ^ "<-" ^ s in
542  insist ("v1<-v1<-" = fold_right_uses rf v1 "");
543
544  ignore (build_unreachable b)
545
546
547(*===-- Users -------------------------------------------------------------===*)
548
549let test_users () =
550  let ty = function_type i32_type [| i32_type; i32_type |] in
551  let fn = define_function "user_function" ty m in
552  let b = builder_at_end context (entry_block fn) in
553
554  let p1 = param fn 0 in
555  let p2 = param fn 1 in
556  let a3 = build_alloca i32_type "user_alloca" b in
557  let p3 = build_load a3 "user_load" b in
558  let i = build_add p1 p2 "sum" b in
559
560  insist ((num_operands i) = 2);
561  insist ((operand i 0) = p1);
562  insist ((operand i 1) = p2);
563
564  set_operand i 1 p3;
565  insist ((operand i 1) != p2);
566  insist ((operand i 1) = p3);
567
568  ignore (build_unreachable b)
569
570
571(*===-- Aliases -----------------------------------------------------------===*)
572
573let test_aliases () =
574  (* CHECK: @alias = alias i32* @aliasee
575   *)
576  let v = declare_global i32_type "aliasee" m in
577  ignore (add_alias m (pointer_type i32_type) v "alias")
578
579
580(*===-- Functions ---------------------------------------------------------===*)
581
582let test_functions () =
583  let ty = function_type i32_type [| i32_type; i64_type |] in
584  let ty2 = function_type i8_type [| i8_type; i64_type |] in
585  
586  (* CHECK: declare i32 @Fn1(i32, i64)
587   *)
588  begin group "declare";
589    insist (None = lookup_function "Fn1" m);
590    let fn = declare_function "Fn1" ty m in
591    insist (pointer_type ty = type_of fn);
592    insist (is_declaration fn);
593    insist (0 = Array.length (basic_blocks fn));
594    insist (pointer_type ty2 == type_of (declare_function "Fn1" ty2 m));
595    insist (fn == declare_function "Fn1" ty m);
596    insist (None <> lookup_function "Fn1" m);
597    insist (match lookup_function "Fn1" m with Some x -> x = fn
598                                             | None -> false);
599    insist (m == global_parent fn)
600  end;
601  
602  (* CHECK-NOWHERE-NOT: Fn2
603   *)
604  group "delete";
605  let fn = declare_function "Fn2" ty m in
606  delete_function fn;
607  
608  (* CHECK: define{{.*}}Fn3
609   *)
610  group "define";
611  let fn = define_function "Fn3" ty m in
612  insist (not (is_declaration fn));
613  insist (1 = Array.length (basic_blocks fn));
614  ignore (build_unreachable (builder_at_end context (entry_block fn)));
615  
616  (* CHECK: define{{.*}}Fn4{{.*}}Param1{{.*}}Param2
617   *)
618  group "params";
619  let fn = define_function "Fn4" ty m in
620  let params = params fn in
621  insist (2 = Array.length params);
622  insist (params.(0) = param fn 0);
623  insist (params.(1) = param fn 1);
624  insist (i32_type = type_of params.(0));
625  insist (i64_type = type_of params.(1));
626  set_value_name "Param1" params.(0);
627  set_value_name "Param2" params.(1);
628  ignore (build_unreachable (builder_at_end context (entry_block fn)));
629  
630  (* CHECK: fastcc{{.*}}Fn5
631   *)
632  group "callconv";
633  let fn = define_function "Fn5" ty m in
634  insist (CallConv.c = function_call_conv fn);
635  set_function_call_conv CallConv.fast fn;
636  insist (CallConv.fast = function_call_conv fn);
637  ignore (build_unreachable (builder_at_end context (entry_block fn)));
638  
639  begin group "gc";
640    (* CHECK: Fn6{{.*}}gc{{.*}}shadowstack
641     *)
642    let fn = define_function "Fn6" ty m in
643    insist (None = gc fn);
644    set_gc (Some "ocaml") fn;
645    insist (Some "ocaml" = gc fn);
646    set_gc None fn;
647    insist (None = gc fn);
648    set_gc (Some "shadowstack") fn;
649    ignore (build_unreachable (builder_at_end context (entry_block fn)));
650  end;
651  
652  begin group "iteration";
653    let m = create_module context "temp" in
654    
655    insist (At_end m = function_begin m);
656    insist (At_start m = function_end m);
657    
658    let f1 = define_function "One" ty m in
659    let f2 = define_function "Two" ty m in
660    
661    insist (Before f1 = function_begin m);
662    insist (Before f2 = function_succ f1);
663    insist (At_end m = function_succ f2);
664    
665    insist (After f2 = function_end m);
666    insist (After f1 = function_pred f2);
667    insist (At_start m = function_pred f1);
668    
669    let lf s x = s ^ "->" ^ value_name x in
670    insist ("->One->Two" = fold_left_functions lf "" m);
671    
672    let rf x s = value_name x ^ "<-" ^ s in
673    insist ("One<-Two<-" = fold_right_functions rf m "");
674    
675    dispose_module m
676  end
677
678
679(*===-- Params ------------------------------------------------------------===*)
680
681let test_params () =
682  begin group "iteration";
683    let m = create_module context "temp" in
684    
685    let vf = define_function "void" (function_type void_type [| |]) m in
686    
687    insist (At_end vf = param_begin vf);
688    insist (At_start vf = param_end vf);
689    
690    let ty = function_type void_type [| i32_type; i32_type |] in
691    let f = define_function "f" ty m in
692    let p1 = param f 0 in
693    let p2 = param f 1 in
694    set_value_name "One" p1;
695    set_value_name "Two" p2;
696    add_param_attr p1 Attribute.Sext;
697    add_param_attr p2 Attribute.Noalias;
698    remove_param_attr p2 Attribute.Noalias;
699    add_function_attr f Attribute.Nounwind;
700    add_function_attr f Attribute.Noreturn;
701    remove_function_attr f Attribute.Noreturn;
702
703    insist (Before p1 = param_begin f);
704    insist (Before p2 = param_succ p1);
705    insist (At_end f = param_succ p2);
706    
707    insist (After p2 = param_end f);
708    insist (After p1 = param_pred p2);
709    insist (At_start f = param_pred p1);
710    
711    let lf s x = s ^ "->" ^ value_name x in
712    insist ("->One->Two" = fold_left_params lf "" f);
713    
714    let rf x s = value_name x ^ "<-" ^ s in
715    insist ("One<-Two<-" = fold_right_params rf f "");
716    
717    dispose_module m
718  end
719
720
721(*===-- Basic Blocks ------------------------------------------------------===*)
722
723let test_basic_blocks () =
724  let ty = function_type void_type [| |] in
725  
726  (* CHECK: Bb1
727   *)
728  group "entry";
729  let fn = declare_function "X" ty m in
730  let bb = append_block context "Bb1" fn in
731  insist (bb = entry_block fn);
732  ignore (build_unreachable (builder_at_end context bb));
733  
734  (* CHECK-NOWHERE-NOT: Bb2
735   *)
736  group "delete";
737  let fn = declare_function "X2" ty m in
738  let bb = append_block context "Bb2" fn in
739  delete_block bb;
740  
741  group "insert";
742  let fn = declare_function "X3" ty m in
743  let bbb = append_block context "b" fn in
744  let bba = insert_block context "a" bbb in
745  insist ([| bba; bbb |] = basic_blocks fn);
746  ignore (build_unreachable (builder_at_end context bba));
747  ignore (build_unreachable (builder_at_end context bbb));
748  
749  (* CHECK: Bb3
750   *)
751  group "name/value";
752  let fn = define_function "X4" ty m in
753  let bb = entry_block fn in
754  ignore (build_unreachable (builder_at_end context bb));
755  let bbv = value_of_block bb in
756  set_value_name "Bb3" bbv;
757  insist ("Bb3" = value_name bbv);
758  
759  group "casts";
760  let fn = define_function "X5" ty m in
761  let bb = entry_block fn in
762  ignore (build_unreachable (builder_at_end context bb));
763  insist (bb = block_of_value (value_of_block bb));
764  insist (value_is_block (value_of_block bb));
765  insist (not (value_is_block (const_null i32_type)));
766  
767  begin group "iteration";
768    let m = create_module context "temp" in
769    let f = declare_function "Temp" (function_type i32_type [| |]) m in
770    
771    insist (At_end f = block_begin f);
772    insist (At_start f = block_end f);
773    
774    let b1 = append_block context "One" f in
775    let b2 = append_block context "Two" f in
776    
777    insist (Before b1 = block_begin f);
778    insist (Before b2 = block_succ b1);
779    insist (At_end f = block_succ b2);
780    
781    insist (After b2 = block_end f);
782    insist (After b1 = block_pred b2);
783    insist (At_start f = block_pred b1);
784    
785    let lf s x = s ^ "->" ^ value_name (value_of_block x) in
786    insist ("->One->Two" = fold_left_blocks lf "" f);
787    
788    let rf x s = value_name (value_of_block x) ^ "<-" ^ s in
789    insist ("One<-Two<-" = fold_right_blocks rf f "");
790    
791    dispose_module m
792  end
793
794
795(*===-- Instructions ------------------------------------------------------===*)
796
797let test_instructions () =
798  begin group "iteration";
799    let m = create_module context "temp" in
800    let fty = function_type void_type [| i32_type; i32_type |] in
801    let f = define_function "f" fty m in
802    let bb = entry_block f in
803    let b = builder_at context (At_end bb) in
804    
805    insist (At_end bb = instr_begin bb);
806    insist (At_start bb = instr_end bb);
807    
808    let i1 = build_add (param f 0) (param f 1) "One" b in
809    let i2 = build_sub (param f 0) (param f 1) "Two" b in
810    
811    insist (Before i1 = instr_begin bb);
812    insist (Before i2 = instr_succ i1);
813    insist (At_end bb = instr_succ i2);
814    
815    insist (After i2 = instr_end bb);
816    insist (After i1 = instr_pred i2);
817    insist (At_start bb = instr_pred i1);
818    
819    let lf s x = s ^ "->" ^ value_name x in
820    insist ("->One->Two" = fold_left_instrs lf "" bb);
821    
822    let rf x s = value_name x ^ "<-" ^ s in
823    insist ("One<-Two<-" = fold_right_instrs rf bb "");
824    
825    dispose_module m
826  end
827
828
829(*===-- Builder -----------------------------------------------------------===*)
830
831let test_builder () =
832  let (++) x f = f x; x in
833  
834  begin group "parent";
835    insist (try
836              ignore (insertion_block (builder context));
837              false
838            with Not_found ->
839              true);
840    
841    let fty = function_type void_type [| i32_type |] in
842    let fn = define_function "BuilderParent" fty m in
843    let bb = entry_block fn in
844    let b = builder_at_end context bb in
845    let p = param fn 0 in
846    let sum = build_add p p "sum" b in
847    ignore (build_ret_void b);
848    
849    insist (fn = block_parent bb);
850    insist (fn = param_parent p);
851    insist (bb = instr_parent sum);
852    insist (bb = insertion_block b)
853  end;
854  
855  group "ret void";
856  begin
857    (* CHECK: ret void
858     *)
859    let fty = function_type void_type [| |] in
860    let fn = declare_function "X6" fty m in
861    let b = builder_at_end context (append_block context "Bb01" fn) in
862    ignore (build_ret_void b)
863  end;
864
865  group "ret aggregate";
866  begin
867      (* CHECK: ret { i8, i64 } { i8 4, i64 5 }
868       *)
869      let sty = struct_type context [| i8_type; i64_type |] in
870      let fty = function_type sty [| |] in
871      let fn = declare_function "XA6" fty m in
872      let b = builder_at_end context (append_block context "Bb01" fn) in
873      let agg = [| const_int i8_type 4; const_int i64_type 5 |] in
874      ignore (build_aggregate_ret agg b)
875  end;
876  
877  (* The rest of the tests will use one big function. *)
878  let fty = function_type i32_type [| i32_type; i32_type |] in
879  let fn = define_function "X7" fty m in
880  let atentry = builder_at_end context (entry_block fn) in
881  let p1 = param fn 0 ++ set_value_name "P1" in
882  let p2 = param fn 1 ++ set_value_name "P2" in
883  let f1 = build_uitofp p1 float_type "F1" atentry in
884  let f2 = build_uitofp p2 float_type "F2" atentry in
885  
886  let bb00 = append_block context "Bb00" fn in
887  ignore (build_unreachable (builder_at_end context bb00));
888
889  group "function attribute";
890  begin
891      ignore (add_function_attr fn Attribute.UWTable);
892      (* CHECK: X7{{.*}}#0
893       * #0 is uwtable, defined at EOF.
894       *)
895      insist ([Attribute.UWTable] = function_attr fn);
896  end;
897
898  group "casts"; begin
899    let void_ptr = pointer_type i8_type in
900
901    (* CHECK-DAG: %build_trunc = trunc i32 %P1 to i8
902     * CHECK-DAG: %build_trunc2 = trunc i32 %P1 to i8
903     * CHECK-DAG: %build_trunc3 = trunc i32 %P1 to i8
904     * CHECK-DAG: %build_zext = zext i8 %build_trunc to i32
905     * CHECK-DAG: %build_zext2 = zext i8 %build_trunc to i32
906     * CHECK-DAG: %build_sext = sext i32 %build_zext to i64
907     * CHECK-DAG: %build_sext2 = sext i32 %build_zext to i64
908     * CHECK-DAG: %build_sext3 = sext i32 %build_zext to i64
909     * CHECK-DAG: %build_uitofp = uitofp i64 %build_sext to float
910     * CHECK-DAG: %build_sitofp = sitofp i32 %build_zext to double
911     * CHECK-DAG: %build_fptoui = fptoui float %build_uitofp to i32
912     * CHECK-DAG: %build_fptosi = fptosi double %build_sitofp to i64
913     * CHECK-DAG: %build_fptrunc = fptrunc double %build_sitofp to float
914     * CHECK-DAG: %build_fptrunc2 = fptrunc double %build_sitofp to float
915     * CHECK-DAG: %build_fpext = fpext float %build_fptrunc to double
916     * CHECK-DAG: %build_fpext2 = fpext float %build_fptrunc to double
917     * CHECK-DAG: %build_inttoptr = inttoptr i32 %P1 to i8*
918     * CHECK-DAG: %build_ptrtoint = ptrtoint i8* %build_inttoptr to i64
919     * CHECK-DAG: %build_ptrtoint2 = ptrtoint i8* %build_inttoptr to i64
920     * CHECK-DAG: %build_bitcast = bitcast i64 %build_ptrtoint to double
921     * CHECK-DAG: %build_bitcast2 = bitcast i64 %build_ptrtoint to double
922     * CHECK-DAG: %build_bitcast3 = bitcast i64 %build_ptrtoint to double
923     * CHECK-DAG: %build_bitcast4 = bitcast i64 %build_ptrtoint to double
924     * CHECK-DAG: %build_pointercast = bitcast i8* %build_inttoptr to i16*
925     *)
926    let inst28 = build_trunc p1 i8_type "build_trunc" atentry in
927    let inst29 = build_zext inst28 i32_type "build_zext" atentry in
928    let inst30 = build_sext inst29 i64_type "build_sext" atentry in
929    let inst31 = build_uitofp inst30 float_type "build_uitofp" atentry in
930    let inst32 = build_sitofp inst29 double_type "build_sitofp" atentry in
931    ignore(build_fptoui inst31 i32_type "build_fptoui" atentry);
932    ignore(build_fptosi inst32 i64_type "build_fptosi" atentry);
933    let inst35 = build_fptrunc inst32 float_type "build_fptrunc" atentry in
934    ignore(build_fpext inst35 double_type "build_fpext" atentry);
935    let inst37 = build_inttoptr p1 void_ptr "build_inttoptr" atentry in
936    let inst38 = build_ptrtoint inst37 i64_type "build_ptrtoint" atentry in
937    ignore(build_bitcast inst38 double_type "build_bitcast" atentry);
938    ignore(build_zext_or_bitcast inst38 double_type "build_bitcast2" atentry);
939    ignore(build_sext_or_bitcast inst38 double_type "build_bitcast3" atentry);
940    ignore(build_trunc_or_bitcast inst38 double_type "build_bitcast4" atentry);
941    ignore(build_pointercast inst37 (pointer_type i16_type) "build_pointercast" atentry);
942
943    ignore(build_zext_or_bitcast inst28 i32_type "build_zext2" atentry);
944    ignore(build_sext_or_bitcast inst29 i64_type "build_sext2" atentry);
945    ignore(build_trunc_or_bitcast p1 i8_type "build_trunc2" atentry);
946    ignore(build_pointercast inst37 i64_type "build_ptrtoint2" atentry);
947    ignore(build_intcast inst29 i64_type "build_sext3" atentry);
948    ignore(build_intcast p1 i8_type "build_trunc3" atentry);
949    ignore(build_fpcast inst35 double_type "build_fpext2" atentry);
950    ignore(build_fpcast inst32 float_type "build_fptrunc2" atentry);
951  end;
952
953  group "comparisons"; begin
954    (* CHECK: %build_icmp_ne = icmp ne i32 %P1, %P2
955     * CHECK: %build_icmp_sle = icmp sle i32 %P2, %P1
956     * CHECK: %build_fcmp_false = fcmp false float %F1, %F2
957     * CHECK: %build_fcmp_true = fcmp true float %F2, %F1
958     * CHECK: %build_is_null{{.*}}= icmp eq{{.*}}%X0,{{.*}}null
959     * CHECK: %build_is_not_null = icmp ne i8* %X1, null
960     * CHECK: %build_ptrdiff
961     *)
962    ignore (build_icmp Icmp.Ne    p1 p2 "build_icmp_ne" atentry);
963    ignore (build_icmp Icmp.Sle   p2 p1 "build_icmp_sle" atentry);
964    ignore (build_fcmp Fcmp.False f1 f2 "build_fcmp_false" atentry);
965    ignore (build_fcmp Fcmp.True  f2 f1 "build_fcmp_true" atentry);
966    let g0 = declare_global (pointer_type i8_type) "g0" m in
967    let g1 = declare_global (pointer_type i8_type) "g1" m in
968    let p0 = build_load g0 "X0" atentry in
969    let p1 = build_load g1 "X1" atentry in
970    ignore (build_is_null p0 "build_is_null" atentry);
971    ignore (build_is_not_null p1 "build_is_not_null" atentry);
972    ignore (build_ptrdiff p1 p0 "build_ptrdiff" atentry);
973  end;
974
975  group "miscellaneous"; begin
976    (* CHECK: %build_call = tail call cc63 i32 @{{.*}}(i32 signext %P2, i32 %P1)
977     * CHECK: %build_select = select i1 %build_icmp, i32 %P1, i32 %P2
978     * CHECK: %build_va_arg = va_arg i8** null, i32
979     * CHECK: %build_extractelement = extractelement <4 x i32> %Vec1, i32 %P2
980     * CHECK: %build_insertelement = insertelement <4 x i32> %Vec1, i32 %P1, i32 %P2
981     * CHECK: %build_shufflevector = shufflevector <4 x i32> %Vec1, <4 x i32> %Vec2, <4 x i32> <i32 1, i32 1, i32 0, i32 0>
982     * CHECK: %build_insertvalue0 = insertvalue{{.*}}%bl, i32 1, 0
983     * CHECK: %build_extractvalue = extractvalue{{.*}}%build_insertvalue1, 1
984     *)
985    let ci = build_call fn [| p2; p1 |] "build_call" atentry in
986    insist (CallConv.c = instruction_call_conv ci);
987    set_instruction_call_conv 63 ci;
988    insist (63 = instruction_call_conv ci);
989    insist (not (is_tail_call ci));
990    set_tail_call true ci;
991    insist (is_tail_call ci);
992    add_instruction_param_attr ci 1 Attribute.Sext;
993    add_instruction_param_attr ci 2 Attribute.Noalias;
994    remove_instruction_param_attr ci 2 Attribute.Noalias;
995
996    let inst46 = build_icmp Icmp.Eq p1 p2 "build_icmp" atentry in
997    ignore (build_select inst46 p1 p2 "build_select" atentry);
998    ignore (build_va_arg
999      (const_null (pointer_type (pointer_type i8_type)))
1000      i32_type "build_va_arg" atentry);
1001
1002    (* Set up some vector vregs. *)
1003    let one  = const_int i32_type 1 in
1004    let zero = const_int i32_type 0 in
1005    let t1 = const_vector [| one; zero; one; zero |] in
1006    let t2 = const_vector [| zero; one; zero; one |] in
1007    let t3 = const_vector [| one; one; zero; zero |] in
1008    let vec1 = build_insertelement t1 p1 p2 "Vec1" atentry in
1009    let vec2 = build_insertelement t2 p1 p2 "Vec2" atentry in
1010    let sty = struct_type context [| i32_type; i8_type |] in
1011
1012    ignore (build_extractelement vec1 p2 "build_extractelement" atentry);
1013    ignore (build_insertelement vec1 p1 p2 "build_insertelement" atentry);
1014    ignore (build_shufflevector vec1 vec2 t3 "build_shufflevector" atentry);
1015
1016    let p = build_alloca sty "ba" atentry in
1017    let agg = build_load p "bl" atentry in
1018    let agg0 = build_insertvalue agg (const_int i32_type 1) 0
1019                 "build_insertvalue0" atentry in
1020    let agg1 = build_insertvalue agg0 (const_int i8_type 2) 1
1021                 "build_insertvalue1" atentry in
1022    ignore (build_extractvalue agg1 1 "build_extractvalue" atentry)
1023  end;
1024
1025  group "metadata"; begin
1026    (* CHECK: %metadata = add i32 %P1, %P2, !test !0
1027     * !0 is metadata emitted at EOF.
1028     *)
1029    let i = build_add p1 p2 "metadata" atentry in
1030    insist ((has_metadata i) = false);
1031
1032    let m1 = const_int i32_type 1 in
1033    let m2 = mdstring context "metadata test" in
1034    let md = mdnode context [| m1; m2 |] in
1035
1036    let kind = mdkind_id context "test" in
1037    set_metadata i kind md;
1038
1039    insist ((has_metadata i) = true);
1040    insist ((metadata i kind) = Some md);
1041
1042    clear_metadata i kind;
1043
1044    insist ((has_metadata i) = false);
1045    insist ((metadata i kind) = None);
1046
1047    set_metadata i kind md
1048  end;
1049
1050  group "named metadata"; begin
1051    (* !md is emitted at EOF. *)
1052    let n1 = const_int i32_type 1 in
1053    let n2 = mdstring context "metadata test" in
1054    let md = mdnode context [| n1; n2 |] in
1055    add_named_metadata_operand m "md" md;
1056
1057    insist ((get_named_metadata m "md") = [| md |])
1058  end;
1059
1060  group "dbg"; begin
1061    (* CHECK: %dbg = add i32 %P1, %P2, !dbg !1
1062     * !1 is metadata emitted at EOF.
1063     *)
1064    insist ((current_debug_location atentry) = None);
1065
1066    let m_line = const_int i32_type 2 in
1067    let m_col = const_int i32_type 3 in
1068    let m_scope = mdnode context [| |] in
1069    let m_inlined = mdnode context [| |] in
1070    let md = mdnode context [| m_line; m_col; m_scope; m_inlined |] in
1071    set_current_debug_location atentry md;
1072
1073    insist ((current_debug_location atentry) = Some md);
1074
1075    let i = build_add p1 p2 "dbg" atentry in
1076    insist ((has_metadata i) = true);
1077
1078    clear_current_debug_location atentry
1079  end;
1080
1081  group "ret"; begin
1082    (* CHECK: ret{{.*}}P1
1083     *)
1084    let ret = build_ret p1 atentry in
1085    position_before ret atentry
1086  end;
1087
1088  (* see test/Feature/exception.ll *)
1089  let bblpad = append_block context "Bblpad" fn in
1090  let rt = struct_type context [| pointer_type i8_type; i32_type |] in
1091  let ft = var_arg_function_type i32_type  [||] in
1092  let personality = declare_function "__gxx_personality_v0" ft m in
1093  let ztic = declare_global (pointer_type i8_type) "_ZTIc" m in
1094  let ztid = declare_global (pointer_type i8_type) "_ZTId" m in
1095  let ztipkc = declare_global (pointer_type i8_type) "_ZTIPKc" m in
1096  begin
1097      set_global_constant true ztic;
1098      set_global_constant true ztid;
1099      set_global_constant true ztipkc;
1100      let lp = build_landingpad rt personality 0 "lpad"
1101       (builder_at_end context bblpad) in begin
1102           set_cleanup lp true;
1103           add_clause lp ztic;
1104           insist((pointer_type (pointer_type i8_type)) = type_of ztid);
1105           let ety = pointer_type (pointer_type i8_type) in
1106           add_clause lp (const_array ety [| ztipkc; ztid |]);
1107           ignore (build_resume lp (builder_at_end context bblpad));
1108      end;
1109      (* CHECK: landingpad{{.*}}personality{{.*}}__gxx_personality_v0
1110       * CHECK: cleanup
1111       * CHECK: catch{{.*}}i8**{{.*}}@_ZTIc
1112       * CHECK: filter{{.*}}@_ZTIPKc{{.*}}@_ZTId
1113       * CHECK: resume
1114       * *)
1115  end;
1116
1117  group "br"; begin
1118    (* CHECK: br{{.*}}Bb02
1119     *)
1120    let bb02 = append_block context "Bb02" fn in
1121    let b = builder_at_end context bb02 in
1122    ignore (build_br bb02 b)
1123  end;
1124  
1125  group "cond_br"; begin
1126    (* CHECK: br{{.*}}build_br{{.*}}Bb03{{.*}}Bb00
1127     *)
1128    let bb03 = append_block context "Bb03" fn in
1129    let b = builder_at_end context bb03 in
1130    let cond = build_trunc p1 i1_type "build_br" b in
1131    ignore (build_cond_br cond bb03 bb00 b)
1132  end;
1133  
1134  group "switch"; begin
1135    (* CHECK: switch{{.*}}P1{{.*}}SwiBlock3
1136     * CHECK: 2,{{.*}}SwiBlock2
1137     *)
1138    let bb1 = append_block context "SwiBlock1" fn in
1139    let bb2 = append_block context "SwiBlock2" fn in
1140    ignore (build_unreachable (builder_at_end context bb2));
1141    let bb3 = append_block context "SwiBlock3" fn in
1142    ignore (build_unreachable (builder_at_end context bb3));
1143    let si = build_switch p1 bb3 1 (builder_at_end context bb1) in begin
1144        ignore (add_case si (const_int i32_type 2) bb2);
1145        insist (switch_default_dest si = bb3);
1146    end;
1147  end;
1148
1149  group "malloc/free"; begin
1150      (* CHECK: call{{.*}}@malloc(i32 ptrtoint
1151       * CHECK: call{{.*}}@free(i8*
1152       * CHECK: call{{.*}}@malloc(i32 %
1153       *)
1154      let bb1 = append_block context "MallocBlock1" fn in
1155      let m1 = (build_malloc (pointer_type i32_type) "m1"
1156      (builder_at_end context bb1)) in
1157      ignore (build_free m1 (builder_at_end context bb1));
1158      ignore (build_array_malloc i32_type p1 "m2" (builder_at_end context bb1));
1159      ignore (build_unreachable (builder_at_end context bb1));
1160  end;
1161
1162  group "indirectbr"; begin
1163    (* CHECK: indirectbr i8* blockaddress(@X7, %IBRBlock2), [label %IBRBlock2, label %IBRBlock3]
1164     *)
1165    let bb1 = append_block context "IBRBlock1" fn in
1166
1167    let bb2 = append_block context "IBRBlock2" fn in
1168    ignore (build_unreachable (builder_at_end context bb2));
1169
1170    let bb3 = append_block context "IBRBlock3" fn in
1171    ignore (build_unreachable (builder_at_end context bb3));
1172
1173    let addr = block_address fn bb2 in
1174    let ibr = build_indirect_br addr 2 (builder_at_end context bb1) in
1175    ignore (add_destination ibr bb2);
1176    ignore (add_destination ibr bb3)
1177  end;
1178  
1179  group "invoke"; begin
1180    (* CHECK: build_invoke{{.*}}invoke{{.*}}P1{{.*}}P2
1181     * CHECK: to{{.*}}Bb04{{.*}}unwind{{.*}}Bblpad
1182     *)
1183    let bb04 = append_block context "Bb04" fn in
1184    let b = builder_at_end context bb04 in
1185    ignore (build_invoke fn [| p1; p2 |] bb04 bblpad "build_invoke" b)
1186  end;
1187  
1188  group "unreachable"; begin
1189    (* CHECK: unreachable
1190     *)
1191    let bb06 = append_block context "Bb06" fn in
1192    let b = builder_at_end context bb06 in
1193    ignore (build_unreachable b)
1194  end;
1195  
1196  group "arithmetic"; begin
1197    let bb07 = append_block context "Bb07" fn in
1198    let b = builder_at_end context bb07 in
1199    
1200    (* CHECK: %build_add = add i32 %P1, %P2
1201     * CHECK: %build_nsw_add = add nsw i32 %P1, %P2
1202     * CHECK: %build_nuw_add = add nuw i32 %P1, %P2
1203     * CHECK: %build_fadd = fadd float %F1, %F2
1204     * CHECK: %build_sub = sub i32 %P1, %P2
1205     * CHECK: %build_nsw_sub = sub nsw i32 %P1, %P2
1206     * CHECK: %build_nuw_sub = sub nuw i32 %P1, %P2
1207     * CHECK: %build_fsub = fsub float %F1, %F2
1208     * CHECK: %build_mul = mul i32 %P1, %P2
1209     * CHECK: %build_nsw_mul = mul nsw i32 %P1, %P2
1210     * CHECK: %build_nuw_mul = mul nuw i32 %P1, %P2
1211     * CHECK: %build_fmul = fmul float %F1, %F2
1212     * CHECK: %build_udiv = udiv i32 %P1, %P2
1213     * CHECK: %build_sdiv = sdiv i32 %P1, %P2
1214     * CHECK: %build_exact_sdiv = sdiv exact i32 %P1, %P2
1215     * CHECK: %build_fdiv = fdiv float %F1, %F2
1216     * CHECK: %build_urem = urem i32 %P1, %P2
1217     * CHECK: %build_srem = srem i32 %P1, %P2
1218     * CHECK: %build_frem = frem float %F1, %F2
1219     * CHECK: %build_shl = shl i32 %P1, %P2
1220     * CHECK: %build_lshl = lshr i32 %P1, %P2
1221     * CHECK: %build_ashl = ashr i32 %P1, %P2
1222     * CHECK: %build_and = and i32 %P1, %P2
1223     * CHECK: %build_or = or i32 %P1, %P2
1224     * CHECK: %build_xor = xor i32 %P1, %P2
1225     * CHECK: %build_neg = sub i32 0, %P1
1226     * CHECK: %build_nsw_neg = sub nsw i32 0, %P1
1227     * CHECK: %build_nuw_neg = sub nuw i32 0, %P1
1228     * CHECK: %build_fneg = fsub float {{.*}}0{{.*}}, %F1
1229     * CHECK: %build_not = xor i32 %P1, -1
1230     *)
1231    ignore (build_add p1 p2 "build_add" b);
1232    ignore (build_nsw_add p1 p2 "build_nsw_add" b);
1233    ignore (build_nuw_add p1 p2 "build_nuw_add" b);
1234    ignore (build_fadd f1 f2 "build_fadd" b);
1235    ignore (build_sub p1 p2 "build_sub" b);
1236    ignore (build_nsw_sub p1 p2 "build_nsw_sub" b);
1237    ignore (build_nuw_sub p1 p2 "build_nuw_sub" b);
1238    ignore (build_fsub f1 f2 "build_fsub" b);
1239    ignore (build_mul p1 p2 "build_mul" b);
1240    ignore (build_nsw_mul p1 p2 "build_nsw_mul" b);
1241    ignore (build_nuw_mul p1 p2 "build_nuw_mul" b);
1242    ignore (build_fmul f1 f2 "build_fmul" b);
1243    ignore (build_udiv p1 p2 "build_udiv" b);
1244    ignore (build_sdiv p1 p2 "build_sdiv" b);
1245    ignore (build_exact_sdiv p1 p2 "build_exact_sdiv" b);
1246    ignore (build_fdiv f1 f2 "build_fdiv" b);
1247    ignore (build_urem p1 p2 "build_urem" b);
1248    ignore (build_srem p1 p2 "build_srem" b);
1249    ignore (build_frem f1 f2 "build_frem" b);
1250    ignore (build_shl p1 p2 "build_shl" b);
1251    ignore (build_lshr p1 p2 "build_lshl" b);
1252    ignore (build_ashr p1 p2 "build_ashl" b);
1253    ignore (build_and p1 p2 "build_and" b);
1254    ignore (build_or p1 p2 "build_or" b);
1255    ignore (build_xor p1 p2 "build_xor" b);
1256    ignore (build_neg p1 "build_neg" b);
1257    ignore (build_nsw_neg p1 "build_nsw_neg" b);
1258    ignore (build_nuw_neg p1 "build_nuw_neg" b);
1259    ignore (build_fneg f1 "build_fneg" b);
1260    ignore (build_not p1 "build_not" b);
1261    ignore (build_unreachable b)
1262  end;
1263  
1264  group "memory"; begin
1265    let bb08 = append_block context "Bb08" fn in
1266    let b = builder_at_end context bb08 in
1267
1268    (* CHECK: %build_alloca = alloca i32
1269     * CHECK: %build_array_alloca = alloca i32, i32 %P2
1270     * CHECK: %build_load = load volatile i32* %build_array_alloca, align 4
1271     * CHECK: store volatile i32 %P2, i32* %build_alloca, align 4
1272     * CHECK: %build_gep = getelementptr i32* %build_array_alloca, i32 %P2
1273     * CHECK: %build_in_bounds_gep = getelementptr inbounds i32* %build_array_alloca, i32 %P2
1274     * CHECK: %build_struct_gep = getelementptr inbounds{{.*}}%build_alloca2, i32 0, i32 1
1275     * CHECK: %build_atomicrmw = atomicrmw xchg i8* %p, i8 42 seq_cst
1276     *)
1277    let alloca = build_alloca i32_type "build_alloca" b in
1278    let array_alloca = build_array_alloca i32_type p2 "build_array_alloca" b in
1279
1280    let load = build_load array_alloca "build_load" b in
1281    ignore(set_alignment 4 load);
1282    ignore(set_volatile true load);
1283    insist(true = is_volatile load);
1284    insist(4 = alignment load);
1285
1286    let store = build_store p2 alloca b in
1287    ignore(set_volatile true store);
1288    ignore(set_alignment 4 store);
1289    insist(true = is_volatile store);
1290    insist(4 = alignment store);
1291    ignore(build_gep array_alloca [| p2 |] "build_gep" b);
1292    ignore(build_in_bounds_gep array_alloca [| p2 |] "build_in_bounds_gep" b);
1293
1294    let sty = struct_type context [| i32_type; i8_type |] in
1295    let alloca2 = build_alloca sty "build_alloca2" b in
1296    ignore(build_struct_gep alloca2 1 "build_struct_gep" b);
1297
1298    let p = build_alloca i8_type "p" b in
1299    ignore(build_atomicrmw AtomicRMWBinOp.Xchg p (const_int i8_type 42)
1300              AtomicOrdering.SequentiallyConsistent false "build_atomicrmw"
1301              b);
1302
1303    ignore(build_unreachable b)
1304  end;
1305
1306  group "string"; begin
1307    let bb09 = append_block context "Bb09" fn in
1308    let b = builder_at_end context bb09 in
1309    let p = build_alloca (pointer_type i8_type) "p" b in
1310    (* build_global_string is emitted above.
1311     * CHECK: store{{.*}}build_global_string1{{.*}}p
1312     * *)
1313    ignore (build_global_string "stringval" "build_global_string" b);
1314    let g = build_global_stringptr "stringval" "build_global_string1" b in
1315    ignore (build_store g p b);
1316    ignore(build_unreachable b);
1317  end;
1318
1319  group "phi"; begin
1320    (* CHECK: PhiNode{{.*}}P1{{.*}}PhiBlock1{{.*}}P2{{.*}}PhiBlock2
1321     *)
1322    let b1 = append_block context "PhiBlock1" fn in
1323    let b2 = append_block context "PhiBlock2" fn in
1324    
1325    let jb = append_block context "PhiJoinBlock" fn in
1326    ignore (build_br jb (builder_at_end context b1));
1327    ignore (build_br jb (builder_at_end context b2));
1328    let at_jb = builder_at_end context jb in
1329    
1330    let phi = build_phi [(p1, b1)] "PhiNode" at_jb in
1331    insist ([(p1, b1)] = incoming phi);
1332    
1333    add_incoming (p2, b2) phi;
1334    insist ([(p1, b1); (p2, b2)] = incoming phi);
1335    
1336    ignore (build_unreachable at_jb);
1337  end
1338
1339(* End-of-file checks for things like metdata and attributes.
1340 * CHECK: attributes #0 = {{.*}}uwtable{{.*}}
1341 * CHECK: !md = !{!0}
1342 * CHECK: !0 = metadata !{i32 1, metadata !"metadata test"}
1343 * CHECK: !1 = metadata !{i32 2, i32 3, metadata !2, metadata !2}
1344 *)
1345
1346(*===-- Pass Managers -----------------------------------------------------===*)
1347
1348let test_pass_manager () =
1349  let (++) x f = ignore (f x); x in
1350
1351  begin group "module pass manager";
1352    ignore (PassManager.create ()
1353             ++ PassManager.run_module m
1354             ++ PassManager.dispose)
1355  end;
1356  
1357  begin group "function pass manager";
1358    let fty = function_type void_type [| |] in
1359    let fn = define_function "FunctionPassManager" fty m in
1360    ignore (build_ret_void (builder_at_end context (entry_block fn)));
1361    
1362    ignore (PassManager.create_function m
1363             ++ PassManager.initialize
1364             ++ PassManager.run_function fn
1365             ++ PassManager.finalize
1366             ++ PassManager.dispose)
1367  end
1368
1369
1370(*===-- Memory Buffer -----------------------------------------------------===*)
1371
1372let test_memory_buffer () =
1373  group "memory buffer";
1374  let buf = MemoryBuffer.of_string "foobar" in
1375  insist ((MemoryBuffer.as_string buf) = "foobar")
1376
1377
1378(*===-- Writer ------------------------------------------------------------===*)
1379
1380let test_writer () =
1381  group "valid";
1382  insist (match Llvm_analysis.verify_module m with
1383          | None -> true
1384          | Some msg -> prerr_string msg; false);
1385
1386  group "writer";
1387  insist (write_bitcode_file m filename);
1388  
1389  dispose_module m
1390
1391
1392(*===-- Driver ------------------------------------------------------------===*)
1393
1394let _ =
1395  suite "target"           test_target;
1396  suite "constants"        test_constants;
1397  suite "global values"    test_global_values;
1398  suite "global variables" test_global_variables;
1399  suite "uses"             test_uses;
1400  suite "users"            test_users;
1401  suite "aliases"          test_aliases;
1402  suite "functions"        test_functions;
1403  suite "params"           test_params;
1404  suite "basic blocks"     test_basic_blocks;
1405  suite "instructions"     test_instructions;
1406  suite "builder"          test_builder;
1407  suite "pass manager"     test_pass_manager;
1408  suite "memory buffer"    test_memory_buffer;
1409  suite "writer"           test_writer; (* Keep this last; it disposes m. *)
1410  exit !exit_status
1411