mono.git
12 years agoMerge pull request #93 from konrad-kruczynski/dispatcher_timer_fix
Miguel de Icaza [Thu, 28 Jul 2011 14:32:14 +0000 (07:32 -0700)]
Merge pull request #93 from konrad-kruczynski/dispatcher_timer_fix

[Fix] Fix for bug #677265 with DispatcherTimer.

12 years agoMerge pull request #136 from spencerhakim/master
Miguel de Icaza [Thu, 28 Jul 2011 14:27:32 +0000 (07:27 -0700)]
Merge pull request #136 from spencerhakim/master

Fixed SKEL_DIRECTORY definition in Release build of jay2010.vcxproj

12 years agoMerge pull request #139 from HorstKakuschke/master
Miguel de Icaza [Thu, 28 Jul 2011 14:25:00 +0000 (07:25 -0700)]
Merge pull request #139 from HorstKakuschke/master

Fix for Xamarin Bug 42: Exception 'TypeConverter cannot convert from System.String' when specifying soapExtensionReflectorTypes

12 years agoSame test for TaskCompletionSource
Jérémie Laval [Wed, 27 Jul 2011 23:51:19 +0000 (19:51 -0400)]
Same test for TaskCompletionSource

12 years agoEnsure that Task is in a correct initial state before starting it for real
Jérémie Laval [Wed, 27 Jul 2011 23:36:40 +0000 (19:36 -0400)]
Ensure that Task is in a correct initial state before starting it for real

12 years agoTest that futures throw Exception through Result property when they are Faulted
Jérémie Laval [Wed, 27 Jul 2011 23:35:50 +0000 (19:35 -0400)]
Test that futures throw Exception through Result property when they are Faulted

12 years agoAdd test for various AggregateException ctor exception situations
Jérémie Laval [Wed, 27 Jul 2011 22:31:13 +0000 (18:31 -0400)]
Add test for various AggregateException ctor exception situations

12 years agoMove innerExceptions internal null check at the right place.
Jérémie Laval [Wed, 27 Jul 2011 22:20:57 +0000 (18:20 -0400)]
Move innerExceptions internal null check at the right place.

12 years agoAdd testcase to ensure unobserved exception on Task are correctly propagated
Jérémie Laval [Wed, 27 Jul 2011 22:12:23 +0000 (18:12 -0400)]
Add testcase to ensure unobserved exception on Task are correctly propagated

12 years agoMakes AggregateException ToString output closer to .NET one
Jérémie Laval [Wed, 27 Jul 2011 22:01:22 +0000 (18:01 -0400)]
Makes AggregateException ToString output closer to .NET one

12 years agoFix AggregateException behavior
Jérémie Laval [Wed, 27 Jul 2011 21:51:20 +0000 (17:51 -0400)]
Fix AggregateException behavior

12 years agoAllow using a worker number that is greater than Environment.ProcessorCount for paral...
Jérémie Laval [Wed, 27 Jul 2011 20:22:24 +0000 (16:22 -0400)]
Allow using a worker number that is greater than Environment.ProcessorCount for parallel loops.

12 years agoAdd missing check for async scope in array access
Marek Safar [Wed, 27 Jul 2011 17:35:56 +0000 (18:35 +0100)]
Add missing check for async scope in array access

12 years agoNew test
Marek Safar [Wed, 27 Jul 2011 16:34:42 +0000 (17:34 +0100)]
New test

12 years ago[708408] Don't start recursive check when reporting inaccesible base type
Marek Safar [Wed, 27 Jul 2011 16:23:48 +0000 (17:23 +0100)]
[708408] Don't start recursive check when reporting inaccesible base type

12 years agoFix wsdl import wrt element qname (!= type name).
Atsushi Eno [Thu, 28 Jul 2011 04:03:31 +0000 (21:03 -0700)]
Fix wsdl import wrt element qname (!= type name).

12 years ago[sgen] Don't allow nursery sizes smaller than SGEN_MAX_NURSERY_WASTE.
Mark Probst [Wed, 27 Jul 2011 11:06:55 +0000 (13:06 +0200)]
[sgen] Don't allow nursery sizes smaller than SGEN_MAX_NURSERY_WASTE.

That's the smallest TLAB size SGen will use, so having a smaller
nursery makes no sense as it will never be used and all allocation
will be degraded.

12 years ago[sgen] Construct the array_fill_vtable manually.
Mark Probst [Wed, 27 Jul 2011 11:05:37 +0000 (13:05 +0200)]
[sgen] Construct the array_fill_vtable manually.

