Searched defs:GenericValue (Results 1 - 3 of 3) sorted by relevance

/external/llvm/bindings/ocaml/executionengine/
H A Dllvm_executionengine.ml17 module GenericValue = struct module
73 external run_function: Llvm.llvalue -> GenericValue.t array -> t ->
74 GenericValue.t
H A Dllvm_executionengine.mli17 module GenericValue: sig module
18 (** [GenericValue.t] is a boxed union type used to portably pass arguments to
22 See the struct [llvm::GenericValue]. *)
27 [llvm::GenericValue::DoubleVal] and [llvm::GenericValue::FloatVal]. *)
31 field [llvm::GenericValue::PointerVal]. *)
35 [w]. See the field [llvm::GenericValue::IntVal]. *)
39 [w]. See the field [llvm::GenericValue::IntVal]. *)
43 bitwidth [w]. See the field [llvm::GenericValue::IntVal]. *)
48 [w]. See the field [llvm::GenericValue
[all...]
/external/llvm/include/llvm/ExecutionEngine/
H A DGenericValue.h1 //===-- GenericValue.h - Represent any type of LLVM value -------*- C++ -*-===//
10 // The GenericValue class is used to represent an LLVM value of arbitrary type.
26 struct GenericValue { struct in namespace:llvm
36 GenericValue() : DoubleVal(0.0), IntVal(1,0) {} function in struct:llvm::GenericValue
37 explicit GenericValue(void *V) : PointerVal(V), IntVal(1,0) { } function in struct:llvm::GenericValue
40 inline GenericValue PTOGV(void *P) { return GenericValue(P); }
41 inline void* GVTOP(const GenericValue &GV) { return GV.PointerVal; }

Completed in 357 milliseconds