Remove module providers from ocaml.
[oota-llvm.git] / test / Bindings / Ocaml / scalar_opts.ml
1 (* RUN: %ocamlopt -warn-error A llvm.cmxa llvm_scalar_opts.cmxa llvm_target.cmxa %s -o %t
2  *)
3
4 (* Note: It takes several seconds for ocamlopt to link an executable with
5          libLLVMCore.a, so it's better to write a big test than a bunch of
6          little ones. *)
7
8 open Llvm
9 open Llvm_scalar_opts
10 open Llvm_target
11
12 let context = global_context ()
13 let void_type = Llvm.void_type context
14
15 (* Tiny unit test framework - really just to help find which line is busted *)
16 let suite name f =
17   prerr_endline (name ^ ":");
18   f ()
19
20
21 (*===-- Fixture -----------------------------------------------------------===*)
22
23 let filename = Sys.argv.(1)
24 let m = create_module context filename
25
26
27 (*===-- Transforms --------------------------------------------------------===*)
28
29 let test_transforms () =
30   let (++) x f = ignore (f x); x in
31
32   let fty = function_type void_type [| |] in
33   let fn = define_function "fn" fty m in
34   ignore (build_ret_void (builder_at_end context (entry_block fn)));
35   
36   let td = TargetData.create (target_triple m) in
37   
38   ignore (PassManager.create_function m
39            ++ TargetData.add td
40            ++ add_instruction_combining
41            ++ add_reassociation
42            ++ add_gvn
43            ++ add_cfg_simplification
44            ++ add_constant_propagation
45            ++ PassManager.initialize
46            ++ PassManager.run_function fn
47            ++ PassManager.finalize
48            ++ PassManager.dispose);
49   
50   TargetData.dispose td
51
52
53 (*===-- Driver ------------------------------------------------------------===*)
54
55 let _ =
56   suite "transforms" test_transforms;
57   dispose_module m