For very small nursery sizes the initalization happened too late, and
we can't do it early because we depend on other runtime stuff being
initialized.  This is a clean solution that only requires the byte
class to be initialized.

12 years ago[sgen] Accept numbers without suffixes in env var parameters.
Mark Probst [Wed, 27 Jul 2011 11:03:00 +0000 (13:03 +0200)]
[sgen] Accept numbers without suffixes in env var parameters.

12 years agoDon't invoke libc uname() on non-Unix systems
Jeffrey Stedfast [Tue, 26 Jul 2011 22:40:38 +0000 (18:40 -0400)]
Don't invoke libc uname() on non-Unix systems

12 years agoAvoid creating a temporary variable when target await expression is does not include...
Marek Safar [Tue, 26 Jul 2011 21:14:04 +0000 (22:14 +0100)]
Avoid creating a temporary variable when target await expression is does not include await

12 years agoUse simple null check for implicitly convertible reference types is check
Marek Safar [Tue, 26 Jul 2011 20:31:06 +0000 (21:31 +0100)]
Use simple null check for implicitly convertible reference types is check

12 years ago[sgen] Use the proper object size when scanning arrays from a card table.
Mark Probst [Tue, 26 Jul 2011 15:33:49 +0000 (17:33 +0200)]
[sgen] Use the proper object size when scanning arrays from a card table.

Using the block object size is incorrect since we might scan beyond
the end of the array.

12 years ago[sgen] Make the card table on AMD64 correct for 64 bit nursery addresses.
Mark Probst [Tue, 26 Jul 2011 14:37:48 +0000 (16:37 +0200)]
[sgen] Make the card table on AMD64 correct for 64 bit nursery addresses.

12 years ago[sgen] Print a warning when using binary protocol and card tables.
Mark Probst [Tue, 26 Jul 2011 14:36:56 +0000 (16:36 +0200)]
[sgen] Print a warning when using binary protocol and card tables.

12 years ago[sgen] Binary protocol for every write barrier, not just the generic store one.
Mark Probst [Tue, 26 Jul 2011 13:53:52 +0000 (15:53 +0200)]
[sgen] Binary protocol for every write barrier, not just the generic store one.

12 years ago[sgen] Make the binary protocol compile and work again.
Mark Probst [Tue, 26 Jul 2011 13:52:50 +0000 (15:52 +0200)]
[sgen] Make the binary protocol compile and work again.

12 years ago[sgen] Fix mono_gc_wbarrier_value_copy() for remsets.
Mark Probst [Tue, 26 Jul 2011 13:52:00 +0000 (15:52 +0200)]
[sgen] Fix mono_gc_wbarrier_value_copy() for remsets.

We must store the element size, not the size of the whole array.

12 years ago[sgen] Make mono_sgen_safe_object_get_size() handle forwarded objects.
Mark Probst [Tue, 26 Jul 2011 13:50:05 +0000 (15:50 +0200)]
[sgen] Make mono_sgen_safe_object_get_size() handle forwarded objects.

This is sometimes called on forwarded objects from the major collector
during finalization.  Now it doesn't crash anymore.

12 years agoFix windows build.
Zoltan Varga [Mon, 25 Jul 2011 13:35:52 +0000 (15:35 +0200)]
Fix windows build.

12 years agoFix invocation to syslog
Miguel de Icaza [Mon, 25 Jul 2011 23:08:43 +0000 (19:08 -0400)]
Fix invocation to syslog

12 years agoFix bug #16: use Owner node instead of Parent. Patch by Martin Potter.
Atsushi Eno [Mon, 25 Jul 2011 19:25:00 +0000 (04:25 +0900)]
Fix bug #16: use Owner node instead of Parent. Patch by Martin Potter.

12 years agoFixed decoding of PKCS/CMS message with detached ContentInfo. Pull request from Pablo...
Sebastien Pouliot [Mon, 25 Jul 2011 13:58:14 +0000 (09:58 -0400)]
Fixed decoding of PKCS/CMS message with detached ContentInfo. Pull request from Pablo Ruiz Garcia <pablo.ruiz@gmail.com>

12 years agoFix a crash in the soft-float decompose code when a branch following an fcompare...
Zoltan Varga [Sun, 24 Jul 2011 18:41:58 +0000 (20:41 +0200)]
Fix a crash in the soft-float decompose code when a branch following an fcompare is optimized away. Fixes #705186.

