2009-09-04 01:27:31 +02:00
|
|
|
(* RUN: %ocamlopt -warn-error A llvm.cmxa llvm_scalar_opts.cmxa llvm_target.cmxa %s -o %t
|
2008-03-16 17:32:40 +01:00
|
|
|
*)
|
|
|
|
|
2009-09-04 01:27:31 +02:00
|
|
|
(* Note: It takes several seconds for ocamlopt to link an executable with
|
2008-03-16 17:32:40 +01:00
|
|
|
libLLVMCore.a, so it's better to write a big test than a bunch of
|
|
|
|
little ones. *)
|
|
|
|
|
|
|
|
open Llvm
|
|
|
|
open Llvm_scalar_opts
|
2008-03-16 21:08:03 +01:00
|
|
|
open Llvm_target
|
2008-03-16 17:32:40 +01:00
|
|
|
|
2009-08-19 19:32:24 +02:00
|
|
|
let context = global_context ()
|
|
|
|
let void_type = Llvm.void_type context
|
2008-03-16 17:32:40 +01:00
|
|
|
|
|
|
|
(* Tiny unit test framework - really just to help find which line is busted *)
|
|
|
|
let suite name f =
|
|
|
|
prerr_endline (name ^ ":");
|
|
|
|
f ()
|
|
|
|
|
|
|
|
|
|
|
|
(*===-- Fixture -----------------------------------------------------------===*)
|
|
|
|
|
|
|
|
let filename = Sys.argv.(1)
|
2009-08-19 19:32:24 +02:00
|
|
|
let m = create_module context filename
|
2008-03-16 17:32:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
(*===-- Transforms --------------------------------------------------------===*)
|
|
|
|
|
|
|
|
let test_transforms () =
|
|
|
|
let (++) x f = ignore (f x); x in
|
|
|
|
|
|
|
|
let fty = function_type void_type [| |] in
|
|
|
|
let fn = define_function "fn" fty m in
|
2009-08-19 19:32:24 +02:00
|
|
|
ignore (build_ret_void (builder_at_end context (entry_block fn)));
|
2008-03-16 17:32:40 +01:00
|
|
|
|
2008-03-16 21:08:03 +01:00
|
|
|
let td = TargetData.create (target_triple m) in
|
|
|
|
|
2010-03-03 00:59:00 +01:00
|
|
|
ignore (PassManager.create_function m
|
2008-03-16 21:08:03 +01:00
|
|
|
++ TargetData.add td
|
2010-03-04 00:51:34 +01:00
|
|
|
++ add_constant_propagation
|
|
|
|
++ add_sccp
|
|
|
|
++ add_dead_store_elimination
|
|
|
|
++ add_aggressive_dce
|
|
|
|
++ add_scalar_repl_aggregation
|
|
|
|
++ add_ind_var_simplification
|
|
|
|
++ add_instruction_combination
|
|
|
|
++ add_licm
|
|
|
|
++ add_loop_unswitch
|
|
|
|
++ add_loop_unroll
|
|
|
|
++ add_loop_rotation
|
|
|
|
++ add_loop_index_split
|
|
|
|
++ add_memory_to_register_promotion
|
|
|
|
++ add_memory_to_register_demotion
|
2008-03-16 17:32:40 +01:00
|
|
|
++ add_reassociation
|
2010-03-04 00:51:34 +01:00
|
|
|
++ add_jump_threading
|
2008-03-16 17:32:40 +01:00
|
|
|
++ add_cfg_simplification
|
2010-03-04 00:51:34 +01:00
|
|
|
++ add_tail_call_elimination
|
|
|
|
++ add_gvn
|
|
|
|
++ add_memcpy_opt
|
|
|
|
++ add_loop_deletion
|
|
|
|
++ add_lib_call_simplification
|
2008-03-16 17:32:40 +01:00
|
|
|
++ PassManager.initialize
|
|
|
|
++ PassManager.run_function fn
|
|
|
|
++ PassManager.finalize
|
2008-03-16 21:08:03 +01:00
|
|
|
++ PassManager.dispose);
|
|
|
|
|
|
|
|
TargetData.dispose td
|
2008-03-16 17:32:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
(*===-- Driver ------------------------------------------------------------===*)
|
|
|
|
|
|
|
|
let _ =
|
|
|
|
suite "transforms" test_transforms;
|
2010-03-03 00:59:00 +01:00
|
|
|
dispose_module m
|