aboutsummaryrefslogtreecommitdiffstats
path: root/bindings/ocaml/transforms/vectorize/llvm_vectorize.ml
blob: 88831daf51941f20d32345bd655c6d7d48cebd20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(*===-- llvm_vectorize.ml - LLVM OCaml Interface --------------*- OCaml -*-===*
 *
 *                     The LLVM Compiler Infrastructure
 *
 * This file is distributed under the University of Illinois Open Source
 * License. See LICENSE.TXT for details.
 *
 *===----------------------------------------------------------------------===*)

external add_bb_vectorize
  : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
  = "llvm_add_bb_vectorize"
external add_loop_vectorize
  : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
  = "llvm_add_loop_vectorize"
external add_slp_vectorize
  : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
  = "llvm_add_slp_vectorize"