12 years agoAdd a test for 7cb704d9a9ec73eb225c27b51e7f47de033e0ac0.
Zoltan Varga [Tue, 12 Jul 2011 01:18:46 +0000 (03:18 +0200)]
Add a test for 7cb704d9a9ec73eb225c27b51e7f47de033e0ac0.

12 years agoRemove references to mono_pthread_key_for_tls(). Fixes builds.
Mark Probst [Sat, 23 Jul 2011 19:29:30 +0000 (21:29 +0200)]
Remove references to mono_pthread_key_for_tls().  Fixes builds.

12 years agoadd put support in certmgr (git pull request 124 by rabink)
Sebastien Pouliot [Sat, 23 Jul 2011 19:09:56 +0000 (15:09 -0400)]
add put support in certmgr (git pull request 124 by rabink)

12 years agoExpose new ReadLines extension methods in the mobile-based profiles
Sebastien Pouliot [Sat, 23 Jul 2011 15:03:44 +0000 (11:03 -0400)]
Expose new ReadLines extension methods in the mobile-based profiles

12 years agoFix for Bug 42: Exception 'TypeConverter cannot convert from System.String' when...
HorstKakuschke [Fri, 22 Jul 2011 17:17:56 +0000 (19:17 +0200)]
Fix for Bug 42: Exception 'TypeConverter cannot convert from System.String' when specifying soapExtensionReflectorTypes

Added type conversion via class TypeTypeConverter for configuration property "type"

12 years agoMerge pull request #137 from eisnerd/bug-xpath-reverse-axes-497017
Atsushi Eno [Fri, 22 Jul 2011 14:20:08 +0000 (07:20 -0700)]
Merge pull request #137 from eisnerd/bug-xpath-reverse-axes-497017

XPath reverse axes bug #497017

12 years agoTLS is always fast now, so remove NO_TLS_SET_VALUE in domain.c.
Mark Probst [Fri, 22 Jul 2011 09:55:30 +0000 (11:55 +0200)]
TLS is always fast now, so remove NO_TLS_SET_VALUE in domain.c.

12 years agoRemove io-layer Windows API TLS emulation code.
Mark Probst [Fri, 22 Jul 2011 09:48:36 +0000 (11:48 +0200)]
Remove io-layer Windows API TLS emulation code.

We should always use native TLS.  The Windows TLS emulation adds
an unnecessary layer and even slows us down considerably on some
platforms: The TlsGetValue() code not only does a TLS get, but,
since it calls SetLastError(), also a TLS set, so on platforms
with slow TLS set, TLS get will also be slow.

This will almost certainly break something.  I beg forgiveness.

12 years agoAvoid possible duplicate xmlns output. Fixes xsp-based hosting somehow.
Atsushi Eno [Fri, 22 Jul 2011 05:02:48 +0000 (14:02 +0900)]
Avoid possible duplicate xmlns output. Fixes xsp-based hosting somehow.

12 years agoRemoval of XPath debugging code relating to bug #497017, leaving the new test cases
David Eisner [Thu, 21 Jul 2011 22:28:32 +0000 (23:28 +0100)]
Removal of XPath debugging code relating to bug #497017, leaving the new test cases

12 years agoXPath test cases and debugging code relating to bug #497017
David Eisner [Thu, 21 Jul 2011 22:20:13 +0000 (23:20 +0100)]
XPath test cases and debugging code relating to bug #497017

12 years agoCorrected XPath iterator for ancestor-or-self axes for runaway behaviour
David Eisner [Thu, 21 Jul 2011 22:19:00 +0000 (23:19 +0100)]
Corrected XPath iterator for ancestor-or-self axes for runaway behaviour

Adding a test case for ancestor-or-self along the lines of the existing one for ancestor showed runaway, memory-eating behaviour. In changing CollectResults to remove the livelock, it seemed simplest to remove the extra yield of the root from MoveNextCore. I was unable to ascertain a good reason for producing this element in this special way compared to the AncestorIterator.

12 years agoFixed the XPath built-in position function for bug #497017
David Eisner [Thu, 21 Jul 2011 22:07:02 +0000 (23:07 +0100)]
Fixed the XPath built-in position function for bug #497017

According to http://www.w3.org/TR/xpath#predicates, a predicate [n] should be equivalent to [position()=n] for a number expression n. However, we currently have a PredicateIterator intepretation of [n] that has been corrected for the issue outlined in the bug report, leaving the position() function behind with an inappropriate, document-order value for reverse axes. Note that [n] is not treated by parsing or transforming to the same form as [position()=n] before evaluation, valid as that would be.

