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