Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-17Fix the windows build.Zoltan Varga
2019-01-17[llvmonly] Refactor llvmonly runtime support code by moving it to a separate ↵Zoltan Varga
file. (#12436) * [llvmonly] Move all runtime support code to a new llvmonly-runtime.c file. * [llvmonly] Make mini_init_delegate () work in mixed mode, it needs to initialize both the interp and the llvmonly related data. * [llvmonly] Implement EH support in mixed mode. On interp->native transitions, add a try-catch. On native->interp transitions, rethrow the exception using a c++ throw. * [llvmonly] Unify function naming, name all llvmonly runtime functions mini_llvmonly_. * Fix a build failure. * Fix windows build. * Fix an aot failure. * Fix the EH changes.
2018-11-29[jit] Refactor call code. (#11775)Zoltan Varga
* [jit] Refactor the constrained call handling code into a separate function. NFC. * [jit] Move the low level call related code to calls.c. NFC. * [jit] Use mini_emit_get_rgctx_klass () in a few more places. * [jit] Add calls.c to common_sources. * Fix some c++-isms. * Fix the windows build.
2018-06-19[runtime] Fix windows build of debugger state machineAlexander Kyte
2018-05-25[wasm] [sdb] Initial PR towards making some of sdb's code shareable. (#8750)Rodrigo Kumpera
This PR adds the new files, moves the enums / structs and a small bit of code to validate the change.
2018-05-14[jit] Extract the intrinsics generation functions into a separate ↵Zoltan Varga
intrinsics.c file. (#8664)
2018-04-10[runtime] Extract the debugger code into a separate library. (#7673)Zoltan Varga
If the runtime is configured using --enable-minimal=soft_debug, the debugger code will be compiled into a separate libmono-dbg.a library which needs to be linked into the app. The debugger needs to be registered with the runtime by calling mono_debugger_agent_init () before runtime initialization.
2017-12-01[interp] move interp functions into a callbackBernhard Urban
2017-10-03Fix libmini targets and filters.lateralusX