The discussion in that same section of the recommendation about forward and reverse axes and further remarks in http://www.w3.org/TR/xpath#node-sets make it clear that the predicate [1] has the sense of "nearest" rather than "first in the document" which then, depending on the axis type, may be the same or reverse of the document order. It does not seem to me to be so clear whether the order given by a navigator for a location path expression should mirror this or always give the document order. The .Net implementation seems to always give the document order, as well as predicates having the correct reverse/forward senses, so I have added test cases that explore both.

12 years agoRemove obsolete and broken msvc05 files.
Zoltan Varga [Thu, 21 Jul 2011 14:33:37 +0000 (16:33 +0200)]
Remove obsolete and broken msvc05 files.

12 years agoInclude context member name in async wrapper to easier debugging
Marek Safar [Thu, 21 Jul 2011 11:33:06 +0000 (12:33 +0100)]
Include context member name in async wrapper to easier debugging

12 years agoMore emit updates to handle await sub-expressions
Marek Safar [Thu, 21 Jul 2011 10:03:09 +0000 (11:03 +0100)]
More emit updates to handle await sub-expressions

12 years agoFix bug #703910 - implement Order support in XmlSerializer.
Atsushi Eno [Wed, 20 Jul 2011 19:57:32 +0000 (04:57 +0900)]
Fix bug #703910 - implement Order support in XmlSerializer.

12 years agoType details are no longer need when emitting ldloc
Marek Safar [Wed, 20 Jul 2011 17:30:07 +0000 (18:30 +0100)]
Type details are no longer need when emitting ldloc

12 years agoRemove failed approach to await stack handling
Marek Safar [Wed, 20 Jul 2011 11:31:22 +0000 (12:31 +0100)]
Remove failed approach to await stack handling

12 years agoHandle await in liften binary expression with compound assignment
Marek Safar [Wed, 20 Jul 2011 10:55:36 +0000 (11:55 +0100)]
Handle await in liften binary expression with compound assignment

12 years agoReport full method name for IL code mismatch
Marek Safar [Wed, 20 Jul 2011 09:47:19 +0000 (10:47 +0100)]
Report full method name for IL code mismatch

12 years agoAllow IsolatedStorage to work on MOBILE profiles even when CAS types are linked out
Sebastien Pouliot [Wed, 20 Jul 2011 17:29:46 +0000 (13:29 -0400)]
Allow IsolatedStorage to work on MOBILE profiles even when CAS types are linked out

12 years agoanother case where the linker needs help to eliminate CAS
Sebastien Pouliot [Wed, 20 Jul 2011 15:39:48 +0000 (11:39 -0400)]
another case where the linker needs help to eliminate CAS

12 years agoFixed SKEL_DIRECTORY pre-processor definition in Release build of jay2010.vcxproj
Spencer Hakim [Wed, 20 Jul 2011 14:37:46 +0000 (10:37 -0400)]
Fixed SKEL_DIRECTORY pre-processor definition in Release build of jay2010.vcxproj

12 years agoEnsure the linker can eliminate most CAS-related types in the MOBILE-based profiles
Sebastien Pouliot [Wed, 20 Jul 2011 12:12:49 +0000 (08:12 -0400)]
Ensure the linker can eliminate most CAS-related types in the MOBILE-based profiles

12 years agoEnsure the linker can eliminate the *RequestCreator code without extra instructions.
Sebastien Pouliot [Wed, 20 Jul 2011 11:58:29 +0000 (07:58 -0400)]
Ensure the linker can eliminate the *RequestCreator code without extra instructions.

12 years agoHonour command line checked option during emit phase
Marek Safar [Wed, 20 Jul 2011 08:03:11 +0000 (09:03 +0100)]
Honour command line checked option during emit phase

12 years agoType matching is fun
Geoff Norton [Wed, 20 Jul 2011 02:33:09 +0000 (22:33 -0400)]
Type matching is fun

12 years agoinfo->signal does not exist on MACH either
Geoff Norton [Wed, 20 Jul 2011 02:28:17 +0000 (22:28 -0400)]
info->signal does not exist on MACH either

12 years agoinfo->stop_count does not exist on MACH
Geoff Norton [Wed, 20 Jul 2011 02:27:01 +0000 (22:27 -0400)]
info->stop_count does not exist on MACH

12 years agoFix build
Miguel de Icaza [Tue, 19 Jul 2011 23:35:08 +0000 (19:35 -0400)]
Fix build

