adb87ef1170a92ec21ced43b5a6acb920b8d435c
[oota-llvm.git] / bindings / ocaml / llvm / llvm.mli
1 (*===-- llvm/llvm.mli - LLVM OCaml Interface ------------------------------===*
2  *
3  *                     The LLVM Compiler Infrastructure
4  *
5  * This file is distributed under the University of Illinois Open Source
6  * License. See LICENSE.TXT for details.
7  *
8  *===----------------------------------------------------------------------===*)
9
10 (** Core API.
11
12     This interface provides an OCaml API for the LLVM intermediate
13     representation, the classes in the VMCore library. *)
14
15
16 (** {6 Abstract types}
17
18     These abstract types correlate directly to the LLVM VMCore classes. *)
19
20 (** The top-level container for all LLVM global data. See the
21     [llvm::LLVMContext] class. *)
22 type llcontext
23
24 (** The top-level container for all other LLVM Intermediate Representation (IR)
25     objects. See the [llvm::Module] class. *)
26 type llmodule
27
28 (** Each value in the LLVM IR has a type, an instance of [lltype]. See the
29     [llvm::Type] class. *)
30 type lltype
31
32 (** Any value in the LLVM IR. Functions, instructions, global variables,
33     constants, and much more are all [llvalues]. See the [llvm::Value] class.
34     This type covers a wide range of subclasses. *)
35 type llvalue
36
37 (** Used to store users and usees of values. See the [llvm::Use] class. *)
38 type lluse
39
40 (** A basic block in LLVM IR. See the [llvm::BasicBlock] class. *)
41 type llbasicblock
42
43 (** Used to generate instructions in the LLVM IR. See the [llvm::LLVMBuilder]
44     class. *)
45 type llbuilder
46
47 (** Used to efficiently handle large buffers of read-only binary data.
48     See the [llvm::MemoryBuffer] class. *)
49 type llmemorybuffer
50
51 (** The kind id of metadata attached to an instruction. *)
52 type llmdkind
53
54 (** The kind of an [lltype], the result of [classify_type ty]. See the
55     [llvm::Type::TypeID] enumeration. *)
56 module TypeKind : sig
57   type t =
58     Void
59   | Half
60   | Float
61   | Double
62   | X86fp80
63   | Fp128
64   | Ppc_fp128
65   | Label
66   | Integer
67   | Function
68   | Struct
69   | Array
70   | Pointer
71   | Vector
72   | Metadata
73   | X86_mmx
74 end
75
76 (** The linkage of a global value, accessed with {!linkage} and
77     {!set_linkage}. See [llvm::GlobalValue::LinkageTypes]. *)
78 module Linkage : sig
79   type t =
80     External
81   | Available_externally
82   | Link_once
83   | Link_once_odr
84   | Link_once_odr_auto_hide
85   | Weak
86   | Weak_odr
87   | Appending
88   | Internal
89   | Private
90   | Dllimport
91   | Dllexport
92   | External_weak
93   | Ghost
94   | Common
95   | Linker_private
96   | Linker_private_weak
97 end
98
99 (** The linker visibility of a global value, accessed with {!visibility} and
100     {!set_visibility}. See [llvm::GlobalValue::VisibilityTypes]. *)
101 module Visibility : sig
102   type t =
103     Default
104   | Hidden
105   | Protected
106 end
107
108 (** The following calling convention values may be accessed with
109     {!function_call_conv} and {!set_function_call_conv}. Calling
110     conventions are open-ended. *)
111 module CallConv : sig
112   val c : int             (** [c] is the C calling convention. *)
113   val fast : int          (** [fast] is the calling convention to allow LLVM
114                               maximum optimization opportunities. Use only with
115                               internal linkage. *)
116   val cold : int          (** [cold] is the calling convention for
117                               callee-save. *)
118   val x86_stdcall : int   (** [x86_stdcall] is the familiar stdcall calling
119                               convention from C. *)
120   val x86_fastcall : int  (** [x86_fastcall] is the familiar fastcall calling
121                               convention from C. *)
122 end
123
124 (** The attribute kind of a function parameter, result or the function itself.
125     See [llvm::Attribute::AttrKind]. *)
126 module Attribute : sig
127   type t =
128   | Zext
129   | Sext
130   | Noreturn
131   | Inreg
132   | Structret
133   | Nounwind
134   | Noalias
135   | Byval
136   | Nest
137   | Readnone
138   | Readonly
139   | Noinline
140   | Alwaysinline
141   | Optsize
142   | Ssp
143   | Sspreq
144   | Alignment of int
145   | Nocapture
146   | Noredzone
147   | Noimplicitfloat
148   | Naked
149   | Inlinehint
150   | Stackalignment of int
151   | ReturnsTwice
152   | UWTable
153   | NonLazyBind
154 end
155
156 (** The predicate for an integer comparison ([icmp]) instruction.
157     See the [llvm::ICmpInst::Predicate] enumeration. *)
158 module Icmp : sig
159   type t =
160   | Eq  (* Equal *)
161   | Ne  (* Not equal *)
162   | Ugt (* Unsigned greater than *)
163   | Uge (* Unsigned greater or equal *)
164   | Ult (* Unsigned less than *)
165   | Ule (* Unsigned less or equal *)
166   | Sgt (* Signed greater than *)
167   | Sge (* Signed greater or equal *)
168   | Slt (* Signed less than *)
169   | Sle (* Signed less or equal *)
170 end
171
172 (** The predicate for a floating-point comparison ([fcmp]) instruction.
173     Ordered means that neither operand is a QNAN while unordered means
174     that either operand may be a QNAN.
175     See the [llvm::FCmpInst::Predicate] enumeration. *)
176 module Fcmp : sig
177   type t =
178   | False (* Always false *)
179   | Oeq   (* Ordered and equal *)
180   | Ogt   (* Ordered and greater than *)
181   | Oge   (* Ordered and greater or equal *)
182   | Olt   (* Ordered and less than *)
183   | Ole   (* Ordered and less or equal *)
184   | One   (* Ordered and not equal *)
185   | Ord   (* Ordered (no operand is NaN) *)
186   | Uno   (* Unordered (one operand at least is NaN) *)
187   | Ueq   (* Unordered and equal *)
188   | Ugt   (* Unordered and greater than *)
189   | Uge   (* Unordered and greater or equal *)
190   | Ult   (* Unordered and less than *)
191   | Ule   (* Unordered and less or equal *)
192   | Une   (* Unordered and not equal *)
193   | True  (* Always true *)
194 end
195
196 (** The opcodes for LLVM instructions and constant expressions. *)
197 module Opcode : sig
198   type t =
199   | Invalid (* not an instruction *)
200   (* Terminator Instructions *)
201   | Ret
202   | Br
203   | Switch
204   | IndirectBr
205   | Invoke
206   | Invalid2
207   | Unreachable
208   (* Standard Binary Operators *)
209   | Add
210   | FAdd
211   | Sub
212   | FSub
213   | Mul
214   | FMul
215   | UDiv
216   | SDiv
217   | FDiv
218   | URem
219   | SRem
220   | FRem
221   (* Logical Operators *)
222   | Shl
223   | LShr
224   | AShr
225   | And
226   | Or
227   | Xor
228   (* Memory Operators *)
229   | Alloca
230   | Load
231   | Store
232   | GetElementPtr
233   (* Cast Operators *)
234   | Trunc
235   | ZExt
236   | SExt
237   | FPToUI
238   | FPToSI
239   | UIToFP
240   | SIToFP
241   | FPTrunc
242   | FPExt
243   | PtrToInt
244   | IntToPtr
245   | BitCast
246   (* Other Operators *)
247   | ICmp
248   | FCmp
249   | PHI
250   | Call
251   | Select
252   | UserOp1
253   | UserOp2
254   | VAArg
255   | ExtractElement
256   | InsertElement
257   | ShuffleVector
258   | ExtractValue
259   | InsertValue
260   | Fence
261   | AtomicCmpXchg
262   | AtomicRMW
263   | Resume
264   | LandingPad
265 end
266
267 (** The type of a clause of a [landingpad] instruction.
268     See [llvm::LandingPadInst::ClauseType]. *)
269 module LandingPadClauseTy : sig
270   type t =
271   | Catch
272   | Filter
273 end
274
275 (** The thread local mode of a global value, accessed with {!thread_local_mode}
276     and {!set_thread_local_mode}.
277     See [llvm::GlobalVariable::ThreadLocalMode]. *)
278 module ThreadLocalMode : sig
279   type t =
280   | None
281   | GeneralDynamic
282   | LocalDynamic
283   | InitialExec
284   | LocalExec
285 end
286
287 (** The ordering of an atomic [load], [store], [cmpxchg], [atomicrmw] or
288     [fence] instruction. See [llvm::AtomicOrdering]. *)
289 module AtomicOrdering : sig
290   type t =
291   | NotAtomic
292   | Unordered
293   | Monotonic
294   | Invalid (* removed due to API changes *)
295   | Acquire
296   | Release
297   | AcqiureRelease
298   | SequentiallyConsistent
299 end
300
301 (** The opcode of an [atomicrmw] instruction.
302     See [llvm::AtomicRMWInst::BinOp]. *)
303 module AtomicRMWBinOp : sig
304   type t =
305   | Xchg
306   | Add
307   | Sub
308   | And
309   | Nand
310   | Or
311   | Xor
312   | Max
313   | Min
314   | UMax
315   | UMin
316 end
317
318 (** The kind of an [llvalue], the result of [classify_value v].
319     See the various [LLVMIsA*] functions. *)
320 module ValueKind : sig
321   type t =
322   | NullValue
323   | Argument
324   | BasicBlock
325   | InlineAsm
326   | MDNode
327   | MDString
328   | BlockAddress
329   | ConstantAggregateZero
330   | ConstantArray
331   | ConstantDataArray
332   | ConstantDataVector
333   | ConstantExpr
334   | ConstantFP
335   | ConstantInt
336   | ConstantPointerNull
337   | ConstantStruct
338   | ConstantVector
339   | Function
340   | GlobalAlias
341   | GlobalVariable
342   | UndefValue
343   | Instruction of Opcode.t
344 end
345
346
347 (** {6 Iteration} *)
348
349 (** [Before b] and [At_end a] specify positions from the start of the ['b] list
350     of [a]. [llpos] is used to specify positions in and for forward iteration
351     through the various value lists maintained by the LLVM IR. *)
352 type ('a, 'b) llpos =
353 | At_end of 'a
354 | Before of 'b
355
356 (** [After b] and [At_start a] specify positions from the end of the ['b] list
357     of [a]. [llrev_pos] is used for reverse iteration through the various value
358     lists maintained by the LLVM IR. *)
359 type ('a, 'b) llrev_pos =
360 | At_start of 'a
361 | After of 'b
362
363
364 (** {6 Exceptions} *)
365
366 exception IoError of string
367
368
369 (** {6 Global configuration} *)
370
371 (** [enable_pretty_stacktraces ()] enables LLVM's built-in stack trace code.
372     This intercepts the OS's crash signals and prints which component of LLVM
373     you were in at the time of the crash. *)
374 val enable_pretty_stacktrace : unit -> unit
375
376 (** [install_fatal_error_handler f] installs [f] as LLVM's fatal error handler.
377     The handler will receive the reason for termination as a string. After
378     the handler has been executed, LLVM calls [exit(1)]. *)
379 val install_fatal_error_handler : (string -> unit) -> unit
380
381 (** [reset_fatal_error_handler ()] resets LLVM's fatal error handler. *)
382 val reset_fatal_error_handler : unit -> unit
383
384 (** {6 Contexts} *)
385
386 (** [create_context ()] creates a context for storing the "global" state in
387     LLVM. See the constructor [llvm::LLVMContext]. *)
388 val create_context : unit -> llcontext
389
390 (** [destroy_context ()] destroys a context. See the destructor
391     [llvm::LLVMContext::~LLVMContext]. *)
392 val dispose_context : llcontext -> unit
393
394 (** See the function [llvm::getGlobalContext]. *)
395 val global_context : unit -> llcontext
396
397 (** [mdkind_id context name] returns the MDKind ID that corresponds to the
398     name [name] in the context [context].  See the function
399     [llvm::LLVMContext::getMDKindID]. *)
400 val mdkind_id : llcontext -> string -> llmdkind
401
402
403 (** {6 Modules} *)
404
405 (** [create_module context id] creates a module with the supplied module ID in
406     the context [context].  Modules are not garbage collected; it is mandatory
407     to call {!dispose_module} to free memory. See the constructor
408     [llvm::Module::Module]. *)
409 val create_module : llcontext -> string -> llmodule
410
411 (** [dispose_module m] destroys a module [m] and all of the IR objects it
412     contained. All references to subordinate objects are invalidated;
413     referencing them will invoke undefined behavior. See the destructor
414     [llvm::Module::~Module]. *)
415 val dispose_module : llmodule -> unit
416
417 (** [target_triple m] is the target specifier for the module [m], something like
418     [i686-apple-darwin8]. See the method [llvm::Module::getTargetTriple]. *)
419 val target_triple: llmodule -> string
420
421 (** [target_triple triple m] changes the target specifier for the module [m] to
422     the string [triple]. See the method [llvm::Module::setTargetTriple]. *)
423 val set_target_triple: string -> llmodule -> unit
424
425 (** [data_layout m] is the data layout specifier for the module [m], something
426     like [e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-...-a0:0:64-f80:128:128]. See the
427     method [llvm::Module::getDataLayout]. *)
428 val data_layout: llmodule -> string
429
430 (** [set_data_layout s m] changes the data layout specifier for the module [m]
431     to the string [s]. See the method [llvm::Module::setDataLayout]. *)
432 val set_data_layout: string -> llmodule -> unit
433
434 (** [dump_module m] prints the .ll representation of the module [m] to standard
435     error. See the method [llvm::Module::dump]. *)
436 val dump_module : llmodule -> unit
437
438 (** [print_module f m] prints the .ll representation of the module [m]
439     to file [f]. See the method [llvm::Module::print]. *)
440 val print_module : string -> llmodule -> unit
441
442 (** [string_of_llmodule m] returns the .ll representation of the module [m]
443     as a string. See the method [llvm::Module::print]. *)
444 val string_of_llmodule : llmodule -> string
445
446 (** [set_module_inline_asm m asm] sets the inline assembler for the module. See
447     the method [llvm::Module::setModuleInlineAsm]. *)
448 val set_module_inline_asm : llmodule -> string -> unit
449
450 (** [module_context m] returns the context of the specified module.
451     See the method [llvm::Module::getContext] *)
452 val module_context : llmodule -> llcontext
453
454
455 (** {6 Types} *)
456
457 (** [classify_type ty] returns the {!TypeKind.t} corresponding to the type [ty].
458     See the method [llvm::Type::getTypeID]. *)
459 val classify_type : lltype -> TypeKind.t
460
461 (** [type_is_sized ty] returns whether the type has a size or not.
462     If it doesn't then it is not safe to call the [DataLayout::] methods on it.
463     *)
464 val type_is_sized : lltype -> bool
465
466 (** [type_context ty] returns the {!llcontext} corresponding to the type [ty].
467     See the method [llvm::Type::getContext]. *)
468 val type_context : lltype -> llcontext
469
470 (** [dump_type ty] prints the .ll representation of the type [ty] to standard
471     error. See the method [llvm::Type::dump]. *)
472 val dump_type : lltype -> unit
473
474 (** [string_of_lltype ty] returns a string describing the type [ty]. *)
475 val string_of_lltype : lltype -> string
476
477
478 (** {7 Operations on integer types} *)
479
480 (** [i1_type c] returns an integer type of bitwidth 1 in the context [c]. See
481     [llvm::Type::Int1Ty]. *)
482 val i1_type : llcontext -> lltype
483
484 (** [i8_type c] returns an integer type of bitwidth 8 in the context [c]. See
485     [llvm::Type::Int8Ty]. *)
486 val i8_type : llcontext -> lltype
487
488 (** [i16_type c] returns an integer type of bitwidth 16 in the context [c]. See
489     [llvm::Type::Int16Ty]. *)
490 val i16_type : llcontext -> lltype
491
492 (** [i32_type c] returns an integer type of bitwidth 32 in the context [c]. See
493     [llvm::Type::Int32Ty]. *)
494 val i32_type : llcontext -> lltype
495
496 (** [i64_type c] returns an integer type of bitwidth 64 in the context [c]. See
497     [llvm::Type::Int64Ty]. *)
498 val i64_type : llcontext -> lltype
499
500 (** [integer_type c n] returns an integer type of bitwidth [n] in the context
501     [c]. See the method [llvm::IntegerType::get]. *)
502 val integer_type : llcontext -> int -> lltype
503
504 (** [integer_bitwidth c ty] returns the number of bits in the integer type [ty]
505     in the context [c].  See the method [llvm::IntegerType::getBitWidth]. *)
506 val integer_bitwidth : lltype -> int
507
508
509 (** {7 Operations on real types} *)
510
511 (** [float_type c] returns the IEEE 32-bit floating point type in the context
512     [c]. See [llvm::Type::FloatTy]. *)
513 val float_type : llcontext -> lltype
514
515 (** [double_type c] returns the IEEE 64-bit floating point type in the context
516     [c]. See [llvm::Type::DoubleTy]. *)
517 val double_type : llcontext -> lltype
518
519 (** [x86fp80_type c] returns the x87 80-bit floating point type in the context
520     [c]. See [llvm::Type::X86_FP80Ty]. *)
521 val x86fp80_type : llcontext -> lltype
522
523 (** [fp128_type c] returns the IEEE 128-bit floating point type in the context
524     [c]. See [llvm::Type::FP128Ty]. *)
525 val fp128_type : llcontext -> lltype
526
527 (** [ppc_fp128_type c] returns the PowerPC 128-bit floating point type in the
528     context [c]. See [llvm::Type::PPC_FP128Ty]. *)
529 val ppc_fp128_type : llcontext -> lltype
530
531
532 (** {7 Operations on function types} *)
533
534 (** [function_type ret_ty param_tys] returns the function type returning
535     [ret_ty] and taking [param_tys] as parameters.
536     See the method [llvm::FunctionType::get]. *)
537 val function_type : lltype -> lltype array -> lltype
538
539 (** [var_arg_function_type ret_ty param_tys] is just like
540     [function_type ret_ty param_tys] except that it returns the function type
541     which also takes a variable number of arguments.
542     See the method [llvm::FunctionType::get]. *)
543 val var_arg_function_type : lltype -> lltype array -> lltype
544
545 (** [is_var_arg fty] returns [true] if [fty] is a varargs function type, [false]
546     otherwise. See the method [llvm::FunctionType::isVarArg]. *)
547 val is_var_arg : lltype -> bool
548
549 (** [return_type fty] gets the return type of the function type [fty].
550     See the method [llvm::FunctionType::getReturnType]. *)
551 val return_type : lltype -> lltype
552
553 (** [param_types fty] gets the parameter types of the function type [fty].
554     See the method [llvm::FunctionType::getParamType]. *)
555 val param_types : lltype -> lltype array
556
557
558 (** {7 Operations on struct types} *)
559
560 (** [struct_type context tys] returns the structure type in the context
561     [context] containing in the types in the array [tys]. See the method
562     [llvm::StructType::get]. *)
563 val struct_type : llcontext -> lltype array -> lltype
564
565 (** [packed_struct_type context ys] returns the packed structure type in the
566     context [context] containing in the types in the array [tys]. See the method
567     [llvm::StructType::get]. *)
568 val packed_struct_type : llcontext -> lltype array -> lltype
569
570 (** [struct_name ty] returns the name of the named structure type [ty],
571     or None if the structure type is not named *)
572 val struct_name : lltype -> string option
573
574 (** [named_struct_type context name] returns the named structure type [name]
575     in the context [context].
576     See the method [llvm::StructType::get]. *)
577 val named_struct_type : llcontext -> string -> lltype
578
579 (** [struct_set_body ty elts ispacked] sets the body of the named struct [ty]
580     to the [elts] elements.
581     See the moethd [llvm::StructType::setBody]. *)
582 val struct_set_body : lltype -> lltype array -> bool -> unit
583
584 (** [struct_element_types sty] returns the constituent types of the struct type
585     [sty]. See the method [llvm::StructType::getElementType]. *)
586 val struct_element_types : lltype -> lltype array
587
588 (** [is_packed sty] returns [true] if the structure type [sty] is packed,
589     [false] otherwise. See the method [llvm::StructType::isPacked]. *)
590 val is_packed : lltype -> bool
591
592 (** [is_opaque sty] returns [true] if the structure type [sty] is opaque.
593     [false] otherwise. See the method [llvm::StructType::isOpaque]. *)
594 val is_opaque : lltype -> bool
595
596
597 (** {7 Operations on pointer, vector, and array types} *)
598
599 (** [array_type ty n] returns the array type containing [n] elements of type
600     [ty]. See the method [llvm::ArrayType::get]. *)
601 val array_type : lltype -> int -> lltype
602
603 (** [pointer_type ty] returns the pointer type referencing objects of type
604     [ty] in the default address space (0).
605     See the method [llvm::PointerType::getUnqual]. *)
606 val pointer_type : lltype -> lltype
607
608 (** [qualified_pointer_type ty as] returns the pointer type referencing objects
609     of type [ty] in address space [as].
610     See the method [llvm::PointerType::get]. *)
611 val qualified_pointer_type : lltype -> int -> lltype
612
613 (** [vector_type ty n] returns the array type containing [n] elements of the
614     primitive type [ty]. See the method [llvm::ArrayType::get]. *)
615 val vector_type : lltype -> int -> lltype
616
617 (** [element_type ty] returns the element type of the pointer, vector, or array
618     type [ty]. See the method [llvm::SequentialType::get]. *)
619 val element_type : lltype -> lltype
620
621 (** [element_type aty] returns the element count of the array type [aty].
622     See the method [llvm::ArrayType::getNumElements]. *)
623 val array_length : lltype -> int
624
625 (** [address_space pty] returns the address space qualifier of the pointer type
626     [pty]. See the method [llvm::PointerType::getAddressSpace]. *)
627 val address_space : lltype -> int
628
629 (** [element_type ty] returns the element count of the vector type [ty].
630     See the method [llvm::VectorType::getNumElements]. *)
631 val vector_size : lltype -> int
632
633
634 (** {7 Operations on other types} *)
635
636 (** [void_type c] creates a type of a function which does not return any
637     value in the context [c]. See [llvm::Type::VoidTy]. *)
638 val void_type : llcontext -> lltype
639
640 (** [label_type c] creates a type of a basic block in the context [c]. See
641     [llvm::Type::LabelTy]. *)
642 val label_type : llcontext -> lltype
643
644 (** [x86_mmx_type c] returns the x86 64-bit MMX register type in the
645     context [c]. See [llvm::Type::X86_MMXTy]. *)
646 val x86_mmx_type : llcontext -> lltype
647
648 (** [type_by_name m name] returns the specified type from the current module
649     if it exists.
650     See the method [llvm::Module::getTypeByName] *)
651 val type_by_name : llmodule -> string -> lltype option
652
653
654 (* {6 Values} *)
655
656 (** [type_of v] returns the type of the value [v].
657     See the method [llvm::Value::getType]. *)
658 val type_of : llvalue -> lltype
659
660 (** [classify_value v] returns the kind of the value [v]. *)
661 val classify_value : llvalue -> ValueKind.t
662
663 (** [value_name v] returns the name of the value [v]. For global values, this is
664     the symbol name. For instructions and basic blocks, it is the SSA register
665     name. It is meaningless for constants.
666     See the method [llvm::Value::getName]. *)
667 val value_name : llvalue -> string
668
669 (** [set_value_name n v] sets the name of the value [v] to [n]. See the method
670     [llvm::Value::setName]. *)
671 val set_value_name : string -> llvalue -> unit
672
673 (** [dump_value v] prints the .ll representation of the value [v] to standard
674     error. See the method [llvm::Value::dump]. *)
675 val dump_value : llvalue -> unit
676
677 (** [string_of_llvalue v] returns a string describing the value [v]. *)
678 val string_of_llvalue : llvalue -> string
679
680 (** [replace_all_uses_with old new] replaces all uses of the value [old]
681     with the value [new]. See the method [llvm::Value::replaceAllUsesWith]. *)
682 val replace_all_uses_with : llvalue -> llvalue -> unit
683
684
685 (* {6 Uses} *)
686
687 (** [use_begin v] returns the first position in the use list for the value [v].
688     [use_begin] and [use_succ] can e used to iterate over the use list in order.
689     See the method [llvm::Value::use_begin]. *)
690 val use_begin : llvalue -> lluse option
691
692 (** [use_succ u] returns the use list position succeeding [u].
693     See the method [llvm::use_value_iterator::operator++]. *)
694 val use_succ : lluse -> lluse option
695
696 (** [user u] returns the user of the use [u].
697     See the method [llvm::Use::getUser]. *)
698 val user : lluse -> llvalue
699
700 (** [used_value u] returns the usee of the use [u].
701     See the method [llvm::Use::getUsedValue]. *)
702 val used_value : lluse -> llvalue
703
704 (** [iter_uses f v] applies function [f] to each of the users of the value [v]
705     in order. Tail recursive. *)
706 val iter_uses : (lluse -> unit) -> llvalue -> unit
707
708 (** [fold_left_uses f init v] is [f (... (f init u1) ...) uN] where
709     [u1,...,uN] are the users of the value [v]. Tail recursive. *)
710 val fold_left_uses : ('a -> lluse -> 'a) -> 'a -> llvalue -> 'a
711
712 (** [fold_right_uses f v init] is [f u1 (... (f uN init) ...)] where
713     [u1,...,uN] are the users of the value [v]. Not tail recursive. *)
714 val fold_right_uses : (lluse -> 'a -> 'a) -> llvalue -> 'a -> 'a
715
716
717 (* {6 Users} *)
718
719 (** [operand v i] returns the operand at index [i] for the value [v]. See the
720     method [llvm::User::getOperand]. *)
721 val operand : llvalue -> int -> llvalue
722
723 (** [set_operand v i o] sets the operand of the value [v] at the index [i] to
724     the value [o].
725     See the method [llvm::User::setOperand]. *)
726 val set_operand : llvalue -> int -> llvalue -> unit
727
728 (** [num_operands v] returns the number of operands for the value [v].
729     See the method [llvm::User::getNumOperands]. *)
730 val num_operands : llvalue -> int
731
732
733 (** {7 Operations on constants of (mostly) any type} *)
734
735 (** [is_constant v] returns [true] if the value [v] is a constant, [false]
736     otherwise. Similar to [llvm::isa<Constant>]. *)
737 val is_constant : llvalue -> bool
738
739 (** [const_null ty] returns the constant null (zero) of the type [ty].
740     See the method [llvm::Constant::getNullValue]. *)
741 val const_null : lltype -> llvalue
742
743 (** [const_all_ones ty] returns the constant '-1' of the integer or vector type
744     [ty]. See the method [llvm::Constant::getAllOnesValue]. *)
745 val const_all_ones : (*int|vec*)lltype -> llvalue
746
747 (** [const_pointer_null ty] returns the constant null (zero) pointer of the type
748     [ty]. See the method [llvm::ConstantPointerNull::get]. *)
749 val const_pointer_null : lltype -> llvalue
750
751 (** [undef ty] returns the undefined value of the type [ty].
752     See the method [llvm::UndefValue::get]. *)
753 val undef : lltype -> llvalue
754
755 (** [is_null v] returns [true] if the value [v] is the null (zero) value.
756     See the method [llvm::Constant::isNullValue]. *)
757 val is_null : llvalue -> bool
758
759 (** [is_undef v] returns [true] if the value [v] is an undefined value, [false]
760     otherwise. Similar to [llvm::isa<UndefValue>]. *)
761 val is_undef : llvalue -> bool
762
763 (** [constexpr_opcode v] returns an [Opcode.t] corresponding to constexpr
764     value [v], or [Opcode.Invalid] if [v] is not a constexpr. *)
765 val constexpr_opcode : llvalue -> Opcode.t
766
767
768 (** {7 Operations on instructions} *)
769
770 (** [has_metadata i] returns whether or not the instruction [i] has any
771     metadata attached to it. See the function
772     [llvm::Instruction::hasMetadata]. *)
773 val has_metadata : llvalue -> bool
774
775 (** [metadata i kind] optionally returns the metadata associated with the
776     kind [kind] in the instruction [i] See the function
777     [llvm::Instruction::getMetadata]. *)
778 val metadata : llvalue -> llmdkind -> llvalue option
779
780 (** [set_metadata i kind md] sets the metadata [md] of kind [kind] in the
781     instruction [i]. See the function [llvm::Instruction::setMetadata]. *)
782 val set_metadata : llvalue -> llmdkind -> llvalue -> unit
783
784 (** [clear_metadata i kind] clears the metadata of kind [kind] in the
785     instruction [i]. See the function [llvm::Instruction::setMetadata]. *)
786 val clear_metadata : llvalue -> llmdkind -> unit
787
788
789 (** {7 Operations on metadata} *)
790
791 (** [mdstring c s] returns the MDString of the string [s] in the context [c].
792     See the method [llvm::MDNode::get]. *)
793 val mdstring : llcontext -> string -> llvalue
794
795 (** [mdnode c elts] returns the MDNode containing the values [elts] in the
796     context [c].
797     See the method [llvm::MDNode::get]. *)
798 val mdnode : llcontext -> llvalue array -> llvalue
799
800 (** [get_mdstring v] returns the MDString.
801     See the method [llvm::MDString::getString] *)
802 val get_mdstring : llvalue -> string option
803
804 (** [get_named_metadata m name] returns all the MDNodes belonging to the named
805     metadata (if any).
806     See the method [llvm::NamedMDNode::getOperand]. *)
807 val get_named_metadata : llmodule -> string -> llvalue array
808
809 (** [add_named_metadata_operand m name v] adds [v] as the last operand of
810     metadata named [name] in module [m]. If the metadata does not exist,
811     it is created.
812     See the methods [llvm::Module::getNamedMetadata()] and
813     [llvm::MDNode::addOperand()]. *)
814 val add_named_metadata_operand : llmodule -> string -> llvalue -> unit
815
816
817 (** {7 Operations on scalar constants} *)
818
819 (** [const_int ty i] returns the integer constant of type [ty] and value [i].
820     See the method [llvm::ConstantInt::get]. *)
821 val const_int : lltype -> int -> llvalue
822
823 (** [const_of_int64 ty i] returns the integer constant of type [ty] and value
824     [i]. See the method [llvm::ConstantInt::get]. *)
825 val const_of_int64 : lltype -> Int64.t -> bool -> llvalue
826
827 (** [int64_of_const c] returns the int64 value of the [c] constant integer.
828     None is returned if this is not an integer constant, or bitwidth exceeds 64.
829     See the method [llvm::ConstantInt::getSExtValue].*)
830 val int64_of_const : llvalue -> Int64.t option
831
832 (** [const_int_of_string ty s r] returns the integer constant of type [ty] and
833     value [s], with the radix [r]. See the method [llvm::ConstantInt::get]. *)
834 val const_int_of_string : lltype -> string -> int -> llvalue
835
836 (** [const_float ty n] returns the floating point constant of type [ty] and
837     value [n]. See the method [llvm::ConstantFP::get]. *)
838 val const_float : lltype -> float -> llvalue
839
840 (** [const_float_of_string ty s] returns the floating point constant of type
841     [ty] and value [n]. See the method [llvm::ConstantFP::get]. *)
842 val const_float_of_string : lltype -> string -> llvalue
843
844 (** {7 Operations on composite constants} *)
845
846 (** [const_string c s] returns the constant [i8] array with the values of the
847     characters in the string [s] in the context [c]. The array is not 
848     null-terminated (but see {!const_stringz}). This value can in turn be used
849     as the initializer for a global variable. See the method
850     [llvm::ConstantArray::get]. *)
851 val const_string : llcontext -> string -> llvalue
852
853 (** [const_stringz c s] returns the constant [i8] array with the values of the
854     characters in the string [s] and a null terminator in the context [c]. This
855     value can in turn be used as the initializer for a global variable.
856     See the method [llvm::ConstantArray::get]. *)
857 val const_stringz : llcontext -> string -> llvalue
858
859 (** [const_array ty elts] returns the constant array of type
860     [array_type ty (Array.length elts)] and containing the values [elts].
861     This value can in turn be used as the initializer for a global variable.
862     See the method [llvm::ConstantArray::get]. *)
863 val const_array : lltype -> llvalue array -> llvalue
864
865 (** [const_struct context elts] returns the structured constant of type
866     [struct_type (Array.map type_of elts)] and containing the values [elts]
867     in the context [context]. This value can in turn be used as the initializer
868     for a global variable. See the method [llvm::ConstantStruct::getAnon]. *)
869 val const_struct : llcontext -> llvalue array -> llvalue
870
871 (** [const_named_struct namedty elts] returns the structured constant of type
872     [namedty] (which must be a named structure type) and containing the values [elts].
873     This value can in turn be used as the initializer
874     for a global variable. See the method [llvm::ConstantStruct::get]. *)
875 val const_named_struct : lltype -> llvalue array -> llvalue
876
877 (** [const_packed_struct context elts] returns the structured constant of
878     type {!packed_struct_type} [(Array.map type_of elts)] and containing the
879     values [elts] in the context [context]. This value can in turn be used as
880     the initializer for a global variable. See the method
881     [llvm::ConstantStruct::get]. *)
882 val const_packed_struct : llcontext -> llvalue array -> llvalue
883
884 (** [const_vector elts] returns the vector constant of type
885     [vector_type (type_of elts.(0)) (Array.length elts)] and containing the
886     values [elts]. See the method [llvm::ConstantVector::get]. *)
887 val const_vector : llvalue array -> llvalue
888
889 (** [string_of_const c] returns [Some str] if [c] is a string constant,
890     or [None] if this is not a string constant. *)
891 val string_of_const : llvalue -> string option
892
893 (** [const_element c] returns a constant for a specified index's element.
894     See the method ConstantDataSequential::getElementAsConstant. *)
895 val const_element : llvalue -> int -> llvalue
896
897
898 (** {7 Constant expressions} *)
899
900 (** [align_of ty] returns the alignof constant for the type [ty]. This is
901     equivalent to [const_ptrtoint (const_gep (const_null (pointer_type {i8,ty}))
902     (const_int i32_type 0) (const_int i32_type 1)) i32_type], but considerably
903     more readable.  See the method [llvm::ConstantExpr::getAlignOf]. *)
904 val align_of : lltype -> llvalue
905
906 (** [size_of ty] returns the sizeof constant for the type [ty]. This is
907     equivalent to [const_ptrtoint (const_gep (const_null (pointer_type ty))
908     (const_int i32_type 1)) i64_type], but considerably more readable.
909     See the method [llvm::ConstantExpr::getSizeOf]. *)
910 val size_of : lltype -> llvalue
911
912 (** [const_neg c] returns the arithmetic negation of the constant [c].
913     See the method [llvm::ConstantExpr::getNeg]. *)
914 val const_neg : llvalue -> llvalue
915
916 (** [const_nsw_neg c] returns the arithmetic negation of the constant [c] with
917     no signed wrapping. The result is undefined if the negation overflows.
918     See the method [llvm::ConstantExpr::getNSWNeg]. *)
919 val const_nsw_neg : llvalue -> llvalue
920
921 (** [const_nuw_neg c] returns the arithmetic negation of the constant [c] with
922     no unsigned wrapping. The result is undefined if the negation overflows.
923     See the method [llvm::ConstantExpr::getNUWNeg]. *)
924 val const_nuw_neg : llvalue -> llvalue
925
926 (** [const_fneg c] returns the arithmetic negation of the constant float [c].
927     See the method [llvm::ConstantExpr::getFNeg]. *)
928 val const_fneg : llvalue -> llvalue
929
930 (** [const_not c] returns the bitwise inverse of the constant [c].
931     See the method [llvm::ConstantExpr::getNot]. *)
932 val const_not : llvalue -> llvalue
933
934 (** [const_add c1 c2] returns the constant sum of two constants.
935     See the method [llvm::ConstantExpr::getAdd]. *)
936 val const_add : llvalue -> llvalue -> llvalue
937
938 (** [const_nsw_add c1 c2] returns the constant sum of two constants with no
939     signed wrapping. The result is undefined if the sum overflows.
940     See the method [llvm::ConstantExpr::getNSWAdd]. *)
941 val const_nsw_add : llvalue -> llvalue -> llvalue
942
943 (** [const_nuw_add c1 c2] returns the constant sum of two constants with no
944     unsigned wrapping. The result is undefined if the sum overflows.
945     See the method [llvm::ConstantExpr::getNSWAdd]. *)
946 val const_nuw_add : llvalue -> llvalue -> llvalue
947
948 (** [const_fadd c1 c2] returns the constant sum of two constant floats.
949     See the method [llvm::ConstantExpr::getFAdd]. *)
950 val const_fadd : llvalue -> llvalue -> llvalue
951
952 (** [const_sub c1 c2] returns the constant difference, [c1 - c2], of two
953     constants. See the method [llvm::ConstantExpr::getSub]. *)
954 val const_sub : llvalue -> llvalue -> llvalue
955
956 (** [const_nsw_sub c1 c2] returns the constant difference of two constants with
957     no signed wrapping. The result is undefined if the sum overflows.
958     See the method [llvm::ConstantExpr::getNSWSub]. *)
959 val const_nsw_sub : llvalue -> llvalue -> llvalue
960
961 (** [const_nuw_sub c1 c2] returns the constant difference of two constants with
962     no unsigned wrapping. The result is undefined if the sum overflows.
963     See the method [llvm::ConstantExpr::getNSWSub]. *)
964 val const_nuw_sub : llvalue -> llvalue -> llvalue
965
966 (** [const_fsub c1 c2] returns the constant difference, [c1 - c2], of two
967     constant floats. See the method [llvm::ConstantExpr::getFSub]. *)
968 val const_fsub : llvalue -> llvalue -> llvalue
969
970 (** [const_mul c1 c2] returns the constant product of two constants.
971     See the method [llvm::ConstantExpr::getMul]. *)
972 val const_mul : llvalue -> llvalue -> llvalue
973
974 (** [const_nsw_mul c1 c2] returns the constant product of two constants with
975     no signed wrapping. The result is undefined if the sum overflows.
976     See the method [llvm::ConstantExpr::getNSWMul]. *)
977 val const_nsw_mul : llvalue -> llvalue -> llvalue
978
979 (** [const_nuw_mul c1 c2] returns the constant product of two constants with
980     no unsigned wrapping. The result is undefined if the sum overflows.
981     See the method [llvm::ConstantExpr::getNSWMul]. *)
982 val const_nuw_mul : llvalue -> llvalue -> llvalue
983
984 (** [const_fmul c1 c2] returns the constant product of two constants floats.
985     See the method [llvm::ConstantExpr::getFMul]. *)
986 val const_fmul : llvalue -> llvalue -> llvalue
987
988 (** [const_udiv c1 c2] returns the constant quotient [c1 / c2] of two unsigned
989     integer constants.
990     See the method [llvm::ConstantExpr::getUDiv]. *)
991 val const_udiv : llvalue -> llvalue -> llvalue
992
993 (** [const_sdiv c1 c2] returns the constant quotient [c1 / c2] of two signed
994     integer constants.
995     See the method [llvm::ConstantExpr::getSDiv]. *)
996 val const_sdiv : llvalue -> llvalue -> llvalue
997
998 (** [const_exact_sdiv c1 c2] returns the constant quotient [c1 / c2] of two
999     signed integer constants. The result is undefined if the result is rounded
1000     or overflows. See the method [llvm::ConstantExpr::getExactSDiv]. *)
1001 val const_exact_sdiv : llvalue -> llvalue -> llvalue
1002
1003 (** [const_fdiv c1 c2] returns the constant quotient [c1 / c2] of two floating
1004     point constants.
1005     See the method [llvm::ConstantExpr::getFDiv]. *)
1006 val const_fdiv : llvalue -> llvalue -> llvalue
1007
1008 (** [const_urem c1 c2] returns the constant remainder [c1 MOD c2] of two
1009     unsigned integer constants.
1010     See the method [llvm::ConstantExpr::getURem]. *)
1011 val const_urem : llvalue -> llvalue -> llvalue
1012
1013 (** [const_srem c1 c2] returns the constant remainder [c1 MOD c2] of two
1014     signed integer constants.
1015     See the method [llvm::ConstantExpr::getSRem]. *)
1016 val const_srem : llvalue -> llvalue -> llvalue
1017
1018 (** [const_frem c1 c2] returns the constant remainder [c1 MOD c2] of two
1019     signed floating point constants.
1020     See the method [llvm::ConstantExpr::getFRem]. *)
1021 val const_frem : llvalue -> llvalue -> llvalue
1022
1023 (** [const_and c1 c2] returns the constant bitwise [AND] of two integer
1024     constants.
1025     See the method [llvm::ConstantExpr::getAnd]. *)
1026 val const_and : llvalue -> llvalue -> llvalue
1027
1028 (** [const_or c1 c2] returns the constant bitwise [OR] of two integer
1029     constants.
1030     See the method [llvm::ConstantExpr::getOr]. *)
1031 val const_or : llvalue -> llvalue -> llvalue
1032
1033 (** [const_xor c1 c2] returns the constant bitwise [XOR] of two integer
1034     constants.
1035     See the method [llvm::ConstantExpr::getXor]. *)
1036 val const_xor : llvalue -> llvalue -> llvalue
1037
1038 (** [const_icmp pred c1 c2] returns the constant comparison of two integer
1039     constants, [c1 pred c2].
1040     See the method [llvm::ConstantExpr::getICmp]. *)
1041 val const_icmp : Icmp.t -> llvalue -> llvalue -> llvalue
1042
1043 (** [const_fcmp pred c1 c2] returns the constant comparison of two floating
1044     point constants, [c1 pred c2].
1045     See the method [llvm::ConstantExpr::getFCmp]. *)
1046 val const_fcmp : Fcmp.t -> llvalue -> llvalue -> llvalue
1047
1048 (** [const_shl c1 c2] returns the constant integer [c1] left-shifted by the
1049     constant integer [c2].
1050     See the method [llvm::ConstantExpr::getShl]. *)
1051 val const_shl : llvalue -> llvalue -> llvalue
1052
1053 (** [const_lshr c1 c2] returns the constant integer [c1] right-shifted by the
1054     constant integer [c2] with zero extension.
1055     See the method [llvm::ConstantExpr::getLShr]. *)
1056 val const_lshr : llvalue -> llvalue -> llvalue
1057
1058 (** [const_ashr c1 c2] returns the constant integer [c1] right-shifted by the
1059     constant integer [c2] with sign extension.
1060     See the method [llvm::ConstantExpr::getAShr]. *)
1061 val const_ashr : llvalue -> llvalue -> llvalue
1062
1063 (** [const_gep pc indices] returns the constant [getElementPtr] of [pc] with the
1064     constant integers indices from the array [indices].
1065     See the method [llvm::ConstantExpr::getGetElementPtr]. *)
1066 val const_gep : llvalue -> llvalue array -> llvalue
1067
1068 (** [const_in_bounds_gep pc indices] returns the constant [getElementPtr] of [pc]
1069     with the constant integers indices from the array [indices].
1070     See the method [llvm::ConstantExpr::getInBoundsGetElementPtr]. *)
1071 val const_in_bounds_gep : llvalue -> llvalue array -> llvalue
1072
1073 (** [const_trunc c ty] returns the constant truncation of integer constant [c]
1074     to the smaller integer type [ty].
1075     See the method [llvm::ConstantExpr::getTrunc]. *)
1076 val const_trunc : llvalue -> lltype -> llvalue
1077
1078 (** [const_sext c ty] returns the constant sign extension of integer constant
1079     [c] to the larger integer type [ty].
1080     See the method [llvm::ConstantExpr::getSExt]. *)
1081 val const_sext : llvalue -> lltype -> llvalue
1082
1083 (** [const_zext c ty] returns the constant zero extension of integer constant
1084     [c] to the larger integer type [ty].
1085     See the method [llvm::ConstantExpr::getZExt]. *)
1086 val const_zext : llvalue -> lltype -> llvalue
1087
1088 (** [const_fptrunc c ty] returns the constant truncation of floating point
1089     constant [c] to the smaller floating point type [ty].
1090     See the method [llvm::ConstantExpr::getFPTrunc]. *)
1091 val const_fptrunc : llvalue -> lltype -> llvalue
1092
1093 (** [const_fpext c ty] returns the constant extension of floating point constant
1094     [c] to the larger floating point type [ty].
1095     See the method [llvm::ConstantExpr::getFPExt]. *)
1096 val const_fpext : llvalue -> lltype -> llvalue
1097
1098 (** [const_uitofp c ty] returns the constant floating point conversion of
1099     unsigned integer constant [c] to the floating point type [ty].
1100     See the method [llvm::ConstantExpr::getUIToFP]. *)
1101 val const_uitofp : llvalue -> lltype -> llvalue
1102
1103 (** [const_sitofp c ty] returns the constant floating point conversion of
1104     signed integer constant [c] to the floating point type [ty].
1105     See the method [llvm::ConstantExpr::getSIToFP]. *)
1106 val const_sitofp : llvalue -> lltype -> llvalue
1107
1108 (** [const_fptoui c ty] returns the constant unsigned integer conversion of
1109     floating point constant [c] to integer type [ty].
1110     See the method [llvm::ConstantExpr::getFPToUI]. *)
1111 val const_fptoui : llvalue -> lltype -> llvalue
1112
1113 (** [const_fptoui c ty] returns the constant unsigned integer conversion of
1114     floating point constant [c] to integer type [ty].
1115     See the method [llvm::ConstantExpr::getFPToSI]. *)
1116 val const_fptosi : llvalue -> lltype -> llvalue
1117
1118 (** [const_ptrtoint c ty] returns the constant integer conversion of
1119     pointer constant [c] to integer type [ty].
1120     See the method [llvm::ConstantExpr::getPtrToInt]. *)
1121 val const_ptrtoint : llvalue -> lltype -> llvalue
1122
1123 (** [const_inttoptr c ty] returns the constant pointer conversion of
1124     integer constant [c] to pointer type [ty].
1125     See the method [llvm::ConstantExpr::getIntToPtr]. *)
1126 val const_inttoptr : llvalue -> lltype -> llvalue
1127
1128 (** [const_bitcast c ty] returns the constant bitwise conversion of constant [c]
1129     to type [ty] of equal size.
1130     See the method [llvm::ConstantExpr::getBitCast]. *)
1131 val const_bitcast : llvalue -> lltype -> llvalue
1132
1133 (** [const_zext_or_bitcast c ty] returns a constant zext or bitwise cast
1134     conversion of constant [c] to type [ty].
1135     See the method [llvm::ConstantExpr::getZExtOrBitCast]. *)
1136 val const_zext_or_bitcast : llvalue -> lltype -> llvalue
1137
1138 (** [const_sext_or_bitcast c ty] returns a constant sext or bitwise cast
1139     conversion of constant [c] to type [ty].
1140     See the method [llvm::ConstantExpr::getSExtOrBitCast]. *)
1141 val const_sext_or_bitcast : llvalue -> lltype -> llvalue
1142
1143 (** [const_trunc_or_bitcast c ty] returns a constant trunc or bitwise cast
1144     conversion of constant [c] to type [ty].
1145     See the method [llvm::ConstantExpr::getTruncOrBitCast]. *)
1146 val const_trunc_or_bitcast : llvalue -> lltype -> llvalue
1147
1148 (** [const_pointercast c ty] returns a constant bitcast or a pointer-to-int
1149     cast conversion of constant [c] to type [ty] of equal size.
1150     See the method [llvm::ConstantExpr::getPointerCast]. *)
1151 val const_pointercast : llvalue -> lltype -> llvalue
1152
1153 (** [const_intcast c ty ~is_signed] returns a constant sext/zext, bitcast,
1154     or trunc for integer -> integer casts of constant [c] to type [ty].
1155     When converting a narrower value to a wider one, whether sext or zext
1156     will be used is controlled by [is_signed].
1157     See the method [llvm::ConstantExpr::getIntegerCast]. *)
1158 val const_intcast : llvalue -> lltype -> is_signed:bool -> llvalue
1159
1160 (** [const_fpcast c ty] returns a constant fpext, bitcast, or fptrunc for fp ->
1161     fp casts of constant [c] to type [ty].
1162     See the method [llvm::ConstantExpr::getFPCast]. *)
1163 val const_fpcast : llvalue -> lltype -> llvalue
1164
1165 (** [const_select cond t f] returns the constant conditional which returns value
1166     [t] if the boolean constant [cond] is true and the value [f] otherwise.
1167     See the method [llvm::ConstantExpr::getSelect]. *)
1168 val const_select : llvalue -> llvalue -> llvalue -> llvalue
1169
1170 (** [const_extractelement vec i] returns the constant [i]th element of
1171     constant vector [vec]. [i] must be a constant [i32] value unsigned less than
1172     the size of the vector.
1173     See the method [llvm::ConstantExpr::getExtractElement]. *)
1174 val const_extractelement : llvalue -> llvalue -> llvalue
1175
1176 (** [const_insertelement vec v i] returns the constant vector with the same
1177     elements as constant vector [v] but the [i]th element replaced by the
1178     constant [v]. [v] must be a constant value with the type of the vector
1179     elements. [i] must be a constant [i32] value unsigned less than the size
1180     of the vector.
1181     See the method [llvm::ConstantExpr::getInsertElement]. *)
1182 val const_insertelement : llvalue -> llvalue -> llvalue -> llvalue
1183
1184 (** [const_shufflevector a b mask] returns a constant [shufflevector].
1185     See the LLVM Language Reference for details on the [shufflevector]
1186     instruction.
1187     See the method [llvm::ConstantExpr::getShuffleVector]. *)
1188 val const_shufflevector : llvalue -> llvalue -> llvalue -> llvalue
1189
1190 (** [const_extractvalue agg idxs] returns the constant [idxs]th value of
1191     constant aggregate [agg]. Each [idxs] must be less than the size of the
1192     aggregate.  See the method [llvm::ConstantExpr::getExtractValue]. *)
1193 val const_extractvalue : llvalue -> int array -> llvalue
1194
1195 (** [const_insertvalue agg val idxs] inserts the value [val] in the specified
1196     indexs [idxs] in the aggegate [agg]. Each [idxs] must be less than the size
1197     of the aggregate. See the method [llvm::ConstantExpr::getInsertValue]. *)
1198 val const_insertvalue : llvalue -> llvalue -> int array -> llvalue
1199
1200 (** [const_inline_asm ty asm con side align] inserts a inline assembly string.
1201     See the method [llvm::InlineAsm::get]. *)
1202 val const_inline_asm : lltype -> string -> string -> bool -> bool -> llvalue
1203
1204 (** [block_address f bb] returns the address of the basic block [bb] in the
1205     function [f]. See the method [llvm::BasicBlock::get]. *)
1206 val block_address : llvalue -> llbasicblock -> llvalue
1207
1208
1209 (** {7 Operations on global variables, functions, and aliases (globals)} *)
1210
1211 (** [global_parent g] is the enclosing module of the global value [g].
1212     See the method [llvm::GlobalValue::getParent]. *)
1213 val global_parent : llvalue -> llmodule
1214
1215 (** [is_declaration g] returns [true] if the global value [g] is a declaration
1216     only. Returns [false] otherwise.
1217     See the method [llvm::GlobalValue::isDeclaration]. *)
1218 val is_declaration : llvalue -> bool
1219
1220 (** [linkage g] returns the linkage of the global value [g].
1221     See the method [llvm::GlobalValue::getLinkage]. *)
1222 val linkage : llvalue -> Linkage.t
1223
1224 (** [set_linkage l g] sets the linkage of the global value [g] to [l].
1225     See the method [llvm::GlobalValue::setLinkage]. *)
1226 val set_linkage : Linkage.t -> llvalue -> unit
1227
1228 (** [section g] returns the linker section of the global value [g].
1229     See the method [llvm::GlobalValue::getSection]. *)
1230 val section : llvalue -> string
1231
1232 (** [set_section s g] sets the linker section of the global value [g] to [s].
1233     See the method [llvm::GlobalValue::setSection]. *)
1234 val set_section : string -> llvalue -> unit
1235
1236 (** [visibility g] returns the linker visibility of the global value [g].
1237     See the method [llvm::GlobalValue::getVisibility]. *)
1238 val visibility : llvalue -> Visibility.t
1239
1240 (** [set_visibility v g] sets the linker visibility of the global value [g] to
1241     [v]. See the method [llvm::GlobalValue::setVisibility]. *)
1242 val set_visibility : Visibility.t -> llvalue -> unit
1243
1244 (** [alignment g] returns the required alignment of the global value [g].
1245     See the method [llvm::GlobalValue::getAlignment]. *)
1246 val alignment : llvalue -> int
1247
1248 (** [set_alignment n g] sets the required alignment of the global value [g] to
1249     [n] bytes. See the method [llvm::GlobalValue::setAlignment]. *)
1250 val set_alignment : int -> llvalue -> unit
1251
1252
1253 (** {7 Operations on global variables} *)
1254
1255 (** [declare_global ty name m] returns a new global variable of type [ty] and
1256     with name [name] in module [m] in the default address space (0). If such a
1257     global variable already exists, it is returned. If the type of the existing
1258     global differs, then a bitcast to [ty] is returned. *)
1259 val declare_global : lltype -> string -> llmodule -> llvalue
1260
1261 (** [declare_qualified_global ty name addrspace m] returns a new global variable
1262     of type [ty] and with name [name] in module [m] in the address space
1263     [addrspace]. If such a global variable already exists, it is returned. If
1264     the type of the existing global differs, then a bitcast to [ty] is
1265     returned. *)
1266 val declare_qualified_global : lltype -> string -> int -> llmodule -> llvalue
1267
1268 (** [define_global name init m] returns a new global with name [name] and
1269     initializer [init] in module [m] in the default address space (0). If the
1270     named global already exists, it is renamed.
1271     See the constructor of [llvm::GlobalVariable]. *)
1272 val define_global : string -> llvalue -> llmodule -> llvalue
1273
1274 (** [define_qualified_global name init addrspace m] returns a new global with
1275     name [name] and initializer [init] in module [m] in the address space
1276     [addrspace]. If the named global already exists, it is renamed.
1277     See the constructor of [llvm::GlobalVariable]. *)
1278 val define_qualified_global : string -> llvalue -> int -> llmodule -> llvalue
1279
1280 (** [lookup_global name m] returns [Some g] if a global variable with name
1281     [name] exists in module [m]. If no such global exists, returns [None].
1282     See the [llvm::GlobalVariable] constructor. *)
1283 val lookup_global : string -> llmodule -> llvalue option
1284
1285 (** [delete_global gv] destroys the global variable [gv].
1286     See the method [llvm::GlobalVariable::eraseFromParent]. *)
1287 val delete_global : llvalue -> unit
1288
1289 (** [global_begin m] returns the first position in the global variable list of
1290     the module [m]. [global_begin] and [global_succ] can be used to iterate
1291     over the global list in order.
1292     See the method [llvm::Module::global_begin]. *)
1293 val global_begin : llmodule -> (llmodule, llvalue) llpos
1294
1295 (** [global_succ gv] returns the global variable list position succeeding
1296     [Before gv].
1297     See the method [llvm::Module::global_iterator::operator++]. *)
1298 val global_succ : llvalue -> (llmodule, llvalue) llpos
1299
1300 (** [iter_globals f m] applies function [f] to each of the global variables of
1301     module [m] in order. Tail recursive. *)
1302 val iter_globals : (llvalue -> unit) -> llmodule -> unit
1303
1304 (** [fold_left_globals f init m] is [f (... (f init g1) ...) gN] where
1305     [g1,...,gN] are the global variables of module [m]. Tail recursive. *)
1306 val fold_left_globals : ('a -> llvalue -> 'a) -> 'a -> llmodule -> 'a
1307
1308 (** [global_end m] returns the last position in the global variable list of the
1309     module [m]. [global_end] and [global_pred] can be used to iterate over the
1310     global list in reverse.
1311     See the method [llvm::Module::global_end]. *)
1312 val global_end : llmodule -> (llmodule, llvalue) llrev_pos
1313
1314 (** [global_pred gv] returns the global variable list position preceding
1315     [After gv].
1316     See the method [llvm::Module::global_iterator::operator--]. *)
1317 val global_pred : llvalue -> (llmodule, llvalue) llrev_pos
1318
1319 (** [rev_iter_globals f m] applies function [f] to each of the global variables
1320     of module [m] in reverse order. Tail recursive. *)
1321 val rev_iter_globals : (llvalue -> unit) -> llmodule -> unit
1322
1323 (** [fold_right_globals f m init] is [f g1 (... (f gN init) ...)] where
1324     [g1,...,gN] are the global variables of module [m]. Tail recursive. *)
1325 val fold_right_globals : (llvalue -> 'a -> 'a) -> llmodule -> 'a -> 'a
1326
1327 (** [is_global_constant gv] returns [true] if the global variabile [gv] is a
1328     constant. Returns [false] otherwise.
1329     See the method [llvm::GlobalVariable::isConstant]. *)
1330 val is_global_constant : llvalue -> bool
1331
1332 (** [set_global_constant c gv] sets the global variable [gv] to be a constant if
1333     [c] is [true] and not if [c] is [false].
1334     See the method [llvm::GlobalVariable::setConstant]. *)
1335 val set_global_constant : bool -> llvalue -> unit
1336
1337 (** [global_initializer gv] returns the initializer for the global variable
1338     [gv]. See the method [llvm::GlobalVariable::getInitializer]. *)
1339 val global_initializer : llvalue -> llvalue
1340
1341 (** [set_initializer c gv] sets the initializer for the global variable
1342     [gv] to the constant [c].
1343     See the method [llvm::GlobalVariable::setInitializer]. *)
1344 val set_initializer : llvalue -> llvalue -> unit
1345
1346 (** [remove_initializer gv] unsets the initializer for the global variable
1347     [gv].
1348     See the method [llvm::GlobalVariable::setInitializer]. *)
1349 val remove_initializer : llvalue -> unit
1350
1351 (** [is_thread_local gv] returns [true] if the global variable [gv] is
1352     thread-local and [false] otherwise.
1353     See the method [llvm::GlobalVariable::isThreadLocal]. *)
1354 val is_thread_local : llvalue -> bool
1355
1356 (** [set_thread_local c gv] sets the global variable [gv] to be thread local if
1357     [c] is [true] and not otherwise.
1358     See the method [llvm::GlobalVariable::setThreadLocal]. *)
1359 val set_thread_local : bool -> llvalue -> unit
1360
1361 (** [is_thread_local gv] returns the thread local mode of the global
1362     variable [gv].
1363     See the method [llvm::GlobalVariable::getThreadLocalMode]. *)
1364 val thread_local_mode : llvalue -> ThreadLocalMode.t
1365
1366 (** [set_thread_local c gv] sets the thread local mode of the global
1367     variable [gv].
1368     See the method [llvm::GlobalVariable::setThreadLocalMode]. *)
1369 val set_thread_local_mode : ThreadLocalMode.t -> llvalue -> unit
1370
1371 (** [is_externally_initialized gv] returns [true] if the global
1372     variable [gv] is externally initialized and [false] otherwise.
1373     See the method [llvm::GlobalVariable::isExternallyInitialized]. *)
1374 val is_externally_initialized : llvalue -> bool
1375
1376 (** [set_externally_initialized c gv] sets the global variable [gv] to be
1377     externally initialized if [c] is [true] and not otherwise.
1378     See the method [llvm::GlobalVariable::setExternallyInitialized]. *)
1379 val set_externally_initialized : bool -> llvalue -> unit
1380
1381
1382 (** {7 Operations on aliases} *)
1383
1384 (** [add_alias m t a n] inserts an alias in the module [m] with the type [t] and
1385     the aliasee [a] with the name [n].
1386     See the constructor for [llvm::GlobalAlias]. *)
1387 val add_alias : llmodule -> lltype -> llvalue -> string -> llvalue
1388
1389
1390 (** {7 Operations on functions} *)
1391
1392 (** [declare_function name ty m] returns a new function of type [ty] and
1393     with name [name] in module [m]. If such a function already exists,
1394     it is returned. If the type of the existing function differs, then a bitcast
1395     to [ty] is returned. *)
1396 val declare_function : string -> lltype -> llmodule -> llvalue
1397
1398 (** [define_function name ty m] creates a new function with name [name] and
1399     type [ty] in module [m]. If the named function already exists, it is
1400     renamed. An entry basic block is created in the function.
1401     See the constructor of [llvm::GlobalVariable]. *)
1402 val define_function : string -> lltype -> llmodule -> llvalue
1403
1404 (** [lookup_function name m] returns [Some f] if a function with name
1405     [name] exists in module [m]. If no such function exists, returns [None].
1406     See the method [llvm::Module] constructor. *)
1407 val lookup_function : string -> llmodule -> llvalue option
1408
1409 (** [delete_function f] destroys the function [f].
1410     See the method [llvm::Function::eraseFromParent]. *)
1411 val delete_function : llvalue -> unit
1412
1413 (** [function_begin m] returns the first position in the function list of the
1414     module [m]. [function_begin] and [function_succ] can be used to iterate over
1415     the function list in order.
1416     See the method [llvm::Module::begin]. *)
1417 val function_begin : llmodule -> (llmodule, llvalue) llpos
1418
1419 (** [function_succ gv] returns the function list position succeeding
1420     [Before gv].
1421     See the method [llvm::Module::iterator::operator++]. *)
1422 val function_succ : llvalue -> (llmodule, llvalue) llpos
1423
1424 (** [iter_functions f m] applies function [f] to each of the functions of module
1425     [m] in order. Tail recursive. *)
1426 val iter_functions : (llvalue -> unit) -> llmodule -> unit
1427
1428 (** [fold_left_function f init m] is [f (... (f init f1) ...) fN] where
1429     [f1,...,fN] are the functions of module [m]. Tail recursive. *)
1430 val fold_left_functions : ('a -> llvalue -> 'a) -> 'a -> llmodule -> 'a
1431
1432 (** [function_end m] returns the last position in the function list of
1433     the module [m]. [function_end] and [function_pred] can be used to iterate
1434     over the function list in reverse.
1435     See the method [llvm::Module::end]. *)
1436 val function_end : llmodule -> (llmodule, llvalue) llrev_pos
1437
1438 (** [function_pred gv] returns the function list position preceding [After gv].
1439     See the method [llvm::Module::iterator::operator--]. *)
1440 val function_pred : llvalue -> (llmodule, llvalue) llrev_pos
1441
1442 (** [rev_iter_functions f fn] applies function [f] to each of the functions of
1443     module [m] in reverse order. Tail recursive. *)
1444 val rev_iter_functions : (llvalue -> unit) -> llmodule -> unit
1445
1446 (** [fold_right_functions f m init] is [f (... (f init fN) ...) f1] where
1447     [f1,...,fN] are the functions of module [m]. Tail recursive. *)
1448 val fold_right_functions : (llvalue -> 'a -> 'a) -> llmodule -> 'a -> 'a
1449
1450 (** [is_intrinsic f] returns true if the function [f] is an intrinsic.
1451     See the method [llvm::Function::isIntrinsic]. *)
1452 val is_intrinsic : llvalue -> bool
1453
1454 (** [function_call_conv f] returns the calling convention of the function [f].
1455     See the method [llvm::Function::getCallingConv]. *)
1456 val function_call_conv : llvalue -> int
1457
1458 (** [set_function_call_conv cc f] sets the calling convention of the function
1459     [f] to the calling convention numbered [cc].
1460     See the method [llvm::Function::setCallingConv]. *)
1461 val set_function_call_conv : int -> llvalue -> unit
1462
1463 (** [gc f] returns [Some name] if the function [f] has a garbage
1464     collection algorithm specified and [None] otherwise.
1465     See the method [llvm::Function::getGC]. *)
1466 val gc : llvalue -> string option
1467
1468 (** [set_gc gc f] sets the collection algorithm for the function [f] to
1469     [gc]. See the method [llvm::Function::setGC]. *)
1470 val set_gc : string option -> llvalue -> unit
1471
1472 (** [add_function_attr f a] adds attribute [a] to the return type of function
1473     [f]. *)
1474 val add_function_attr : llvalue -> Attribute.t -> unit
1475
1476 (** [add_target_dependent_function_attr f a] adds target-dependent attribute
1477     [a] to function [f]. *)
1478 val add_target_dependent_function_attr : llvalue -> string -> string -> unit
1479
1480 (** [function_attr f] returns the function attribute for the function [f].
1481     See the method [llvm::Function::getAttributes] *)
1482 val function_attr : llvalue -> Attribute.t list
1483
1484 (** [remove_function_attr f a] removes attribute [a] from the return type of
1485     function [f]. *)
1486 val remove_function_attr : llvalue -> Attribute.t -> unit
1487
1488
1489 (** {7 Operations on params} *)
1490
1491 (** [params f] returns the parameters of function [f].
1492     See the method [llvm::Function::getArgumentList]. *)
1493 val params : llvalue -> llvalue array
1494
1495 (** [param f n] returns the [n]th parameter of function [f].
1496     See the method [llvm::Function::getArgumentList]. *)
1497 val param : llvalue -> int -> llvalue
1498
1499 (** [param_attr p] returns the attributes of parameter [p].
1500     See the methods [llvm::Function::getAttributes] and
1501     [llvm::Attributes::getParamAttributes] *)
1502 val param_attr : llvalue -> Attribute.t list
1503
1504 (** [param_parent p] returns the parent function that owns the parameter.
1505     See the method [llvm::Argument::getParent]. *)
1506 val param_parent : llvalue -> llvalue
1507
1508 (** [param_begin f] returns the first position in the parameter list of the
1509     function [f]. [param_begin] and [param_succ] can be used to iterate over
1510     the parameter list in order.
1511     See the method [llvm::Function::arg_begin]. *)
1512 val param_begin : llvalue -> (llvalue, llvalue) llpos
1513
1514 (** [param_succ bb] returns the parameter list position succeeding
1515     [Before bb].
1516     See the method [llvm::Function::arg_iterator::operator++]. *)
1517 val param_succ : llvalue -> (llvalue, llvalue) llpos
1518
1519 (** [iter_params f fn] applies function [f] to each of the parameters
1520     of function [fn] in order. Tail recursive. *)
1521 val iter_params : (llvalue -> unit) -> llvalue -> unit
1522
1523 (** [fold_left_params f init fn] is [f (... (f init b1) ...) bN] where
1524     [b1,...,bN] are the parameters of function [fn]. Tail recursive. *)
1525 val fold_left_params : ('a -> llvalue -> 'a) -> 'a -> llvalue -> 'a
1526
1527 (** [param_end f] returns the last position in the parameter list of
1528     the function [f]. [param_end] and [param_pred] can be used to iterate
1529     over the parameter list in reverse.
1530     See the method [llvm::Function::arg_end]. *)
1531 val param_end : llvalue -> (llvalue, llvalue) llrev_pos
1532
1533 (** [param_pred gv] returns the function list position preceding [After gv].
1534     See the method [llvm::Function::arg_iterator::operator--]. *)
1535 val param_pred : llvalue -> (llvalue, llvalue) llrev_pos
1536
1537 (** [rev_iter_params f fn] applies function [f] to each of the parameters
1538     of function [fn] in reverse order. Tail recursive. *)
1539 val rev_iter_params : (llvalue -> unit) -> llvalue -> unit
1540
1541 (** [fold_right_params f fn init] is [f (... (f init bN) ...) b1] where
1542     [b1,...,bN] are the parameters of function [fn]. Tail recursive. *)
1543 val fold_right_params : (llvalue -> 'a -> 'a) -> llvalue -> 'a -> 'a
1544
1545 (** [add_param p a] adds attribute [a] to parameter [p]. *)
1546 val add_param_attr : llvalue -> Attribute.t -> unit
1547
1548 (** [remove_param_attr p a] removes attribute [a] from parameter [p]. *)
1549 val remove_param_attr : llvalue -> Attribute.t -> unit
1550
1551 (** [set_param_alignment p a] set the alignment of parameter [p] to [a]. *)
1552 val set_param_alignment : llvalue -> int -> unit
1553
1554
1555 (** {7 Operations on basic blocks} *)
1556
1557 (** [basic_blocks fn] returns the basic blocks of the function [f].
1558     See the method [llvm::Function::getBasicBlockList]. *)
1559 val basic_blocks : llvalue -> llbasicblock array
1560
1561 (** [entry_block fn] returns the entry basic block of the function [f].
1562     See the method [llvm::Function::getEntryBlock]. *)
1563 val entry_block : llvalue -> llbasicblock
1564
1565 (** [delete_block bb] deletes the basic block [bb].
1566     See the method [llvm::BasicBlock::eraseFromParent]. *)
1567 val delete_block : llbasicblock -> unit
1568
1569 (** [remove_block bb] removes the basic block [bb] from its parent function.
1570     See the method [llvm::BasicBlock::removeFromParent]. *)
1571 val remove_block : llbasicblock -> unit
1572
1573 (** [move_block_before pos bb] moves the basic block [bb] before [pos].
1574     See the method [llvm::BasicBlock::moveBefore]. *)
1575 val move_block_before : llbasicblock -> llbasicblock -> unit
1576
1577 (** [move_block_after pos bb] moves the basic block [bb] after [pos].
1578     See the method [llvm::BasicBlock::moveAfter]. *)
1579 val move_block_after : llbasicblock -> llbasicblock -> unit
1580
1581 (** [append_block c name f] creates a new basic block named [name] at the end of
1582     function [f] in the context [c].
1583     See the constructor of [llvm::BasicBlock]. *)
1584 val append_block : llcontext -> string -> llvalue -> llbasicblock
1585
1586 (** [insert_block c name bb] creates a new basic block named [name] before the
1587     basic block [bb] in the context [c].
1588     See the constructor of [llvm::BasicBlock]. *)
1589 val insert_block : llcontext -> string -> llbasicblock -> llbasicblock
1590
1591 (** [block_parent bb] returns the parent function that owns the basic block.
1592     See the method [llvm::BasicBlock::getParent]. *)
1593 val block_parent : llbasicblock -> llvalue
1594
1595 (** [block_begin f] returns the first position in the basic block list of the
1596     function [f]. [block_begin] and [block_succ] can be used to iterate over
1597     the basic block list in order.
1598     See the method [llvm::Function::begin]. *)
1599 val block_begin : llvalue -> (llvalue, llbasicblock) llpos
1600
1601 (** [block_succ bb] returns the basic block list position succeeding
1602     [Before bb].
1603     See the method [llvm::Function::iterator::operator++]. *)
1604 val block_succ : llbasicblock -> (llvalue, llbasicblock) llpos
1605
1606 (** [iter_blocks f fn] applies function [f] to each of the basic blocks
1607     of function [fn] in order. Tail recursive. *)
1608 val iter_blocks : (llbasicblock -> unit) -> llvalue -> unit
1609
1610 (** [fold_left_blocks f init fn] is [f (... (f init b1) ...) bN] where
1611     [b1,...,bN] are the basic blocks of function [fn]. Tail recursive. *)
1612 val fold_left_blocks : ('a -> llbasicblock -> 'a) -> 'a -> llvalue -> 'a
1613
1614 (** [block_end f] returns the last position in the basic block list of
1615     the function [f]. [block_end] and [block_pred] can be used to iterate
1616     over the basic block list in reverse.
1617     See the method [llvm::Function::end]. *)
1618 val block_end : llvalue -> (llvalue, llbasicblock) llrev_pos
1619
1620 (** [block_pred bb] returns the basic block list position preceding [After bb].
1621     See the method [llvm::Function::iterator::operator--]. *)
1622 val block_pred : llbasicblock -> (llvalue, llbasicblock) llrev_pos
1623
1624 (** [block_terminator bb] returns the terminator of the basic block [bb]. *)
1625 val block_terminator : llbasicblock -> llvalue option
1626
1627 (** [rev_iter_blocks f fn] applies function [f] to each of the basic blocks
1628     of function [fn] in reverse order. Tail recursive. *)
1629 val rev_iter_blocks : (llbasicblock -> unit) -> llvalue -> unit
1630
1631 (** [fold_right_blocks f fn init] is [f (... (f init bN) ...) b1] where
1632     [b1,...,bN] are the basic blocks of function [fn]. Tail recursive. *)
1633 val fold_right_blocks : (llbasicblock -> 'a -> 'a) -> llvalue -> 'a -> 'a
1634
1635 (** [value_of_block bb] losslessly casts [bb] to an [llvalue]. *)
1636 val value_of_block : llbasicblock -> llvalue
1637
1638 (** [value_is_block v] returns [true] if the value [v] is a basic block and
1639     [false] otherwise.
1640     Similar to [llvm::isa<BasicBlock>]. *)
1641 val value_is_block : llvalue -> bool
1642
1643 (** [block_of_value v] losslessly casts [v] to an [llbasicblock]. *)
1644 val block_of_value : llvalue -> llbasicblock
1645
1646
1647 (** {7 Operations on instructions} *)
1648
1649 (** [instr_parent i] is the enclosing basic block of the instruction [i].
1650     See the method [llvm::Instruction::getParent]. *)
1651 val instr_parent : llvalue -> llbasicblock
1652
1653 (** [delete_instruction i] deletes the instruction [i].
1654  * See the method [llvm::Instruction::eraseFromParent]. *)
1655 val delete_instruction : llvalue -> unit
1656
1657 (** [instr_begin bb] returns the first position in the instruction list of the
1658     basic block [bb]. [instr_begin] and [instr_succ] can be used to iterate over
1659     the instruction list in order.
1660     See the method [llvm::BasicBlock::begin]. *)
1661 val instr_begin : llbasicblock -> (llbasicblock, llvalue) llpos
1662
1663 (** [instr_succ i] returns the instruction list position succeeding [Before i].
1664     See the method [llvm::BasicBlock::iterator::operator++]. *)
1665 val instr_succ : llvalue -> (llbasicblock, llvalue) llpos
1666
1667 (** [iter_instrs f bb] applies function [f] to each of the instructions of basic
1668     block [bb] in order. Tail recursive. *)
1669 val iter_instrs: (llvalue -> unit) -> llbasicblock -> unit
1670
1671 (** [fold_left_instrs f init bb] is [f (... (f init g1) ...) gN] where
1672     [g1,...,gN] are the instructions of basic block [bb]. Tail recursive. *)
1673 val fold_left_instrs: ('a -> llvalue -> 'a) -> 'a -> llbasicblock -> 'a
1674
1675 (** [instr_end bb] returns the last position in the instruction list of the
1676     basic block [bb]. [instr_end] and [instr_pred] can be used to iterate over
1677     the instruction list in reverse.
1678     See the method [llvm::BasicBlock::end]. *)
1679 val instr_end : llbasicblock -> (llbasicblock, llvalue) llrev_pos
1680
1681 (** [instr_pred i] returns the instruction list position preceding [After i].
1682     See the method [llvm::BasicBlock::iterator::operator--]. *)
1683 val instr_pred : llvalue -> (llbasicblock, llvalue) llrev_pos
1684
1685 (** [fold_right_instrs f bb init] is [f (... (f init fN) ...) f1] where
1686     [f1,...,fN] are the instructions of basic block [bb]. Tail recursive. *)
1687 val fold_right_instrs: (llvalue -> 'a -> 'a) -> llbasicblock -> 'a -> 'a
1688
1689 (** [inst_opcode i] returns the [Opcode.t] corresponding to instruction [i],
1690     or [Opcode.Invalid] if [i] is not an instruction. *)
1691 val instr_opcode : llvalue -> Opcode.t
1692
1693 (** [icmp_predicate i] returns the [Icmp.t] corresponding to an [icmp]
1694     instruction [i]. *)
1695 val icmp_predicate : llvalue -> Icmp.t option
1696
1697
1698 (** {7 Operations on call sites} *)
1699
1700 (** [instruction_call_conv ci] is the calling convention for the call or invoke
1701     instruction [ci], which may be one of the values from the module
1702     {!CallConv}. See the method [llvm::CallInst::getCallingConv] and
1703     [llvm::InvokeInst::getCallingConv]. *)
1704 val instruction_call_conv: llvalue -> int
1705
1706 (** [set_instruction_call_conv cc ci] sets the calling convention for the call
1707     or invoke instruction [ci] to the integer [cc], which can be one of the
1708     values from the module {!CallConv}.
1709     See the method [llvm::CallInst::setCallingConv]
1710     and [llvm::InvokeInst::setCallingConv]. *)
1711 val set_instruction_call_conv: int -> llvalue -> unit
1712
1713 (** [add_instruction_param_attr ci i a] adds attribute [a] to the [i]th
1714     parameter of the call or invoke instruction [ci]. [i]=0 denotes the return
1715     value. *)
1716 val add_instruction_param_attr : llvalue -> int -> Attribute.t -> unit
1717
1718 (** [remove_instruction_param_attr ci i a] removes attribute [a] from the
1719     [i]th parameter of the call or invoke instruction [ci]. [i]=0 denotes the
1720     return value. *)
1721 val remove_instruction_param_attr : llvalue -> int -> Attribute.t -> unit
1722
1723
1724 (** {7 Operations on call instructions (only)} *)
1725
1726 (** [is_tail_call ci] is [true] if the call instruction [ci] is flagged as
1727     eligible for tail call optimization, [false] otherwise.
1728     See the method [llvm::CallInst::isTailCall]. *)
1729 val is_tail_call : llvalue -> bool
1730
1731 (** [set_tail_call tc ci] flags the call instruction [ci] as eligible for tail
1732     call optimization if [tc] is [true], clears otherwise.
1733     See the method [llvm::CallInst::setTailCall]. *)
1734 val set_tail_call : bool -> llvalue -> unit
1735
1736
1737 (** {7 Operations on load/store instructions (only)} *)
1738
1739 (** [is_volatile i] is [true] if the load or store instruction [i] is marked
1740     as volatile.
1741     See the methods [llvm::LoadInst::isVolatile] and
1742     [llvm::StoreInst::isVolatile]. *)
1743 val is_volatile : llvalue -> bool
1744
1745 (** [set_volatile v i] marks the load or store instruction [i] as volatile
1746     if [v] is [true], unmarks otherwise.
1747     See the methods [llvm::LoadInst::setVolatile] and
1748     [llvm::StoreInst::setVolatile]. *)
1749 val set_volatile : bool -> llvalue -> unit
1750
1751
1752 (** {7 Operations on phi nodes} *)
1753
1754 (** [add_incoming (v, bb) pn] adds the value [v] to the phi node [pn] for use
1755     with branches from [bb]. See the method [llvm::PHINode::addIncoming]. *)
1756 val add_incoming : (llvalue * llbasicblock) -> llvalue -> unit
1757
1758 (** [incoming pn] returns the list of value-block pairs for phi node [pn].
1759     See the method [llvm::PHINode::getIncomingValue]. *)
1760 val incoming : llvalue -> (llvalue * llbasicblock) list
1761
1762
1763
1764 (** {6 Instruction builders} *)
1765
1766 (** [builder context] creates an instruction builder with no position in
1767     the context [context]. It is invalid to use this builder until its position
1768     is set with {!position_before} or {!position_at_end}. See the constructor
1769     for [llvm::LLVMBuilder]. *)
1770 val builder : llcontext -> llbuilder
1771
1772 (** [builder_at ip] creates an instruction builder positioned at [ip].
1773     See the constructor for [llvm::LLVMBuilder]. *)
1774 val builder_at : llcontext -> (llbasicblock, llvalue) llpos -> llbuilder
1775
1776 (** [builder_before ins] creates an instruction builder positioned before the
1777     instruction [isn]. See the constructor for [llvm::LLVMBuilder]. *)
1778 val builder_before : llcontext -> llvalue -> llbuilder
1779
1780 (** [builder_at_end bb] creates an instruction builder positioned at the end of
1781     the basic block [bb]. See the constructor for [llvm::LLVMBuilder]. *)
1782 val builder_at_end : llcontext -> llbasicblock -> llbuilder
1783
1784 (** [position_builder ip bb] moves the instruction builder [bb] to the position
1785     [ip].
1786     See the constructor for [llvm::LLVMBuilder]. *)
1787 val position_builder : (llbasicblock, llvalue) llpos -> llbuilder -> unit
1788
1789 (** [position_before ins b] moves the instruction builder [b] to before the
1790     instruction [isn]. See the method [llvm::LLVMBuilder::SetInsertPoint]. *)
1791 val position_before : llvalue -> llbuilder -> unit
1792
1793 (** [position_at_end bb b] moves the instruction builder [b] to the end of the
1794     basic block [bb]. See the method [llvm::LLVMBuilder::SetInsertPoint]. *)
1795 val position_at_end : llbasicblock -> llbuilder -> unit
1796
1797 (** [insertion_block b] returns the basic block that the builder [b] is
1798     positioned to insert into. Raises [Not_Found] if the instruction builder is
1799     uninitialized.
1800     See the method [llvm::LLVMBuilder::GetInsertBlock]. *)
1801 val insertion_block : llbuilder -> llbasicblock
1802
1803 (** [insert_into_builder i name b] inserts the specified instruction [i] at the
1804     position specified by the instruction builder [b].
1805     See the method [llvm::LLVMBuilder::Insert]. *)
1806 val insert_into_builder : llvalue -> string -> llbuilder -> unit
1807
1808
1809 (** {7 Metadata} *)
1810
1811 (** [set_current_debug_location b md] sets the current debug location [md] in
1812     the builder [b].
1813     See the method [llvm::IRBuilder::SetDebugLocation]. *)
1814 val set_current_debug_location : llbuilder -> llvalue -> unit
1815
1816 (** [clear_current_debug_location b] clears the current debug location in the
1817     builder [b]. *)
1818 val clear_current_debug_location : llbuilder -> unit
1819
1820 (** [current_debug_location b] returns the current debug location, or None
1821     if none is currently set.
1822     See the method [llvm::IRBuilder::GetDebugLocation]. *)
1823 val current_debug_location : llbuilder -> llvalue option
1824
1825 (** [set_inst_debug_location b i] sets the current debug location of the builder
1826     [b] to the instruction [i].
1827     See the method [llvm::IRBuilder::SetInstDebugLocation]. *)
1828 val set_inst_debug_location : llbuilder -> llvalue -> unit
1829
1830
1831 (** {7 Terminators} *)
1832
1833 (** [build_ret_void b] creates a
1834     [ret void]
1835     instruction at the position specified by the instruction builder [b].
1836     See the method [llvm::LLVMBuilder::CreateRetVoid]. *)
1837 val build_ret_void : llbuilder -> llvalue
1838
1839 (** [build_ret v b] creates a
1840     [ret %v]
1841     instruction at the position specified by the instruction builder [b].
1842     See the method [llvm::LLVMBuilder::CreateRet]. *)
1843 val build_ret : llvalue -> llbuilder -> llvalue
1844
1845 (** [build_aggregate_ret vs b] creates a
1846     [ret {...} { %v1, %v2, ... } ]
1847     instruction at the position specified by the instruction builder [b].
1848     See the method [llvm::LLVMBuilder::CreateAggregateRet]. *)
1849 val build_aggregate_ret : llvalue array -> llbuilder -> llvalue
1850
1851 (** [build_br bb b] creates a
1852     [br %bb]
1853     instruction at the position specified by the instruction builder [b].
1854     See the method [llvm::LLVMBuilder::CreateBr]. *)
1855 val build_br : llbasicblock -> llbuilder -> llvalue
1856
1857 (** [build_cond_br cond tbb fbb b] creates a
1858     [br %cond, %tbb, %fbb]
1859     instruction at the position specified by the instruction builder [b].
1860     See the method [llvm::LLVMBuilder::CreateCondBr]. *)
1861 val build_cond_br : llvalue -> llbasicblock -> llbasicblock -> llbuilder ->
1862                          llvalue
1863
1864 (** [build_switch case elsebb count b] creates an empty
1865     [switch %case, %elsebb]
1866     instruction at the position specified by the instruction builder [b] with
1867     space reserved for [count] cases.
1868     See the method [llvm::LLVMBuilder::CreateSwitch]. *)
1869 val build_switch : llvalue -> llbasicblock -> int -> llbuilder -> llvalue
1870
1871 (** [build_malloc ty name b] creates an [malloc]
1872     instruction at the position specified by the instruction builder [b].
1873     See the method [llvm::CallInst::CreateMalloc]. *)
1874 val build_malloc : lltype -> string -> llbuilder -> llvalue
1875
1876 (** [build_array_malloc ty val name b] creates an [array malloc]
1877     instruction at the position specified by the instruction builder [b].
1878     See the method [llvm::CallInst::CreateArrayMalloc]. *)
1879 val build_array_malloc : lltype -> llvalue -> string -> llbuilder -> llvalue
1880
1881 (** [build_free p b] creates a [free]
1882     instruction at the position specified by the instruction builder [b].
1883     See the method [llvm::LLVMBuilder::CreateFree]. *)
1884 val build_free : llvalue -> llbuilder -> llvalue
1885
1886 (** [add_case sw onval bb] causes switch instruction [sw] to branch to [bb]
1887     when its input matches the constant [onval].
1888     See the method [llvm::SwitchInst::addCase]. **)
1889 val add_case : llvalue -> llvalue -> llbasicblock -> unit
1890
1891 (** [switch_default_dest sw] returns the default destination of the [switch]
1892     instruction.
1893     See the method [llvm:;SwitchInst::getDefaultDest]. **)
1894 val switch_default_dest : llvalue -> llbasicblock
1895
1896 (** [build_indirect_br addr count b] creates a
1897     [indirectbr %addr]
1898     instruction at the position specified by the instruction builder [b] with
1899     space reserved for [count] destinations.
1900     See the method [llvm::LLVMBuilder::CreateIndirectBr]. *)
1901 val build_indirect_br : llvalue -> int -> llbuilder -> llvalue
1902
1903 (** [add_destination br bb] adds the basic block [bb] as a possible branch
1904     location for the indirectbr instruction [br].
1905     See the method [llvm::IndirectBrInst::addDestination]. **)
1906 val add_destination : llvalue -> llbasicblock -> unit
1907
1908 (** [build_invoke fn args tobb unwindbb name b] creates an
1909     [%name = invoke %fn(args) to %tobb unwind %unwindbb]
1910     instruction at the position specified by the instruction builder [b].
1911     See the method [llvm::LLVMBuilder::CreateInvoke]. *)
1912 val build_invoke : llvalue -> llvalue array -> llbasicblock ->
1913                         llbasicblock -> string -> llbuilder -> llvalue
1914
1915 (** [build_landingpad ty persfn numclauses name b] creates an
1916     [landingpad]
1917     instruction at the position specified by the instruction builder [b].
1918     See the method [llvm::LLVMBuilder::CreateLandingPad]. *)
1919 val build_landingpad : lltype -> llvalue -> int -> string -> llbuilder ->
1920                          llvalue
1921
1922 (** [set_cleanup lp] sets the cleanup flag in the [landingpad]instruction.
1923     See the method [llvm::LandingPadInst::setCleanup]. *)
1924 val set_cleanup : llvalue -> bool -> unit
1925
1926 (** [add_clause lp clause] adds the clause to the [landingpad]instruction.
1927     See the method [llvm::LandingPadInst::addClause]. *)
1928 val add_clause : llvalue -> llvalue -> unit
1929
1930 (** [build_resume exn b] builds a [resume exn] instruction
1931     at the position specified by the instruction builder [b].
1932     See the method [llvm::LLVMBuilder::CreateResume] *)
1933 val build_resume : llvalue -> llbuilder -> llvalue
1934
1935 (** [build_unreachable b] creates an
1936     [unreachable]
1937     instruction at the position specified by the instruction builder [b].
1938     See the method [llvm::LLVMBuilder::CreateUnwind]. *)
1939 val build_unreachable : llbuilder -> llvalue
1940
1941
1942 (** {7 Arithmetic} *)
1943
1944 (** [build_add x y name b] creates a
1945     [%name = add %x, %y]
1946     instruction at the position specified by the instruction builder [b].
1947     See the method [llvm::LLVMBuilder::CreateAdd]. *)
1948 val build_add : llvalue -> llvalue -> string -> llbuilder -> llvalue
1949
1950 (** [build_nsw_add x y name b] creates a
1951     [%name = nsw add %x, %y]
1952     instruction at the position specified by the instruction builder [b].
1953     See the method [llvm::LLVMBuilder::CreateNSWAdd]. *)
1954 val build_nsw_add : llvalue -> llvalue -> string -> llbuilder -> llvalue
1955
1956 (** [build_nuw_add x y name b] creates a
1957     [%name = nuw add %x, %y]
1958     instruction at the position specified by the instruction builder [b].
1959     See the method [llvm::LLVMBuilder::CreateNUWAdd]. *)
1960 val build_nuw_add : llvalue -> llvalue -> string -> llbuilder -> llvalue
1961
1962 (** [build_fadd x y name b] creates a
1963     [%name = fadd %x, %y]
1964     instruction at the position specified by the instruction builder [b].
1965     See the method [llvm::LLVMBuilder::CreateFAdd]. *)
1966 val build_fadd : llvalue -> llvalue -> string -> llbuilder -> llvalue
1967
1968 (** [build_sub x y name b] creates a
1969     [%name = sub %x, %y]
1970     instruction at the position specified by the instruction builder [b].
1971     See the method [llvm::LLVMBuilder::CreateSub]. *)
1972 val build_sub : llvalue -> llvalue -> string -> llbuilder -> llvalue
1973
1974 (** [build_nsw_sub x y name b] creates a
1975     [%name = nsw sub %x, %y]
1976     instruction at the position specified by the instruction builder [b].
1977     See the method [llvm::LLVMBuilder::CreateNSWSub]. *)
1978 val build_nsw_sub : llvalue -> llvalue -> string -> llbuilder -> llvalue
1979
1980 (** [build_nuw_sub x y name b] creates a
1981     [%name = nuw sub %x, %y]
1982     instruction at the position specified by the instruction builder [b].
1983     See the method [llvm::LLVMBuilder::CreateNUWSub]. *)
1984 val build_nuw_sub : llvalue -> llvalue -> string -> llbuilder -> llvalue
1985
1986 (** [build_fsub x y name b] creates a
1987     [%name = fsub %x, %y]
1988     instruction at the position specified by the instruction builder [b].
1989     See the method [llvm::LLVMBuilder::CreateFSub]. *)
1990 val build_fsub : llvalue -> llvalue -> string -> llbuilder -> llvalue
1991
1992 (** [build_mul x y name b] creates a
1993     [%name = mul %x, %y]
1994     instruction at the position specified by the instruction builder [b].
1995     See the method [llvm::LLVMBuilder::CreateMul]. *)
1996 val build_mul : llvalue -> llvalue -> string -> llbuilder -> llvalue
1997
1998 (** [build_nsw_mul x y name b] creates a
1999     [%name = nsw mul %x, %y]
2000     instruction at the position specified by the instruction builder [b].
2001     See the method [llvm::LLVMBuilder::CreateNSWMul]. *)
2002 val build_nsw_mul : llvalue -> llvalue -> string -> llbuilder -> llvalue
2003
2004 (** [build_nuw_mul x y name b] creates a
2005     [%name = nuw mul %x, %y]
2006     instruction at the position specified by the instruction builder [b].
2007     See the method [llvm::LLVMBuilder::CreateNUWMul]. *)
2008 val build_nuw_mul : llvalue -> llvalue -> string -> llbuilder -> llvalue
2009
2010 (** [build_fmul x y name b] creates a
2011     [%name = fmul %x, %y]
2012     instruction at the position specified by the instruction builder [b].
2013     See the method [llvm::LLVMBuilder::CreateFMul]. *)
2014 val build_fmul : llvalue -> llvalue -> string -> llbuilder -> llvalue
2015
2016 (** [build_udiv x y name b] creates a
2017     [%name = udiv %x, %y]
2018     instruction at the position specified by the instruction builder [b].
2019     See the method [llvm::LLVMBuilder::CreateUDiv]. *)
2020 val build_udiv : llvalue -> llvalue -> string -> llbuilder -> llvalue
2021
2022 (** [build_sdiv x y name b] creates a
2023     [%name = sdiv %x, %y]
2024     instruction at the position specified by the instruction builder [b].
2025     See the method [llvm::LLVMBuilder::CreateSDiv]. *)
2026 val build_sdiv : llvalue -> llvalue -> string -> llbuilder -> llvalue
2027
2028 (** [build_exact_sdiv x y name b] creates a
2029     [%name = exact sdiv %x, %y]
2030     instruction at the position specified by the instruction builder [b].
2031     See the method [llvm::LLVMBuilder::CreateExactSDiv]. *)
2032 val build_exact_sdiv : llvalue -> llvalue -> string -> llbuilder -> llvalue
2033
2034 (** [build_fdiv x y name b] creates a
2035     [%name = fdiv %x, %y]
2036     instruction at the position specified by the instruction builder [b].
2037     See the method [llvm::LLVMBuilder::CreateFDiv]. *)
2038 val build_fdiv : llvalue -> llvalue -> string -> llbuilder -> llvalue
2039
2040 (** [build_urem x y name b] creates a
2041     [%name = urem %x, %y]
2042     instruction at the position specified by the instruction builder [b].
2043     See the method [llvm::LLVMBuilder::CreateURem]. *)
2044 val build_urem : llvalue -> llvalue -> string -> llbuilder -> llvalue
2045
2046 (** [build_SRem x y name b] creates a
2047     [%name = srem %x, %y]
2048     instruction at the position specified by the instruction builder [b].
2049     See the method [llvm::LLVMBuilder::CreateSRem]. *)
2050 val build_srem : llvalue -> llvalue -> string -> llbuilder -> llvalue
2051
2052 (** [build_frem x y name b] creates a
2053     [%name = frem %x, %y]
2054     instruction at the position specified by the instruction builder [b].
2055     See the method [llvm::LLVMBuilder::CreateFRem]. *)
2056 val build_frem : llvalue -> llvalue -> string -> llbuilder -> llvalue
2057
2058 (** [build_shl x y name b] creates a
2059     [%name = shl %x, %y]
2060     instruction at the position specified by the instruction builder [b].
2061     See the method [llvm::LLVMBuilder::CreateShl]. *)
2062 val build_shl : llvalue -> llvalue -> string -> llbuilder -> llvalue
2063
2064 (** [build_lshr x y name b] creates a
2065     [%name = lshr %x, %y]
2066     instruction at the position specified by the instruction builder [b].
2067     See the method [llvm::LLVMBuilder::CreateLShr]. *)
2068 val build_lshr : llvalue -> llvalue -> string -> llbuilder -> llvalue
2069
2070 (** [build_ashr x y name b] creates a
2071     [%name = ashr %x, %y]
2072     instruction at the position specified by the instruction builder [b].
2073     See the method [llvm::LLVMBuilder::CreateAShr]. *)
2074 val build_ashr : llvalue -> llvalue -> string -> llbuilder -> llvalue
2075
2076 (** [build_and x y name b] creates a
2077     [%name = and %x, %y]
2078     instruction at the position specified by the instruction builder [b].
2079     See the method [llvm::LLVMBuilder::CreateAnd]. *)
2080 val build_and : llvalue -> llvalue -> string -> llbuilder -> llvalue
2081
2082 (** [build_or x y name b] creates a
2083     [%name = or %x, %y]
2084     instruction at the position specified by the instruction builder [b].
2085     See the method [llvm::LLVMBuilder::CreateOr]. *)
2086 val build_or : llvalue -> llvalue -> string -> llbuilder -> llvalue
2087
2088 (** [build_xor x y name b] creates a
2089     [%name = xor %x, %y]
2090     instruction at the position specified by the instruction builder [b].
2091     See the method [llvm::LLVMBuilder::CreateXor]. *)
2092 val build_xor : llvalue -> llvalue -> string -> llbuilder -> llvalue
2093
2094 (** [build_neg x name b] creates a
2095     [%name = sub 0, %x]
2096     instruction at the position specified by the instruction builder [b].
2097     [-0.0] is used for floating point types to compute the correct sign.
2098     See the method [llvm::LLVMBuilder::CreateNeg]. *)
2099 val build_neg : llvalue -> string -> llbuilder -> llvalue
2100
2101 (** [build_nsw_neg x name b] creates a
2102     [%name = nsw sub 0, %x]
2103     instruction at the position specified by the instruction builder [b].
2104     [-0.0] is used for floating point types to compute the correct sign.
2105     See the method [llvm::LLVMBuilder::CreateNeg]. *)
2106 val build_nsw_neg : llvalue -> string -> llbuilder -> llvalue
2107
2108 (** [build_nuw_neg x name b] creates a
2109     [%name = nuw sub 0, %x]
2110     instruction at the position specified by the instruction builder [b].
2111     [-0.0] is used for floating point types to compute the correct sign.
2112     See the method [llvm::LLVMBuilder::CreateNeg]. *)
2113 val build_nuw_neg : llvalue -> string -> llbuilder -> llvalue
2114
2115 (** [build_fneg x name b] creates a
2116     [%name = fsub 0, %x]
2117     instruction at the position specified by the instruction builder [b].
2118     [-0.0] is used for floating point types to compute the correct sign.
2119     See the method [llvm::LLVMBuilder::CreateFNeg]. *)
2120 val build_fneg : llvalue -> string -> llbuilder -> llvalue
2121
2122 (** [build_xor x name b] creates a
2123     [%name = xor %x, -1]
2124     instruction at the position specified by the instruction builder [b].
2125     [-1] is the correct "all ones" value for the type of [x].
2126     See the method [llvm::LLVMBuilder::CreateXor]. *)
2127 val build_not : llvalue -> string -> llbuilder -> llvalue
2128
2129
2130 (** {7 Memory} *)
2131
2132 (** [build_alloca ty name b] creates a
2133     [%name = alloca %ty]
2134     instruction at the position specified by the instruction builder [b].
2135     See the method [llvm::LLVMBuilder::CreateAlloca]. *)
2136 val build_alloca : lltype -> string -> llbuilder -> llvalue
2137
2138 (** [build_array_alloca ty n name b] creates a
2139     [%name = alloca %ty, %n]
2140     instruction at the position specified by the instruction builder [b].
2141     See the method [llvm::LLVMBuilder::CreateAlloca]. *)
2142 val build_array_alloca : lltype -> llvalue -> string -> llbuilder ->
2143                               llvalue
2144
2145 (** [build_load v name b] creates a
2146     [%name = load %v]
2147     instruction at the position specified by the instruction builder [b].
2148     See the method [llvm::LLVMBuilder::CreateLoad]. *)
2149 val build_load : llvalue -> string -> llbuilder -> llvalue
2150
2151 (** [build_store v p b] creates a
2152     [store %v, %p]
2153     instruction at the position specified by the instruction builder [b].
2154     See the method [llvm::LLVMBuilder::CreateStore]. *)
2155 val build_store : llvalue -> llvalue -> llbuilder -> llvalue
2156
2157 (** [build_atomicrmw op ptr val o st b] creates an [atomicrmw] instruction with
2158     operation [op] performed on pointer [ptr] and value [val] with ordering [o]
2159     and singlethread flag set to [st] at the position specified by
2160     the instruction builder [b].
2161     See the method [llvm::IRBuilder::CreateAtomicRMW]. *)
2162 val build_atomicrmw : AtomicRMWBinOp.t -> llvalue -> llvalue ->
2163                       AtomicOrdering.t -> bool -> string -> llbuilder -> llvalue
2164
2165 (** [build_gep p indices name b] creates a
2166     [%name = getelementptr %p, indices...]
2167     instruction at the position specified by the instruction builder [b].
2168     See the method [llvm::LLVMBuilder::CreateGetElementPtr]. *)
2169 val build_gep : llvalue -> llvalue array -> string -> llbuilder -> llvalue
2170
2171 (** [build_in_bounds_gep p indices name b] creates a
2172     [%name = gelementptr inbounds %p, indices...]
2173     instruction at the position specified by the instruction builder [b].
2174     See the method [llvm::LLVMBuilder::CreateInBoundsGetElementPtr]. *)
2175 val build_in_bounds_gep : llvalue -> llvalue array -> string -> llbuilder ->
2176                                llvalue
2177
2178 (** [build_struct_gep p idx name b] creates a
2179     [%name = getelementptr %p, 0, idx]
2180     instruction at the position specified by the instruction builder [b].
2181     See the method [llvm::LLVMBuilder::CreateStructGetElementPtr]. *)
2182 val build_struct_gep : llvalue -> int -> string -> llbuilder ->
2183                             llvalue
2184
2185 (** [build_global_string str name b] creates a series of instructions that adds
2186     a global string at the position specified by the instruction builder [b].
2187     See the method [llvm::LLVMBuilder::CreateGlobalString]. *)
2188 val build_global_string : string -> string -> llbuilder -> llvalue
2189
2190 (** [build_global_stringptr str name b] creates a series of instructions that
2191     adds a global string pointer at the position specified by the instruction
2192     builder [b].
2193     See the method [llvm::LLVMBuilder::CreateGlobalStringPtr]. *)
2194 val build_global_stringptr : string -> string -> llbuilder -> llvalue
2195
2196
2197 (** {7 Casts} *)
2198
2199 (** [build_trunc v ty name b] creates a
2200     [%name = trunc %p to %ty]
2201     instruction at the position specified by the instruction builder [b].
2202     See the method [llvm::LLVMBuilder::CreateTrunc]. *)
2203 val build_trunc : llvalue -> lltype -> string -> llbuilder -> llvalue
2204
2205 (** [build_zext v ty name b] creates a
2206     [%name = zext %p to %ty]
2207     instruction at the position specified by the instruction builder [b].
2208     See the method [llvm::LLVMBuilder::CreateZExt]. *)
2209 val build_zext : llvalue -> lltype -> string -> llbuilder -> llvalue
2210
2211 (** [build_sext v ty name b] creates a
2212     [%name = sext %p to %ty]
2213     instruction at the position specified by the instruction builder [b].
2214     See the method [llvm::LLVMBuilder::CreateSExt]. *)
2215 val build_sext : llvalue -> lltype -> string -> llbuilder -> llvalue
2216
2217 (** [build_fptoui v ty name b] creates a
2218     [%name = fptoui %p to %ty]
2219     instruction at the position specified by the instruction builder [b].
2220     See the method [llvm::LLVMBuilder::CreateFPToUI]. *)
2221 val build_fptoui : llvalue -> lltype -> string -> llbuilder -> llvalue
2222
2223 (** [build_fptosi v ty name b] creates a
2224     [%name = fptosi %p to %ty]
2225     instruction at the position specified by the instruction builder [b].
2226     See the method [llvm::LLVMBuilder::CreateFPToSI]. *)
2227 val build_fptosi : llvalue -> lltype -> string -> llbuilder -> llvalue
2228
2229 (** [build_uitofp v ty name b] creates a
2230     [%name = uitofp %p to %ty]
2231     instruction at the position specified by the instruction builder [b].
2232     See the method [llvm::LLVMBuilder::CreateUIToFP]. *)
2233 val build_uitofp : llvalue -> lltype -> string -> llbuilder -> llvalue
2234
2235 (** [build_sitofp v ty name b] creates a
2236     [%name = sitofp %p to %ty]
2237     instruction at the position specified by the instruction builder [b].
2238     See the method [llvm::LLVMBuilder::CreateSIToFP]. *)
2239 val build_sitofp : llvalue -> lltype -> string -> llbuilder -> llvalue
2240
2241 (** [build_fptrunc v ty name b] creates a
2242     [%name = fptrunc %p to %ty]
2243     instruction at the position specified by the instruction builder [b].
2244     See the method [llvm::LLVMBuilder::CreateFPTrunc]. *)
2245 val build_fptrunc : llvalue -> lltype -> string -> llbuilder -> llvalue
2246
2247 (** [build_fpext v ty name b] creates a
2248     [%name = fpext %p to %ty]
2249     instruction at the position specified by the instruction builder [b].
2250     See the method [llvm::LLVMBuilder::CreateFPExt]. *)
2251 val build_fpext : llvalue -> lltype -> string -> llbuilder -> llvalue
2252
2253 (** [build_ptrtoint v ty name b] creates a
2254     [%name = prtotint %p to %ty]
2255     instruction at the position specified by the instruction builder [b].
2256     See the method [llvm::LLVMBuilder::CreatePtrToInt]. *)
2257 val build_ptrtoint : llvalue -> lltype -> string -> llbuilder -> llvalue
2258
2259 (** [build_inttoptr v ty name b] creates a
2260     [%name = inttoptr %p to %ty]
2261     instruction at the position specified by the instruction builder [b].
2262     See the method [llvm::LLVMBuilder::CreateIntToPtr]. *)
2263 val build_inttoptr : llvalue -> lltype -> string -> llbuilder -> llvalue
2264
2265 (** [build_bitcast v ty name b] creates a
2266     [%name = bitcast %p to %ty]
2267     instruction at the position specified by the instruction builder [b].
2268     See the method [llvm::LLVMBuilder::CreateBitCast]. *)
2269 val build_bitcast : llvalue -> lltype -> string -> llbuilder -> llvalue
2270
2271 (** [build_zext_or_bitcast v ty name b] creates a zext or bitcast
2272     instruction at the position specified by the instruction builder [b].
2273     See the method [llvm::LLVMBuilder::CreateZExtOrBitCast]. *)
2274 val build_zext_or_bitcast : llvalue -> lltype -> string -> llbuilder ->
2275                                  llvalue
2276
2277 (** [build_sext_or_bitcast v ty name b] creates a sext or bitcast
2278     instruction at the position specified by the instruction builder [b].
2279     See the method [llvm::LLVMBuilder::CreateSExtOrBitCast]. *)
2280 val build_sext_or_bitcast : llvalue -> lltype -> string -> llbuilder ->
2281                                  llvalue
2282
2283 (** [build_trunc_or_bitcast v ty name b] creates a trunc or bitcast
2284     instruction at the position specified by the instruction builder [b].
2285     See the method [llvm::LLVMBuilder::CreateZExtOrBitCast]. *)
2286 val build_trunc_or_bitcast : llvalue -> lltype -> string -> llbuilder ->
2287                                   llvalue
2288
2289 (** [build_pointercast v ty name b] creates a bitcast or pointer-to-int
2290     instruction at the position specified by the instruction builder [b].
2291     See the method [llvm::LLVMBuilder::CreatePointerCast]. *)
2292 val build_pointercast : llvalue -> lltype -> string -> llbuilder -> llvalue
2293
2294 (** [build_intcast v ty name b] creates a zext, bitcast, or trunc
2295     instruction at the position specified by the instruction builder [b].
2296     See the method [llvm::LLVMBuilder::CreateIntCast]. *)
2297 val build_intcast : llvalue -> lltype -> string -> llbuilder -> llvalue
2298
2299 (** [build_fpcast v ty name b] creates a fpext, bitcast, or fptrunc
2300     instruction at the position specified by the instruction builder [b].
2301     See the method [llvm::LLVMBuilder::CreateFPCast]. *)
2302 val build_fpcast : llvalue -> lltype -> string -> llbuilder -> llvalue
2303
2304
2305 (** {7 Comparisons} *)
2306
2307 (** [build_icmp pred x y name b] creates a
2308     [%name = icmp %pred %x, %y]
2309     instruction at the position specified by the instruction builder [b].
2310     See the method [llvm::LLVMBuilder::CreateICmp]. *)
2311 val build_icmp : Icmp.t -> llvalue -> llvalue -> string ->
2312                       llbuilder -> llvalue
2313
2314 (** [build_fcmp pred x y name b] creates a
2315     [%name = fcmp %pred %x, %y]
2316     instruction at the position specified by the instruction builder [b].
2317     See the method [llvm::LLVMBuilder::CreateFCmp]. *)
2318 val build_fcmp : Fcmp.t -> llvalue -> llvalue -> string ->
2319                       llbuilder -> llvalue
2320
2321
2322 (** {7 Miscellaneous instructions} *)
2323
2324 (** [build_phi incoming name b] creates a
2325     [%name = phi %incoming]
2326     instruction at the position specified by the instruction builder [b].
2327     [incoming] is a list of [(llvalue, llbasicblock)] tuples.
2328     See the method [llvm::LLVMBuilder::CreatePHI]. *)
2329 val build_phi : (llvalue * llbasicblock) list -> string -> llbuilder ->
2330                      llvalue
2331
2332 (** [build_call fn args name b] creates a
2333     [%name = call %fn(args...)]
2334     instruction at the position specified by the instruction builder [b].
2335     See the method [llvm::LLVMBuilder::CreateCall]. *)
2336 val build_call : llvalue -> llvalue array -> string -> llbuilder -> llvalue
2337
2338 (** [build_select cond thenv elsev name b] creates a
2339     [%name = select %cond, %thenv, %elsev]
2340     instruction at the position specified by the instruction builder [b].
2341     See the method [llvm::LLVMBuilder::CreateSelect]. *)
2342 val build_select : llvalue -> llvalue -> llvalue -> string -> llbuilder ->
2343                         llvalue
2344
2345 (** [build_va_arg valist argty name b] creates a
2346     [%name = va_arg %valist, %argty]
2347     instruction at the position specified by the instruction builder [b].
2348     See the method [llvm::LLVMBuilder::CreateVAArg]. *)
2349 val build_va_arg : llvalue -> lltype -> string -> llbuilder -> llvalue
2350
2351 (** [build_extractelement vec i name b] creates a
2352     [%name = extractelement %vec, %i]
2353     instruction at the position specified by the instruction builder [b].
2354     See the method [llvm::LLVMBuilder::CreateExtractElement]. *)
2355 val build_extractelement : llvalue -> llvalue -> string -> llbuilder ->
2356                                 llvalue
2357
2358 (** [build_insertelement vec elt i name b] creates a
2359     [%name = insertelement %vec, %elt, %i]
2360     instruction at the position specified by the instruction builder [b].
2361     See the method [llvm::LLVMBuilder::CreateInsertElement]. *)
2362 val build_insertelement : llvalue -> llvalue -> llvalue -> string ->
2363                                llbuilder -> llvalue
2364
2365 (** [build_shufflevector veca vecb mask name b] creates a
2366     [%name = shufflevector %veca, %vecb, %mask]
2367     instruction at the position specified by the instruction builder [b].
2368     See the method [llvm::LLVMBuilder::CreateShuffleVector]. *)
2369 val build_shufflevector : llvalue -> llvalue -> llvalue -> string ->
2370                                llbuilder -> llvalue
2371
2372 (** [build_extractvalue agg idx name b] creates a
2373     [%name = extractvalue %agg, %idx]
2374     instruction at the position specified by the instruction builder [b].
2375     See the method [llvm::LLVMBuilder::CreateExtractValue]. *)
2376 val build_extractvalue : llvalue -> int -> string -> llbuilder -> llvalue
2377
2378
2379 (** [build_insertvalue agg val idx name b] creates a
2380     [%name = insertvalue %agg, %val, %idx]
2381     instruction at the position specified by the instruction builder [b].
2382     See the method [llvm::LLVMBuilder::CreateInsertValue]. *)
2383 val build_insertvalue : llvalue -> llvalue -> int -> string -> llbuilder ->
2384                              llvalue
2385
2386 (** [build_is_null val name b] creates a
2387     [%name = icmp eq %val, null]
2388     instruction at the position specified by the instruction builder [b].
2389     See the method [llvm::LLVMBuilder::CreateIsNull]. *)
2390 val build_is_null : llvalue -> string -> llbuilder -> llvalue
2391
2392 (** [build_is_not_null val name b] creates a
2393     [%name = icmp ne %val, null]
2394     instruction at the position specified by the instruction builder [b].
2395     See the method [llvm::LLVMBuilder::CreateIsNotNull]. *)
2396 val build_is_not_null : llvalue -> string -> llbuilder -> llvalue
2397
2398 (** [build_ptrdiff lhs rhs name b] creates a series of instructions that measure
2399     the difference between two pointer values at the position specified by the
2400     instruction builder [b].
2401     See the method [llvm::LLVMBuilder::CreatePtrDiff]. *)
2402 val build_ptrdiff : llvalue -> llvalue -> string -> llbuilder -> llvalue
2403
2404
2405 (** {6 Memory buffers} *)
2406
2407 module MemoryBuffer : sig
2408   (** [of_file p] is the memory buffer containing the contents of the file at
2409       path [p]. If the file could not be read, then [IoError msg] is
2410       raised. *)
2411   val of_file : string -> llmemorybuffer
2412   
2413   (** [of_stdin ()] is the memory buffer containing the contents of standard input.
2414       If standard input is empty, then [IoError msg] is raised. *)
2415   val of_stdin : unit -> llmemorybuffer
2416
2417   (** [of_string ~name s] is the memory buffer containing the contents of string [s].
2418       The name of memory buffer is set to [name] if it is provided. *)
2419   val of_string : ?name:string -> string -> llmemorybuffer
2420
2421   (** [as_string mb] is the string containing the contents of memory buffer [mb]. *)
2422   val as_string : llmemorybuffer -> string
2423   
2424   (** Disposes of a memory buffer. *)
2425   val dispose : llmemorybuffer -> unit
2426 end
2427
2428
2429 (** {6 Pass Managers} *)
2430
2431 module PassManager : sig
2432   (**  *)
2433   type 'a t
2434   type any = [ `Module | `Function ]
2435   
2436   (** [PassManager.create ()] constructs a new whole-module pass pipeline. This
2437       type of pipeline is suitable for link-time optimization and whole-module
2438       transformations.
2439       See the constructor of [llvm::PassManager]. *)
2440   val create : unit -> [ `Module ] t
2441   
2442   (** [PassManager.create_function m] constructs a new function-by-function
2443       pass pipeline over the module [m]. It does not take ownership of [m].
2444       This type of pipeline is suitable for code generation and JIT compilation
2445       tasks.
2446       See the constructor of [llvm::FunctionPassManager]. *)
2447   val create_function : llmodule -> [ `Function ] t
2448
2449   (** [run_module m pm] initializes, executes on the module [m], and finalizes
2450       all of the passes scheduled in the pass manager [pm]. Returns [true] if
2451       any of the passes modified the module, [false] otherwise.
2452       See the [llvm::PassManager::run] method. *)
2453   val run_module : llmodule -> [ `Module ] t -> bool
2454
2455   (** [initialize fpm] initializes all of the function passes scheduled in the
2456       function pass manager [fpm]. Returns [true] if any of the passes modified
2457       the module, [false] otherwise.
2458       See the [llvm::FunctionPassManager::doInitialization] method. *)
2459   val initialize : [ `Function ] t -> bool
2460   
2461   (** [run_function f fpm] executes all of the function passes scheduled in the
2462       function pass manager [fpm] over the function [f]. Returns [true] if any
2463       of the passes modified [f], [false] otherwise.
2464       See the [llvm::FunctionPassManager::run] method. *)
2465   val run_function : llvalue -> [ `Function ] t -> bool
2466   
2467   (** [finalize fpm] finalizes all of the function passes scheduled in in the
2468       function pass manager [fpm]. Returns [true] if any of the passes
2469       modified the module, [false] otherwise.
2470       See the [llvm::FunctionPassManager::doFinalization] method. *)
2471   val finalize : [ `Function ] t -> bool
2472   
2473   (** Frees the memory of a pass pipeline. For function pipelines, does not free
2474       the module.
2475       See the destructor of [llvm::BasePassManager]. *)
2476   val dispose : [< any ] t -> unit
2477 end