Home | History | Annotate | Download | only in executionengine

Lines Matching refs:EE

204 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) {
205 LLVMDisposeExecutionEngine(EE);
210 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) {
211 LLVMAddModule(EE, M);
217 LLVMExecutionEngineRef EE) {
220 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error))
226 CAMLprim value llvm_ee_find_function(value Name, LLVMExecutionEngineRef EE) {
230 if (LLVMFindFunction(EE, String_val(Name), &Found))
239 LLVMExecutionEngineRef EE) {
249 Result = LLVMRunFunction(EE, F, NumArgs, GVArgs);
256 CAMLprim value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) {
257 LLVMRunStaticConstructors(EE);
262 CAMLprim value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) {
263 LLVMRunStaticDestructors(EE);
271 LLVMExecutionEngineRef EE) {
311 Result = LLVMRunFunctionAsMain(EE, F, NumArgs, CArgs, CEnv);
322 LLVMExecutionEngineRef EE) {
323 LLVMFreeMachineCodeForFunction(EE, F);
330 CAMLprim value llvm_ee_get_data_layout(LLVMExecutionEngineRef EE) {
333 OrigDataLayout = LLVMGetExecutionEngineTargetData(EE);