12 years agoNew function: mono_valloc_aligned().
Mark Probst [Tue, 19 Jul 2011 16:48:12 +0000 (18:48 +0200)]
New function: mono_valloc_aligned().

Some platforms have APIs for this, so it makes sense to
use them instead of our wasteful approach of allocing more
memory and then freeing off the edges.

12 years ago[sgen] rehash_roots() must take an int, not a boolean.
Mark Probst [Tue, 19 Jul 2011 15:48:35 +0000 (17:48 +0200)]
[sgen] rehash_roots() must take an int, not a boolean.

12 years ago[sgen] Use g_usleep() instead of usleep().
Mark Probst [Tue, 19 Jul 2011 12:51:38 +0000 (14:51 +0200)]
[sgen] Use g_usleep() instead of usleep().

12 years ago[sgen] Include config.h in all of SGen's compilation units.
Mark Probst [Tue, 19 Jul 2011 11:57:55 +0000 (13:57 +0200)]
[sgen] Include config.h in all of SGen's compilation units.

12 years agoAdd System.Data.Services.Client to monotouch and monodroid profiles.
Jonathan Pryor [Tue, 19 Jul 2011 16:01:08 +0000 (12:01 -0400)]
Add System.Data.Services.Client to monotouch and monodroid profiles.

12 years agoremove unrequired using clauses
Sebastien Pouliot [Tue, 19 Jul 2011 14:34:31 +0000 (10:34 -0400)]
remove unrequired using clauses

12 years agoavoid potential InvalidCastException when we already deal with bad/non-present extens...
Sebastien Pouliot [Thu, 14 Jul 2011 20:40:41 +0000 (16:40 -0400)]
avoid potential InvalidCastException when we already deal with bad/non-present extensions (reduce error message when -E:all is used)

12 years agoFix resolving referenced extension methods used in nested namespace
Marek Safar [Tue, 19 Jul 2011 13:34:50 +0000 (14:34 +0100)]
Fix resolving referenced extension methods used in nested namespace

12 years agoEmit valid code for nullable mutators used as an expression
Marek Safar [Tue, 19 Jul 2011 07:55:52 +0000 (08:55 +0100)]
Emit valid code for nullable mutators used as an expression

12 years agoAwait support for more expressions
Marek Safar [Fri, 15 Jul 2011 15:08:36 +0000 (16:08 +0100)]
Await support for more expressions

12 years agofix build regarding ContentType.
Atsushi Eno [Tue, 19 Jul 2011 00:05:27 +0000 (09:05 +0900)]
fix build regarding ContentType.

12 years agoFix the altstack check so it works under osx.
Rodrigo Kumpera [Mon, 18 Jul 2011 18:38:35 +0000 (15:38 -0300)]
Fix the altstack check so it works under osx.

12 years agoDo some portability adjustments so altstack works on osx.
Rodrigo Kumpera [Mon, 18 Jul 2011 18:42:45 +0000 (15:42 -0300)]
Do some portability adjustments so altstack works on osx.

* mini-exceptions.c (mono_setup_altstack): Use stack_t instead
of struct sigaltstack. Don't set ss_flags as OSX doesn't like it.

* mini-exceptions.c (mono_free_altstack): Use stack_t instead
of struct sigaltstack.

12 years agoOn OSX do SIGBUS on altstack as well since it's used for *0.
Rodrigo Kumpera [Mon, 18 Jul 2011 18:13:16 +0000 (15:13 -0300)]
On OSX do SIGBUS on altstack as well since it's used for *0.

12 years agoHandle altstack exceptions in a more portable way on x86.
Rodrigo Kumpera [Mon, 18 Jul 2011 18:09:15 +0000 (15:09 -0300)]
Handle altstack exceptions in a more portable way on x86.

* exceptions-x86.c (mono_arch_handle_altstack_exception): Push a
MonoContext to the stack instead of an ucontext. It's smaller
and more portable since we don't have to bother with internal
pointers.

12 years agoFix stack overflow code to work under darwin-x86.
Rodrigo Kumpera [Sun, 17 Jul 2011 16:42:34 +0000 (13:42 -0300)]
Fix stack overflow code to work under darwin-x86.

* mini-x86.h: Respect MINSIGSTKSZ under OSX.

* mini-amd64.h: Ditto.

12 years agoFix mono_thread_get_stack_bounds thread bounds.
Rodrigo Kumpera [Sun, 17 Jul 2011 01:32:10 +0000 (22:32 -0300)]
Fix mono_thread_get_stack_bounds thread bounds.

