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
2017-03-02Bump cecilMarek Safar
2017-03-02[threads] Remove mono_threads_suspend_needs_abort_syscall (#4450)Ludovic Henry
2017-03-02[runtime] Cleanup the debugger header files. (#4459)Zoltan Varga
* Rename debug-mono-debugger.h to debug-internals.h. * Move the internal debug structures to debug-internals.h from debug-mono-symfile.h.
2017-03-02Merge pull request #4418 from kumpera/fix_gclass_recording_on_failureRodrigo Kumpera
[loader] When loading the parent of a GTD fails. We must disable gclass recording for it.
2017-03-02[runtime] Use mono_debug_method_lookup_location () instead of ↵Zoltan Varga
mono_debug_symfile_lookup_location (), the latter doesn't support portable pdb files. Use mono_debug_free_source_location () for freeing. Fixes #52899. (#4457)
2017-03-02[corlib][System] Concurrent collections from corefxMarek Safar
2017-03-01[threads] Remove unused mono_thread_internal_stop (#4449)Ludovic Henry
2017-03-01Merge pull request #4373 from NattyNarwhal/haikuRodrigo Kumpera
Restore Haiku support
2017-03-01[interpreter] rename interpreter to interpBernhard Urban
for folks without autocompletion :P
2017-03-01[generics.cs] enable more testcases for interpreterBernhard Urban
2017-03-01[interpreter] use explicit addressing for stack slotsBernhard Urban
2017-03-01[interpreter] add basic-vectors.cs to richeck targetBernhard Urban
2017-03-01[interpreter] add {exceptions,devirtualization,basic-simd}.cs to richeck targetBernhard Urban
2017-03-01[interpreter] add floating point support to icall trampoline, add ↵Bernhard Urban
basic-math.cs to richeck target
2017-03-01[interpreter] add arrays.cs to richeck targetBernhard Urban
2017-03-01[objects.cs] enable last two remaining tests for interpreterBernhard Urban
\o/
2017-03-01[interpreter] fix array built-ins wrt. multiarray accessBernhard Urban
2017-03-01[interpreter] fix metadata access for ldtoken insn in wrappersBernhard Urban
2017-03-01[interpreter] implement ref type for ldelem bytecodeBernhard Urban
2017-03-01[interpreter] install stack walking callbackBernhard Urban
2017-03-01[interpreter] it can happen that we have the address of a enum on the stack, ↵Bernhard Urban
and we need to dereference it before we box it.
2017-03-01[interpreter] allow generic inst type in icall trampolineBernhard Urban
2017-03-01[interpreter] if unboxing is required on virtcall, point into object instead ↵Bernhard Urban
of copying
2017-03-01[generics.cs] test calling an interface, that's implemented by a generic ↵Bernhard Urban
value type
2017-03-01[interpreter] properly inflate method on generic virtual callBernhard Urban
2017-03-01[interpreter] inflate method signature for delegate.invoke ()Bernhard Urban
2017-03-01[interpreter] inflate signature for calli with proper generic_contextBernhard Urban
2017-03-01[object/interpreter] add trap for future pitfallsBernhard Urban
2017-03-01[interpreter] add init_delegate callbackBernhard Urban
and set `method` field in delegate
2017-03-01[interpreter] use jit icall for delegate ctorBernhard Urban
2017-03-01[trampolines] make sure no delegate trampoline is created in interpreter modeBernhard Urban
2017-03-01[objects.cs] testcase for delegate with instance method that uses `this'Bernhard Urban
2017-03-01[interpreter] pop extra arg in CEE_MONO_CALLI_EXTRA_ARGBernhard Urban
2017-02-28Merge pull request #4440 from kumpera/fix-assembly-remappingRodrigo Kumpera
[runtime] Fix assembly remapping by using a hashtable. Fixes #52846 and #52743
2017-02-28[msvc] Update csproj filesmonojenkins
2017-02-28Merge pull request #4381 from BrzVlad/feature-generational-hashVlad Brezae
[sgen] Generational MonoGHashTable
2017-02-28[runtime] Fix assembly remapping by using a hashtable. Fixes #52846 and #52743Rodrigo Kumpera
In multiple occasions we had bugs due to framework_assemblies not being correctly sorted. Instead of just fixing the ordering again, I'm moving it a hashtable so future generations won't have to fix this for System.SpaceTravel.dll.
2017-02-28[System] Add regression test for Bugzilla 10899 (#4401)Alexander Köplinger
Even though I couldn't repro the bug I thought it'd still be a good idea to at least add some basic coverage with non-Latin chars.
2017-02-28Merge pull request #4438 from xmcclure/monodis-fixAndi McClure
Fix monodis
2017-02-27Fix monodisAndi McClure
monodis was not calling the mono_tls_init_runtime_keys function, which was causing it to crash the first time it attempted to access the current domain (ie almost immediately).
2017-02-27Merge pull request #4433 from kumpera/android-fixesRodrigo Kumpera
Fix a few issues on Android
2017-02-27[jit] Rewrite some logging to work on embedded systems.Rodrigo Kumpera
2017-02-27[jit] Fix LMF codegen on android arm64.Rodrigo Kumpera
Android doesn't have fast tls either, so we must use the jit_tls variant.
2017-02-27[alias-analysis] Ignore addresses taken of volatile variables.Rodrigo Kumpera
Volatile variables should be ignored by AA as, by design, we can't properly tell whether removing indirection is safe or not. This shows up when handling the LMF var in some cases.
2017-02-27[runtime] Mark mono_error_init external only. (#4437)Aleksey Kliger (λgeek)
Runtime should use the error_init() from mono/utils/mono-error-internals.h
2017-02-27Merge pull request #4434 from BrzVlad/fix-unload-hangVlad Brezae
[threads] Don't ignore abort requests in abort protected blocks
2017-02-27Update ms-test-suiteMarek Safar
2017-02-27[System.Numerics] Use corefx implementationMarek Safar
2017-02-27Merge pull request #4431 from vkargov/vk-leaking-pointsRodrigo Kumpera
[runtime] Fix memory leak in mono_save_seq_point_info().
2017-02-27Haiku hrev50954 makes this ifdef unnecessaryCalvin