mono.git
6 years ago[mcs] Improves imported destructor detection. Fixes #54159
Marek Safar [Sun, 28 May 2017 11:47:45 +0000 (13:47 +0200)]
[mcs] Improves imported destructor detection. Fixes #54159

6 years agoBump bockbuild
Alexander Köplinger [Sun, 28 May 2017 00:02:31 +0000 (02:02 +0200)]
Bump bockbuild

6 years agoBump bockbuild to fix wrench build
Alexander Köplinger [Sat, 27 May 2017 23:17:47 +0000 (01:17 +0200)]
Bump bockbuild to fix wrench build

6 years agoMerge pull request #4904 from kumpera/more_opts
Rodrigo Kumpera [Sat, 27 May 2017 19:29:01 +0000 (12:29 -0700)]
Merge pull request #4904 from kumpera/more_opts

[runtime] Change jit_info_table_num_elements to O(1).

6 years agoMerge pull request #4928 from kumpera/ptr_to_struct_intrinsic
Rodrigo Kumpera [Sat, 27 May 2017 19:27:37 +0000 (12:27 -0700)]
Merge pull request #4928 from kumpera/ptr_to_struct_intrinsic

[mini] Intrinsify Marshal.PtrToStructure<T>

6 years agoInterp sdb (#4911)
Zoltan Varga [Sat, 27 May 2017 16:29:56 +0000 (12:29 -0400)]
Interp sdb (#4911)

* [interpreter] Add beginnings of debugger support.

Handle debugger support similarly to the JIT:
- Add a MINT_SDB_SEQ_POINT instruction to the debugger IR. Replace it with a MINT_BREAKPOINT instruction when a breakpoint is placed.
- Store the sequence point information in the existing sequence point data structures.

* [interp] Add support for debugger stacktraces.

* [interp] Add support for debugger frame info.

* [interp] Connect seq points inside the same basic block so simple single stepping works.

* [interp] Link sequence points in different basic blocks the same way the JIT does it.

* [interp] Allocate some bitsets from a mempool.

* [interp] Rewrite the patching in the transform pass to make it a bit easier to understand.

* [interp] Add interruption support for sdb.

* [interp] Add support for mkrefany,refanytype and refanyval.

* [interp] Fix debugger failures.

* Add support for setting byref variables.
* Fix thread interruption when the top frame is an interpreter frame.
* Allow stack walks when a thread is suspended while transforming a method.
* Implement method entry/exit events.
* Fix ldstr+dynamic methods.

* [interp] Implement support for Debugger.Break.

* [interp] Change the offsets in MonoJitInfo/seq points into byte based from short based to reduce the amount of special casing needed in other parts of the code.

* [interp] Factor out the push/pop lmf code into a pair of helper functions.

* [mixed] Fix mixed mode EH.

* [interp] Implement support for MONO_VERBOSE_METHOD. Improve sequence point placement.

* [interp] Implement support for SetIP ().

Pass the target thread as an additional argument to mono_interp_set_resume_state (). Check the resume state after single
stepping/breakpoints in the interpreter.

* [interp] Disable the usage of the STLOC_NP opcodes when running under the debugger, it doesn't work if the ip is changed when the execution is stopped.

* [interp] Fix async stack walks in the debugger when the thread is in native code called from interpreter code.

* [interp] Fix the disable interpreter build.

* [interp] Fix the calculation of native offsets in the line number info.

* [interp] Fix the build.

* [interp] Make CMD_STACK_FRAME_GET_THIS behave the same when called on managed-to-native frames, with the interpreter, frame->has_ctx is set.

* [interp] Fix typos, remove some dead code, use g_print instead of printf in a few places, move some interpreter stubs to interp-stubs.c.

6 years ago[runtime] Fix a race in mono_class_get_virtual_methods () which happens when klass...
Zoltan Varga [Sat, 27 May 2017 13:33:59 +0000 (09:33 -0400)]
[runtime] Fix a race in mono_class_get_virtual_methods () which happens when klass->method is NULL initially, but gets initialized later. Use the lowest bit of the iterator pointer to distinguish between the two cases. Fixes #56824. (#4933)

6 years ago[runtime] Change jit_info_table_num_elements to O(1).
Rodrigo Kumpera [Fri, 19 May 2017 06:24:08 +0000 (23:24 -0700)]
[runtime] Change jit_info_table_num_elements to O(1).

On very large apps such as XS, this looking can take half a second of CPU time when opening a big solution.

6 years ago[Mono.Posix] Adding .Net Core 2.0 support. (#4774)
Bill Holmes [Sat, 27 May 2017 06:24:10 +0000 (23:24 -0700)]
[Mono.Posix] Adding .Net Core 2.0 support. (#4774)

6 years agoRe-bump bockbuild for libtiff URL change
Alexis Christoforides [Fri, 26 May 2017 20:11:08 +0000 (16:11 -0400)]
Re-bump bockbuild for libtiff URL change

6 years agoRevert "Bump bockbuild", as it breaks the build.
Alexis Christoforides [Fri, 26 May 2017 19:38:38 +0000 (15:38 -0400)]
Revert "Bump bockbuild", as it breaks the build.

This reverts commit 30f9a22f0869d727c663cc4ba2c283ce75dc73f2.

6 years agoMerge pull request #4931 from kumpera/com-interop-fix
Rodrigo Kumpera [Fri, 26 May 2017 19:28:40 +0000 (12:28 -0700)]
Merge pull request #4931 from kumpera/com-interop-fix

Fix cominterop bug

6 years ago[mini]Add test for PtrToStruct<T>
Rodrigo Kumpera [Fri, 26 May 2017 05:45:16 +0000 (22:45 -0700)]
[mini]Add test for PtrToStruct<T>

6 years agoMerge pull request #4840 from kumpera/unaligned-access
Rodrigo Kumpera [Fri, 26 May 2017 19:17:02 +0000 (12:17 -0700)]
Merge pull request #4840 from kumpera/unaligned-access

Another round of cleanups plus fix how the JIT emit unaligned access.

6 years agoBump bockbuild
Alexis Christoforides [Fri, 26 May 2017 16:19:03 +0000 (12:19 -0400)]
Bump bockbuild

6 years ago[mcs] Codegen for optimized new with valuetype load and awaited arguments. Fixes...
Marek Safar [Fri, 26 May 2017 16:22:58 +0000 (18:22 +0200)]
[mcs] Codegen for optimized new with valuetype load and awaited arguments. Fixes #56081

6 years ago[arm] use r8 instead of r5 in icall trampoline, because r5 is used as IMT reg
Bernhard Urban [Thu, 18 May 2017 21:48:50 +0000 (23:48 +0200)]
[arm] use r8 instead of r5 in icall trampoline, because r5 is used as IMT reg

6 years ago[arm] respect iOS specific ABI for frame pointer in icall trampoline
Bernhard Urban [Thu, 18 May 2017 17:13:45 +0000 (19:13 +0200)]
[arm] respect iOS specific ABI for frame pointer in icall trampoline

6 years ago[mini] Intrinsify Marshal.PtrToStructure<T>
Rodrigo Kumpera [Thu, 25 May 2017 05:56:27 +0000 (22:56 -0700)]
[mini] Intrinsify Marshal.PtrToStructure<T>

6 years ago[runtime] Add support for using COM types from corlib.
Rodrigo Kumpera [Thu, 25 May 2017 22:19:52 +0000 (15:19 -0700)]
[runtime] Add support for using COM types from corlib.

This can be reproduced by trying to load a type that implements a COM interface corlib ships.

6 years ago[mini] Fix the llvmonlycheck test.
Rodrigo Kumpera [Wed, 24 May 2017 00:07:37 +0000 (17:07 -0700)]
[mini] Fix the llvmonlycheck test.

6 years ago[aot] Avoid printing out AOT NOT FOUND messages for icall methods which have no body.
Zoltan Varga [Thu, 25 May 2017 21:59:55 +0000 (17:59 -0400)]
[aot] Avoid printing out AOT NOT FOUND messages for icall methods which have no body.

6 years ago[arm] Do not use the ARM Run-time ABI in cross-compilers (#4914)
Damien Diederen [Thu, 25 May 2017 17:16:38 +0000 (19:16 +0200)]
[arm] Do not use the ARM Run-time ABI in cross-compilers (#4914)

6 years agoMerge pull request #4926 from BrzVlad/fix-tls-v5
Vlad Brezae [Thu, 25 May 2017 11:53:39 +0000 (14:53 +0300)]
Merge pull request #4926 from BrzVlad/fix-tls-v5

[arm] Don't use fast tls on v5 arm

6 years agoFix mono build with disabled sgen (#4915)
e-kovalenko [Wed, 24 May 2017 23:11:40 +0000 (02:11 +0300)]
Fix mono build with disabled sgen (#4915)

Build of the Mono failed with the Boehm GC only (without SGEN)
if it configured like this: --with-gc=included --withsgen=no

6 years agosysctl takes 3 name components (#4883)
Marcin Cieślak [Wed, 24 May 2017 23:09:05 +0000 (01:09 +0200)]
sysctl takes 3 name components (#4883)

Adapted from:

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=212259

https://github.com/mono/mono/pull/3480

https://svnweb.freebsd.org/ports?view=revision&revision=423356

6 years agoMove <sys/types.h> higher for integer types (#4884)
Marcin Cieślak [Wed, 24 May 2017 23:06:53 +0000 (01:06 +0200)]
Move <sys/types.h> higher for integer types (#4884)

Fix build on FreeBSD 8 and maybe others
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198404#c6

6 years ago[arm] Don't use fast tls on v5 arm
Vlad Brezae [Wed, 24 May 2017 22:14:00 +0000 (01:14 +0300)]
[arm] Don't use fast tls on v5 arm

The thread coprocessor registers appear only in v7 specification.

6 years agoMerge pull request #4923 from lambdageek/bug-56694
Aleksey Kliger (λgeek) [Wed, 24 May 2017 21:35:22 +0000 (17:35 -0400)]
Merge pull request #4923 from lambdageek/bug-56694

[appdomain] Don't leak MonoReflectionAssemblyHandles firing events

Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=56694

6 years agoMerge pull request #4872 from kumpera/add_test_for_eloop
Rodrigo Kumpera [Wed, 24 May 2017 20:25:41 +0000 (16:25 -0400)]
Merge pull request #4872 from kumpera/add_test_for_eloop

[runtime] Fix runtime behavior when dealing with missing symlinks

6 years agoMerge pull request #4845 from lambdageek/dev-coop-delegates
Aleksey Kliger (λgeek) [Wed, 24 May 2017 19:56:38 +0000 (15:56 -0400)]
Merge pull request #4845 from lambdageek/dev-coop-delegates

[marshal] Use coop handles for delegates icalls

6 years agoBug #56499: unreadable /etc/localtime should not cause an exception (#4881)
Marcin Cieślak [Wed, 24 May 2017 18:53:23 +0000 (20:53 +0200)]
Bug #56499: unreadable /etc/localtime should not cause an exception (#4881)

* Bug #56499: unreadable /etc/localtime should not cause an exception

* Fix build

6 years ago[sgen] Scan the handle stack for dangling ptrs during domain unload
Aleksey Kliger [Wed, 24 May 2017 16:25:26 +0000 (12:25 -0400)]
[sgen] Scan the handle stack for dangling ptrs during domain unload

There should be no handles pointing to objects in the domain that is unloading
in any thread's handle stack once mono_gc_clear_domain () is called.

6 years ago[coop handles] Fix wrong #ifdef
Aleksey Kliger [Wed, 24 May 2017 15:41:44 +0000 (11:41 -0400)]
[coop handles] Fix wrong #ifdef

6 years ago[appdomain] Don't leak MonoReflectionAssemblyHandles in callbacks to managed
Aleksey Kliger [Tue, 23 May 2017 21:24:18 +0000 (17:24 -0400)]
[appdomain] Don't leak MonoReflectionAssemblyHandles in callbacks to managed

6 years ago[tests] Regression test for #56694
Aleksey Kliger [Wed, 24 May 2017 15:18:36 +0000 (11:18 -0400)]
[tests] Regression test for #56694

When an AssemblyLoad event fires in a domain, a System.Reflection.Assembly
object is created in that domain for the assembly being loaded.  The bug left
this object alive after the domain was unloaded, which lead to a GC crash.

6 years ago[runtime] Implement interior handles as a special case to simplify and speed up the...
Zoltan Varga [Wed, 24 May 2017 17:58:18 +0000 (13:58 -0400)]
[runtime] Implement interior handles as a special case to simplify and speed up the more common handle code. (#4921)

6 years ago[corlib] Fixes warning
Marek Safar [Wed, 24 May 2017 17:28:29 +0000 (19:28 +0200)]
[corlib] Fixes warning

6 years ago[mcs] Parsing of nested unbound types. Fixes #55400
Marek Safar [Wed, 24 May 2017 17:26:46 +0000 (19:26 +0200)]
[mcs] Parsing of nested unbound types. Fixes #55400

6 years ago[corlib] Remove unused field
Marek Safar [Wed, 24 May 2017 13:39:37 +0000 (15:39 +0200)]
[corlib] Remove unused field

6 years agoImprove error messages to help users diagnose problems when using custom mode (#4922)
Miguel de Icaza [Wed, 24 May 2017 17:19:58 +0000 (13:19 -0400)]
Improve error messages to help users diagnose problems when using custom mode (#4922)

* Improve error messages to help users diagnose problems when using the custom mode

* Update mkbundle.cs

6 years ago[runtime] Convert a g_warning to a type load failure. (#4920)
Zoltan Varga [Wed, 24 May 2017 13:35:18 +0000 (09:35 -0400)]
[runtime] Convert a g_warning to a type load failure. (#4920)

6 years agoFix make dist.
Zoltan Varga [Wed, 24 May 2017 02:51:09 +0000 (22:51 -0400)]
Fix make dist.

6 years agoFix the CpBlk and InitBlk intrinsics.
Rodrigo Kumpera [Tue, 23 May 2017 23:59:07 +0000 (16:59 -0700)]
Fix the CpBlk and InitBlk intrinsics.

6 years agoUpdate test for correct behavior.
Rodrigo Kumpera [Tue, 23 May 2017 21:59:02 +0000 (14:59 -0700)]
Update test for correct behavior.

6 years ago[runtime] Fix multiple issues around symlink handling.
Rodrigo Kumpera [Tue, 23 May 2017 21:46:53 +0000 (14:46 -0700)]
[runtime] Fix multiple issues around symlink handling.

After fixing my windows setup, I managed to properly test MS's behavior, which is a lot saner and it's the following:

Opening fails with ERROR_CANT_RESOLVE_FILENAME (1921).
Testing and Deleting works.

Fixing File.Delete required removing the lstat we do before deleting, which no longer serves any purpose.

Fixing File.Exists requires handling ELOOP when stat fails and we retry with lstat.

6 years ago[System]: Don't call OnCompleted(this) twice in SocketAsyncEventArgs.FinishWrapperCon...
Martin Baulig [Tue, 23 May 2017 19:42:05 +0000 (15:42 -0400)]
[System]: Don't call OnCompleted(this) twice in SocketAsyncEventArgs.FinishWrapperConnectSuccess(). (#4894)

6 years ago[bcl] Fix compiling xunit-based tests
Alexander Köplinger [Tue, 23 May 2017 17:54:35 +0000 (19:54 +0200)]
[bcl] Fix compiling xunit-based tests

We moved System.Runtime.InteropServices.RuntimeInformation to a facade.

6 years ago[runtime] Add specialized versions of mono_icall_handle_new () for internal/non-inter...
Zoltan Varga [Tue, 23 May 2017 15:46:59 +0000 (11:46 -0400)]
[runtime] Add specialized versions of mono_icall_handle_new () for internal/non-internal pointers. (#4918)

6 years agoFix full aot (#4919)
Zoltan Varga [Tue, 23 May 2017 15:36:43 +0000 (11:36 -0400)]
Fix full aot (#4919)

* [runtime] Fix the generation of invalid IL in the return marshalling of stringbuilders.

* [runtime] Disable some failing fullaot tests.

6 years ago[runtime] Use coop handles for System.Delegate.AllocDelegateLike_internal
Aleksey Kliger [Fri, 12 May 2017 16:30:05 +0000 (12:30 -0400)]
[runtime] Use coop handles for System.Delegate.AllocDelegateLike_internal

6 years ago[marshal] Use coop handles for System.Delegate.GetVirtualMethod_internal
Aleksey Kliger [Thu, 11 May 2017 21:35:42 +0000 (17:35 -0400)]
[marshal] Use coop handles for System.Delegate.GetVirtualMethod_internal

6 years ago[marshal] Use coop handles in mono_delegate_to_ftnptr
Aleksey Kliger [Thu, 11 May 2017 21:06:29 +0000 (17:06 -0400)]
[marshal] Use coop handles in mono_delegate_to_ftnptr

* Create mono_delegate_handle_to_ftnptr for the implementation
* Use coop handles for
  System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegateInternal

6 years ago[runtime] Remove temporary fcn mono_delegate_ctor_with_method_fixme
Aleksey Kliger [Thu, 11 May 2017 18:18:26 +0000 (14:18 -0400)]
[runtime] Remove temporary fcn mono_delegate_ctor_with_method_fixme

6 years ago[marshal] Change mono_delegate_ctor to use coop handles
Aleksey Kliger [Thu, 11 May 2017 18:17:22 +0000 (14:17 -0400)]
[marshal] Change mono_delegate_ctor to use coop handles

6 years ago[marshal] Use handles in mono_ftnptr_to_delegate
Aleksey Kliger [Thu, 11 May 2017 17:44:45 +0000 (13:44 -0400)]
[marshal] Use handles in mono_ftnptr_to_delegate

* Move most of the logic to mono_ftnptr_to_delegate_handle
* Use handles for
  System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointerInternal

6 years ago[runtime] Use coop handles in mono_delegate_ctor_with_method
Aleksey Kliger [Wed, 10 May 2017 22:18:44 +0000 (18:18 -0400)]
[runtime] Use coop handles in mono_delegate_ctor_with_method

Use coop handles in icall System.Delegate.CreateDelegate_internal

TODO: change callsites fo mono_delegate_ctor_with_method_fixme to use handles

6 years ago[marshal] Use coop handles for OffsetOf, SizeOf, Prelink, PrelinkAll
Aleksey Kliger [Wed, 10 May 2017 19:26:29 +0000 (15:26 -0400)]
[marshal] Use coop handles for OffsetOf, SizeOf, Prelink, PrelinkAll

System.Runtime.InteropServices.Marshal methods
* OffsetOf
* Prelink
* PrelinkAll
* SizeOf

6 years agoRemove outdated info and unused files from mcs/ (#4916)
Alexander Köplinger [Tue, 23 May 2017 12:27:42 +0000 (14:27 +0200)]
Remove outdated info and unused files from mcs/ (#4916)

Most of the removed files weren't touched in the last decade
and are unused so it's better to remove them to avoid confusion
about what they do.

I also went over and removed the most outdated info from readme
files, we probably want to do a more thorough overhaul in the future.

6 years ago[mcs] When setting struct empty layout consider compiler generated fields. Fixes...
Marek Safar [Tue, 23 May 2017 06:35:58 +0000 (08:35 +0200)]
[mcs] When setting struct empty layout consider compiler generated fields. Fixes #55604

6 years agoBump bockbuild to fix build
Alexander Köplinger [Tue, 23 May 2017 00:32:20 +0000 (02:32 +0200)]
Bump bockbuild to fix build

6 years ago[runtime] Add a fastpath to mono_object_isinst_icall (). (#4917)
Zoltan Varga [Tue, 23 May 2017 00:24:14 +0000 (20:24 -0400)]
[runtime] Add a fastpath to mono_object_isinst_icall (). (#4917)

6 years agoUse nuget 4.3.0-preview1 to fix build
Alexander Köplinger [Mon, 22 May 2017 22:16:22 +0000 (00:16 +0200)]
Use nuget 4.3.0-preview1 to fix build

4.5.0 is not yet available.

Also use lowercase nuget.exe to match the URL on https://dist.nuget.org/

6 years ago[mcs] Add expression bodied syntax for accessors. Fixes #54991
Marek Safar [Mon, 22 May 2017 21:29:54 +0000 (23:29 +0200)]
[mcs] Add expression bodied syntax for accessors. Fixes #54991

6 years ago[interp] fix unaligned.
Bernhard Urban [Mon, 22 May 2017 20:13:01 +0000 (22:13 +0200)]
[interp] fix unaligned.

6 years ago[MacSDK] Update Nuget to 4.5, switch to binary release instead of building
Alexis Christoforides [Mon, 22 May 2017 20:04:30 +0000 (16:04 -0400)]
[MacSDK] Update Nuget to 4.5, switch to binary release instead of building

6 years ago[bcl] Make monolite platform specific (#4910)
Alexander Köplinger [Mon, 22 May 2017 16:09:44 +0000 (18:09 +0200)]
[bcl] Make monolite platform specific (#4910)

mscorlib.dll etc will be platform specific in the future. This also
means that we need to adapt monolite since it'll become platform
specific once we start the divergence.

monolite is essentially a repackaging of the "build" profile which
means we need to turn that profile into multi-platform profile
like net_4_x. We'll still have a symlink from build -> build-darwin
and the monolite which is downloaded or packaged in the tarball
is expanded into mcs/lib/monolite-<platform> depending on the platform
you're building on.

I had to move the get-monolite-latest target from the top-level
Makefile.am into mcs/class/Makefile so it has access to HOST_PLATFORM,
but it arguably should've been there anyway before.

6 years ago[bcl] Exclude Mono.CSharp.dll from api diff
Alexander Köplinger [Mon, 22 May 2017 16:02:12 +0000 (18:02 +0200)]
[bcl] Exclude Mono.CSharp.dll from api diff

We don't guarantee a stable API there and it changes often
when mcs internals change.

6 years ago[profiler] Fall back to CLOCK_MONOTONIC if CLOCK_PROCESS_CPUTIME_ID results in EINVAL...
Alex Rønne Petersen [Mon, 22 May 2017 15:02:22 +0000 (17:02 +0200)]
[profiler] Fall back to CLOCK_MONOTONIC if CLOCK_PROCESS_CPUTIME_ID results in EINVAL. (#4913)

This is the case on WSL.

6 years ago[mcs] Inflate referenced current types for imported type definitions. Fixes #56462
Marek Safar [Mon, 22 May 2017 14:58:26 +0000 (16:58 +0200)]
[mcs] Inflate referenced current types for imported type definitions. Fixes #56462

6 years ago[mcs] Removes TypeManager calls from MoreSpecific
Marek Safar [Mon, 22 May 2017 14:23:11 +0000 (16:23 +0200)]
[mcs] Removes TypeManager calls from MoreSpecific

6 years ago[ci] Add the collect-coverage tag for use on Jenkins. (#4912)
vkargov [Mon, 22 May 2017 12:43:28 +0000 (05:43 -0700)]
[ci] Add the collect-coverage tag for use on Jenkins. (#4912)

* [ci] Add the collect-coverage tag for use on Jenkins.

* Move collect-coverage up so we don't set different values for -O

6 years ago[mcs] extend API for loading types and consuming source file from a stream (#4905)
Bernhard Urban [Mon, 22 May 2017 10:40:19 +0000 (12:40 +0200)]
[mcs] extend API for loading types and consuming source file from a stream (#4905)

6 years ago[jit] Fix x86 failures and handle unaligned load with offset
Rodrigo Kumpera [Sat, 20 May 2017 02:47:51 +0000 (19:47 -0700)]
[jit] Fix x86 failures and handle unaligned load with offset

6 years ago[corlib] Address reviewer comments to new test.
Rodrigo Kumpera [Fri, 19 May 2017 22:06:19 +0000 (15:06 -0700)]
[corlib] Address reviewer comments to new test.

6 years agoBump api-snapshot
Alexander Köplinger [Fri, 19 May 2017 20:51:54 +0000 (22:51 +0200)]
Bump api-snapshot

6 years agoBump Roslyn to 2.3 preview
Marek Safar [Fri, 19 May 2017 15:33:32 +0000 (17:33 +0200)]
Bump Roslyn to 2.3 preview

6 years agoBump bockbuild
Alexis Christoforides [Fri, 19 May 2017 19:24:13 +0000 (15:24 -0400)]
Bump bockbuild

6 years agoBump the btls submodule
Alexander Köplinger [Fri, 19 May 2017 17:55:41 +0000 (19:55 +0200)]
Bump the btls submodule

Bring in the change that makes building the "tool" subdirectory
in BTLS off by default - we don't need it in Mono and it fails
to build on some platforms with older C++ compiler.

6 years ago[mcs] Report more unsafe code errors in iterators. Fixes #56616
Marek Safar [Fri, 19 May 2017 16:43:59 +0000 (18:43 +0200)]
[mcs] Report more unsafe code errors in iterators. Fixes #56616

6 years ago[build] Remove platforms from xbuild build
Marek Safar [Fri, 19 May 2017 13:11:29 +0000 (15:11 +0200)]
[build] Remove platforms from xbuild build

6 years ago[amd64] Fix the allocation of the caller area in filter clauses. Fixes #56567. (...
Zoltan Varga [Fri, 19 May 2017 15:37:38 +0000 (11:37 -0400)]
[amd64] Fix the allocation of the caller area in filter clauses. Fixes #56567. (#4903)

6 years ago[bcl] Dispose Cecil AssemblyDefinition after usage (#4900)
Alexander Köplinger [Fri, 19 May 2017 10:59:00 +0000 (12:59 +0200)]
[bcl] Dispose Cecil AssemblyDefinition after usage (#4900)

Follow-up to https://github.com/mono/mono/pull/4899. I audited
all the places in BCL where we made use of Cecil's AssemblyDefinition
and made sure we're properly disposing them and not keeping files
unnecessarily open.

I used InMemory=true in cases where tracking the lifetime would
be complicated. There are also some tests in mcs/tests which I
didn't bother to fix.

6 years agoWarn on failure to create default Reflection.Emit SymbolWriter instead of throwing...
Katelyn Gadd [Fri, 19 May 2017 07:24:49 +0000 (00:24 -0700)]
Warn on failure to create default Reflection.Emit SymbolWriter instead of throwing and failing (#4748)

* Bug #53038: Warn on failure to create default Reflection.Emit SymbolWriter (on platforms like Android that don't ship one) instead of throwing and failing

6 years ago[jit] Add unaligned tests.
Rodrigo Kumpera [Fri, 19 May 2017 03:13:38 +0000 (20:13 -0700)]
[jit] Add unaligned tests.

6 years ago[amd64] Remove the restriction on the locals stack size. Fixes #56452. (#4901)
Zoltan Varga [Fri, 19 May 2017 02:47:56 +0000 (22:47 -0400)]
[amd64] Remove the restriction on the locals stack size. Fixes #56452. (#4901)

7 years ago[jit] Properly handle unaligned memory access.
Rodrigo Kumpera [Thu, 18 May 2017 23:38:05 +0000 (16:38 -0700)]
[jit] Properly handle unaligned memory access.

7 years ago[jit] Assorted small changes.
Rodrigo Kumpera [Thu, 18 May 2017 23:19:22 +0000 (16:19 -0700)]
[jit] Assorted small changes.

Remove 10000 size check in mini_emit_memory_copy_bytes, this is no longer needed now that the memcpy expansion logic in mini_emit_memcpy_internal was fixes.

Use a define for 10000.

Remove useless debug spew.

7 years ago[mini] Remove assert and document reason it can't be used.
Rodrigo Kumpera [Thu, 18 May 2017 22:56:54 +0000 (15:56 -0700)]
[mini] Remove assert and document reason it can't be used.

7 years ago[interp] respect 64bit alignment on armv7
Bernhard Urban [Wed, 17 May 2017 19:52:18 +0000 (21:52 +0200)]
[interp] respect 64bit alignment on armv7

7 years ago[pdb2mdb] Dispose Cecil AssemblyDefinition on pdb2mdb (#4899)
Alexander Köplinger [Thu, 18 May 2017 19:41:08 +0000 (21:41 +0200)]
[pdb2mdb] Dispose Cecil AssemblyDefinition on pdb2mdb (#4899)

Context: https://bugzilla.xamarin.com/show_bug.cgi?id=56275

Recent Cecil 0.10 changed to not reading the assembly in memory but
instead reads directly from the underlying stream [0]. This however
means that the file handle is not freed until the AssemblyDefinition
is disposed.

Xamarin.Android is using the pdb2mdb source as part of
Xamarin.Android.Build.Tasks.dll and hit an issue where the file
would be locked inside of VS.

[0] http://cecil.pe/post/149243207656/mono-cecil-010-beta-1
(cherry picked from commit 5077205a44a7dc97edf6b67072bea53f043cf815)

7 years ago[configure] Add stdalign.h checks for BTLS to ARM platforms too
Alexander Köplinger [Thu, 18 May 2017 18:12:44 +0000 (20:12 +0200)]
[configure] Add stdalign.h checks for BTLS to ARM platforms too

We added it for x86/amd64 in 488b550ac0275c944e0a2c23be93173382084e5f
but missed adding that check when ARM was added recently.

7 years ago[aot] Fix a memory leak related to constraint allocation/deallocation. (#4880)
vkargov [Thu, 18 May 2017 18:08:58 +0000 (11:08 -0700)]
[aot] Fix a memory leak related to constraint allocation/deallocation. (#4880)

* [jit] Make a copy of the constraint in mini_get_shared_gparam().

* [aot] Free the temporary gshared constraint in decode_class_ref().

7 years agoFixes for bug#54388 "InternalsVisibleTo is case sensitive" * Fix the JIT so that...
Katelyn Gadd [Tue, 11 Apr 2017 09:34:43 +0000 (02:34 -0700)]
Fixes for bug#54388 "InternalsVisibleTo is case sensitive" * Fix the JIT so that access checks are performed on constructors * Use ASCII case insensitivity when performing cross-assembly access checks for internals * Update mcs to use case-insensitive comparisons when evaluating InternalsVisibleTo attributes for access checks (matching the new runtime behavior, and the behavior of roslyn)

This issue is actually a pair of bugs:
1. We don't perform any access checks for constructors (which can give a false impression of our behavior for this issue). This means that you can also invoke private constructors from other assemblies.
2. InternalsVisibleTo checks are done using strcmp instead of a case-insensitive comparison.

7 years ago[corlib] Bump DoubleWait test timeouts
Marek Safar [Thu, 18 May 2017 15:43:09 +0000 (17:43 +0200)]
[corlib] Bump DoubleWait test timeouts

7 years agoFix eglibc remapping and revive the test for its completeness. (#4896)
vkargov [Thu, 18 May 2017 15:04:58 +0000 (08:04 -0700)]
Fix eglibc remapping and revive the test for its completeness. (#4896)

* [eglib] Add the missing eglib remappings.

* [tests] Revive the eglib remapping completeness test.

7 years agoAdds System.Net.Http 4.3.2 to blacklist
Marek Safar [Thu, 18 May 2017 07:48:51 +0000 (09:48 +0200)]
Adds System.Net.Http 4.3.2 to blacklist

7 years ago[configure] Remove the --enable-dynamic-btls switch, it is the only option
Alexander Köplinger [Thu, 18 May 2017 10:58:57 +0000 (12:58 +0200)]
[configure] Remove the --enable-dynamic-btls switch, it is the only option

7 years ago[ci] Enable linker tests on PRs
Marek Safar [Tue, 16 May 2017 18:53:32 +0000 (20:53 +0200)]
[ci] Enable linker tests on PRs

7 years agoAdd linker tests
Marek Safar [Thu, 11 May 2017 19:08:25 +0000 (21:08 +0200)]
Add linker tests