12 years ago[sgen] Use ptrdiff_t instead of ssize_t.
Mark Probst [Mon, 18 Jul 2011 17:59:45 +0000 (19:59 +0200)]
[sgen] Use ptrdiff_t instead of ssize_t.

12 years ago[sgen] Move all signal stuff into sgen-os-posix.c.
Mark Probst [Mon, 18 Jul 2011 17:58:11 +0000 (19:58 +0200)]
[sgen] Move all signal stuff into sgen-os-posix.c.

This might make Mach stop working or uncompilable.

12 years ago[gc] Don't do unaligned loads in mono_gc_memmove ().
Mark Probst [Mon, 18 Jul 2011 15:27:13 +0000 (17:27 +0200)]
[gc] Don't do unaligned loads in mono_gc_memmove ().

This caused problems on S390x, at least.

12 years agosupport action parameter in SOAP 1.2 content type. Close pull request #133.
Atsushi Eno [Mon, 18 Jul 2011 17:28:59 +0000 (02:28 +0900)]
support action parameter in SOAP 1.2 content type. Close pull request #133.

12 years agoFix bug 704813: just ignore members of type IEnumerable`1 without Add().
Atsushi Eno [Sat, 16 Jul 2011 13:48:41 +0000 (06:48 -0700)]
Fix bug 704813: just ignore members of type IEnumerable`1 without Add().

12 years agoIf a thread abort is fatal, print the exception before dying.
Rodrigo Kumpera [Fri, 15 Jul 2011 20:54:38 +0000 (17:54 -0300)]
If a thread abort is fatal, print the exception before dying.

12 years agoImprove stacktraces when facing a runtime invoke wrapper.
Rodrigo Kumpera [Fri, 15 Jul 2011 20:49:41 +0000 (17:49 -0300)]
Improve stacktraces when facing a runtime invoke wrapper.

* mini-exceptions.c (mono_handle_exception_internal_first_pass):
Don't trim the trace list if we find a filter clause from a wrapper.
This makes stacktraces across MRI's work.
Extract trace trimming into a macro to reduce code duplication.

12 years agoAwait support for more expressions
Marek Safar [Fri, 15 Jul 2011 14:53:17 +0000 (15:53 +0100)]
Await support for more expressions

12 years agoAdd await support for more expressions
Marek Safar [Thu, 14 Jul 2011 12:22:37 +0000 (13:22 +0100)]
Add await support for more expressions

12 years agoUse array index instead of an iterator when checking interfaces
Marek Safar [Thu, 14 Jul 2011 08:16:16 +0000 (09:16 +0100)]
Use array index instead of an iterator when checking interfaces

12 years ago[sgen] Option for an allowance limit.
Mark Probst [Wed, 13 Jul 2011 17:07:52 +0000 (19:07 +0200)]
[sgen] Option for an allowance limit.

The metric for deciding when to trigger a major collection assumes
that there's unlimited memory, so it does, especially since it's
probably buggy and certainly not very smart, sometimes allow too much
allocation to happen.  This new option is a way to tell SGen where to
draw the line.  Note that memory will still be allocated, it's just
that once the limit is overstepped, major collections happen more
frequently to keep memory usage down.

12 years agoImplement await for new expressions
Marek Safar [Wed, 13 Jul 2011 16:25:06 +0000 (17:25 +0100)]
Implement await for new expressions

12 years agoImplement async inside a method with MVARs and contraints
Marek Safar [Wed, 13 Jul 2011 16:00:22 +0000 (17:00 +0100)]
Implement async inside a method with MVARs and contraints

12 years agoAwait for array access expression
Marek Safar [Wed, 13 Jul 2011 08:39:18 +0000 (09:39 +0100)]
Await for array access expression

12 years agoReturn from async method has to also skip following code block
Marek Safar [Tue, 12 Jul 2011 12:45:59 +0000 (13:45 +0100)]
Return from async method has to also skip following code block

12 years agoAvoid a .cctor on the initialization path.
Rodrigo Kumpera [Tue, 12 Jul 2011 14:01:16 +0000 (11:01 -0300)]
Avoid a .cctor on the initialization path.

12 years agoAdd shared_perfcounters option to enable minimal.
Rodrigo Kumpera [Tue, 12 Jul 2011 14:01:10 +0000 (11:01 -0300)]
Add shared_perfcounters option to enable minimal.

12 years ago[gc] Fix a bug in atomic memmove.
Mark Probst [Tue, 12 Jul 2011 15:37:32 +0000 (17:37 +0200)]
[gc] Fix a bug in atomic memmove.