Skip to content

Commit

Permalink
2009-05-14 Geoff Norton <gnorton@novell.com>
Browse files Browse the repository at this point in the history
        * jit.h, driver.c: Allow full-aot to be decided programatically by the
        embedding api.

svn path=/trunk/mono/; revision=134174
  • Loading branch information
Geoff Norton committed May 15, 2009
1 parent 3c4c333 commit 0f1a80a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mono/mini/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2009-05-14 Geoff Norton <gnorton@novell.com>

* jit.h, driver.c: Allow full-aot to be decided programatically by the
embedding api.

2009-05-15 Zoltan Varga <vargaz@gmail.com>

* mini-trampolines.c (mono_magic_trampoline): Handle static rgctx invoke
Expand Down
6 changes: 6 additions & 0 deletions mono/mini/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -1842,6 +1842,12 @@ mono_jit_cleanup (MonoDomain *domain)
mini_cleanup (domain);
}

void
mono_jit_set_aot_only (gboolean val)
{
mono_aot_only = val;
}

/**
* mono_jit_set_trace_options:
* @options: string representing the trace options
Expand Down
3 changes: 3 additions & 0 deletions mono/mini/jit.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ mono_jit_set_trace_options (const char* options);
void
mono_set_signal_chaining (gboolean chain_signals);

void
mono_jit_set_aot_only (gboolean aot_only);

G_END_DECLS

#endif
Expand Down

0 comments on commit 0f1a80a

Please sign in to comment.