From 0ce2ef8c2dfbefa56e58e7054d7d0e7cdee2c297 Mon Sep 17 00:00:00 2001 From: Peter Zotov Date: Sat, 25 Oct 2014 18:50:02 +0000 Subject: [PATCH] [OCaml] Unbreak Llvm_executionengine.initialize_native_target. First, return true on success, as it is the OCaml convention. Second, also initialize the native assembly printer, which is, despite the name, required for MCJIT operation. Since this function did not initialize the assembly printer earlier and no function to initialize native assembly printer was available elsewhere, it is safe to break its interface: it means that it simply could not be used successfully before. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220620 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../executionengine/executionengine_ocaml.c | 30 ++++++++++--------- test/Bindings/Ocaml/executionengine.ml | 3 ++ 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/bindings/ocaml/executionengine/executionengine_ocaml.c b/bindings/ocaml/executionengine/executionengine_ocaml.c index 49e64f39266..8388233a356 100644 --- a/bindings/ocaml/executionengine/executionengine_ocaml.c +++ b/bindings/ocaml/executionengine/executionengine_ocaml.c @@ -32,7 +32,9 @@ void llvm_initialize(void) { /* unit -> bool */ CAMLprim value llvm_initialize_native_target(value Unit) { - return Val_bool(LLVMInitializeNativeTarget()); + return Val_bool(!LLVMInitializeNativeTarget() && + !LLVMInitializeNativeAsmParser() && + !LLVMInitializeNativeAsmPrinter()); } /* Can't use the recommended caml_named_value mechanism for backwards @@ -48,10 +50,10 @@ CAMLprim value llvm_register_ee_exns(value Error) { static void llvm_raise(value Prototype, char *Message) { CAMLparam1(Prototype); CAMLlocal1(CamlMessage); - + CamlMessage = copy_string(Message); LLVMDisposeMessage(Message); - + raise_with_arg(Prototype, CamlMessage); abort(); /* NOTREACHED */ #ifdef CAMLnoreturn @@ -258,14 +260,14 @@ CAMLprim value llvm_ee_run_function(LLVMValueRef F, value Args, unsigned NumArgs; LLVMGenericValueRef Result, *GVArgs; unsigned I; - + NumArgs = Wosize_val(Args); GVArgs = (LLVMGenericValueRef*) malloc(NumArgs * sizeof(LLVMGenericValueRef)); for (I = 0; I != NumArgs; ++I) GVArgs[I] = Genericvalue_val(Field(Args, I)); - + Result = LLVMRunFunction(EE, F, NumArgs, GVArgs); - + free(GVArgs); return alloc_generic_value(Result); } @@ -291,21 +293,21 @@ CAMLprim value llvm_ee_run_function_as_main(LLVMValueRef F, int I, NumArgs, NumEnv, EnvSize, Result; const char **CArgs, **CEnv; char *CEnvBuf, *Pos; - + NumArgs = Wosize_val(Args); NumEnv = Wosize_val(Env); - + /* Build the environment. */ CArgs = (const char **) malloc(NumArgs * sizeof(char*)); for (I = 0; I != NumArgs; ++I) CArgs[I] = String_val(Field(Args, I)); - + /* Compute the size of the environment string buffer. */ for (I = 0, EnvSize = 0; I != NumEnv; ++I) { EnvSize += strlen(String_val(Field(Field(Env, I), 0))) + 1; EnvSize += strlen(String_val(Field(Field(Env, I), 1))) + 1; } - + /* Build the environment. */ CEnv = (const char **) malloc((NumEnv + 1) * sizeof(char*)); CEnvBuf = (char*) malloc(EnvSize); @@ -315,7 +317,7 @@ CAMLprim value llvm_ee_run_function_as_main(LLVMValueRef F, *Value = String_val(Field(Field(Env, I), 1)); int NameLen = strlen(Name), ValueLen = strlen(Value); - + CEnv[I] = Pos; memcpy(Pos, Name, NameLen); Pos += NameLen; @@ -325,13 +327,13 @@ CAMLprim value llvm_ee_run_function_as_main(LLVMValueRef F, *Pos++ = '\0'; } CEnv[NumEnv] = NULL; - + Result = LLVMRunFunctionAsMain(EE, F, NumArgs, CArgs, CEnv); - + free(CArgs); free(CEnv); free(CEnvBuf); - + CAMLreturn(Val_int(Result)); } diff --git a/test/Bindings/Ocaml/executionengine.ml b/test/Bindings/Ocaml/executionengine.ml index 84604ddbaec..1abd7c4e6a6 100644 --- a/test/Bindings/Ocaml/executionengine.ml +++ b/test/Bindings/Ocaml/executionengine.ml @@ -19,6 +19,9 @@ let i32_type = Llvm.i32_type context let i64_type = Llvm.i64_type context let double_type = Llvm.double_type context +let () = + assert (Llvm_executionengine.initialize_native_target ()) + let bomb msg = prerr_endline msg; exit 2 -- 2.34.1