mono.git
11 years agoMerge pull request #505 from roji/shutdown_flow
Rodrigo Kumpera [Tue, 12 Mar 2013 21:25:47 +0000 (14:25 -0700)]
Merge pull request #505 from roji/shutdown_flow

Fixed threadpool+ProcessExit problem in shutdown flow

11 years agoAdd stubs for some new .NET 4.0/4.5 WCF APIs.
Martin Baulig [Tue, 12 Mar 2013 20:50:26 +0000 (16:50 -0400)]
Add stubs for some new .NET 4.0/4.5 WCF APIs.

11 years agoSystem.Runtime.Serialization.DateTimeFormat
Martin Baulig [Tue, 5 Mar 2013 23:33:08 +0000 (18:33 -0500)]
System.Runtime.Serialization.DateTimeFormat

11 years agoBigInteger.Parse/TryParse() overloads for .NET 4.0.
Martin Baulig [Tue, 5 Mar 2013 23:23:01 +0000 (18:23 -0500)]
BigInteger.Parse/TryParse() overloads for .NET 4.0.

11 years agoSystem.Progress
Martin Baulig [Tue, 5 Mar 2013 22:40:52 +0000 (17:40 -0500)]
System.Progress

11 years agoAdd System.Text.RegularExpressions.Regex timeout APIs.
Martin Baulig [Tue, 5 Mar 2013 22:20:12 +0000 (17:20 -0500)]
Add System.Text.RegularExpressions.Regex timeout APIs.

11 years agoTrivial API additions.
Martin Baulig [Tue, 12 Mar 2013 20:40:04 +0000 (16:40 -0400)]
Trivial API additions.

11 years agoMissing WebUtility methods.
Martin Baulig [Tue, 5 Mar 2013 22:44:59 +0000 (17:44 -0500)]
Missing WebUtility methods.

11 years agoHttpWebRequest/Response API fixes for .NET 4.5.
Martin Baulig [Tue, 12 Mar 2013 20:23:28 +0000 (16:23 -0400)]
HttpWebRequest/Response API fixes for .NET 4.5.

11 years agoAdd System.IO.Compression.FileSystem stubs.
Martin Baulig [Tue, 12 Mar 2013 20:18:01 +0000 (16:18 -0400)]
Add System.IO.Compression.FileSystem stubs.

11 years agoMisc .NET 4.5 / PCL APIs.
Martin Baulig [Tue, 12 Mar 2013 20:13:21 +0000 (16:13 -0400)]
Misc .NET 4.5 / PCL APIs.

11 years ago[xbuild] It's safe to pass /debug:pdbonly to mcs now
Michael Hutchinson [Tue, 12 Mar 2013 20:28:39 +0000 (16:28 -0400)]
[xbuild] It's safe to pass /debug:pdbonly to mcs now

11 years agoImplement OP_LCONV_TO_I4 using OP_SEXT_I4 instead of OP_LSHR_IMM(0). Fixes #11058.
Zoltan Varga [Tue, 12 Mar 2013 20:31:54 +0000 (21:31 +0100)]
Implement OP_LCONV_TO_I4 using OP_SEXT_I4 instead of OP_LSHR_IMM(0). Fixes #11058.

11 years agoRemove MonoTouch specific code that is now handled without reflection
Sebastien Pouliot [Tue, 12 Mar 2013 20:04:26 +0000 (16:04 -0400)]
Remove MonoTouch specific code that is now handled without reflection

11 years agoRemove dependency on generated file
Marek Safar [Tue, 12 Mar 2013 14:41:45 +0000 (15:41 +0100)]
Remove dependency on generated file

11 years ago[monodoc] Parse and display mastersummary.xml on root:/ ECMA urls
Jeremie Laval [Tue, 12 Mar 2013 13:42:40 +0000 (13:42 +0000)]
[monodoc] Parse and display mastersummary.xml on root:/ ECMA urls

11 years ago[monodoc] Cleanups
Jeremie Laval [Tue, 12 Mar 2013 13:42:12 +0000 (13:42 +0000)]
[monodoc] Cleanups

11 years ago[tests] In GC descriptor tests script, optionally generate huge nested if.
Mark Probst [Mon, 11 Mar 2013 17:43:50 +0000 (10:43 -0700)]
[tests] In GC descriptor tests script, optionally generate huge nested if.

11 years agoOptimize mono_gc_bzero and mono_gc_memmove to closely match native performance.
Rodrigo Kumpera [Mon, 11 Mar 2013 15:03:13 +0000 (11:03 -0400)]
Optimize mono_gc_bzero and mono_gc_memmove to closely match native performance.

* gc.c (mono_gc_memmove): Doing naive word copy turned out to be several times
slower than optimized memmove.Doing optimized memmove is a hellbent problem
because each target (x86, amd64, arm, etc) have multiple implementations based
on which CPU you're currently running on.

Given we're not ready to suck in ten thousand lines of assembly for the benefit
of a few targets a better solution is needed.

The problem we face is due to implementations that don't perform word stores
on the word aligned parts of the destination. This does break things for us
as the CLI environment disallows word tearing for normal operations.

The solution is then to work around the silliness of the known implementations
that basically handle any sorts of misalignment badly. To do so we ensure that
we only call memmove with a word aligned destination and a word multiple size.

This should be enough for OSX, Android, linux and iOS on x86, amd64 and ARM.

11 years agoRe-enable some tests on mt which seem to work now.
Zoltan Varga [Mon, 11 Mar 2013 21:16:46 +0000 (22:16 +0100)]
Re-enable some tests on mt which seem to work now.

11 years agoExport inst_is_gsharedvt_sharable () so it is usable by other parts of the JIT.
Zoltan Varga [Mon, 11 Mar 2013 20:04:16 +0000 (21:04 +0100)]
Export inst_is_gsharedvt_sharable () so it is usable by other parts of the JIT.

11 years agoBump version to 3.0.8
Duncan Mak [Mon, 11 Mar 2013 18:56:15 +0000 (14:56 -0400)]
Bump version to 3.0.8

11 years agoAdd a 'dwarfdebug' AOT option to emit DWARF debug info even if the 'nodebug' AOT...
Zoltan Varga [Mon, 11 Mar 2013 14:29:22 +0000 (15:29 +0100)]
Add a 'dwarfdebug' AOT option to emit DWARF debug info even if the 'nodebug' AOT option is used.

11 years agoMerge pull request #597 from kamalaboulhosn/master
Miguel de Icaza [Mon, 11 Mar 2013 14:18:40 +0000 (07:18 -0700)]
Merge pull request #597 from kamalaboulhosn/master

Translate errno for EHOSTDOWN to WSAEHOSTDOWN

11 years agoAdded translation for EHOSTDOWN errno
Kamal Aboul-Hosn [Sat, 9 Mar 2013 23:10:39 +0000 (18:10 -0500)]
Added translation for EHOSTDOWN errno

11 years agoDisable some tests failing on mt due to #10539/#10552.
Zoltan Varga [Sat, 9 Mar 2013 00:13:11 +0000 (01:13 +0100)]
Disable some tests failing on mt due to #10539/#10552.

11 years agoCorrectly type fixed buffer wrapper type. Fixes #10803
Marek Safar [Fri, 8 Mar 2013 22:45:13 +0000 (23:45 +0100)]
Correctly type fixed buffer wrapper type. Fixes #10803

11 years agoClone shared members list before operators merging. Fixes #10967
Marek Safar [Fri, 8 Mar 2013 21:55:23 +0000 (22:55 +0100)]
Clone shared members list before operators merging. Fixes #10967

11 years agoMerge pull request #469 from symform/symform-better-drive-type-check
Miguel de Icaza [Sat, 9 Feb 2013 22:26:16 +0000 (14:26 -0800)]
Merge pull request #469 from symform/symform-better-drive-type-check

When detecting drive type it is possible that a path might be mounted mo...

11 years agoMerge pull request #594 from Adeath56/patch-1
Miguel de Icaza [Fri, 8 Mar 2013 19:03:34 +0000 (11:03 -0800)]
Merge pull request #594 from Adeath56/patch-1

System.Web.dll : NullReferenceException on GetItemInternal() after a Session.Abandon()

11 years agoMerge pull request #595 from UCIS/master
Miguel de Icaza [Fri, 8 Mar 2013 21:25:47 +0000 (13:25 -0800)]
Merge pull request #595 from UCIS/master

Fixed handling of modifier keys in KeyEventArgs constructor (bug #6707)

11 years agoMove rarely used NamedDataSlot to its own type to cut few dependencies
Marek Safar [Fri, 8 Mar 2013 16:40:03 +0000 (17:40 +0100)]
Move rarely used NamedDataSlot to its own type to cut few dependencies

11 years agoFix failing test
Marek Safar [Fri, 8 Mar 2013 14:56:58 +0000 (15:56 +0100)]
Fix failing test

11 years agoFix constant folding fox null string constants. Fixes #10821
Marek Safar [Fri, 8 Mar 2013 14:46:38 +0000 (15:46 +0100)]
Fix constant folding fox null string constants. Fixes #10821

11 years agoUse faster string comparers
Marek Safar [Fri, 8 Mar 2013 14:42:19 +0000 (15:42 +0100)]
Use faster string comparers

11 years agoUse faster invariant conversion
Marek Safar [Fri, 8 Mar 2013 14:18:48 +0000 (15:18 +0100)]
Use faster invariant conversion

11 years agoUse generics list
Marek Safar [Fri, 8 Mar 2013 13:53:51 +0000 (14:53 +0100)]
Use generics list

11 years agoUse faster string checks
Marek Safar [Fri, 8 Mar 2013 13:52:39 +0000 (14:52 +0100)]
Use faster string checks

11 years agoRemove Collection dependency from ReadOnlyCollection
Marek Safar [Fri, 8 Mar 2013 13:51:29 +0000 (14:51 +0100)]
Remove Collection dependency from ReadOnlyCollection

11 years agoAdd generated Makefile.am to gitignore
Jb Evain [Fri, 8 Mar 2013 14:24:57 +0000 (15:24 +0100)]
Add generated Makefile.am to gitignore

11 years agoAdd mdbrebase generated script to gitignore
Jb Evain [Fri, 8 Mar 2013 14:24:32 +0000 (15:24 +0100)]
Add mdbrebase generated script to gitignore

11 years agoTypeFromCLSID is not available when build with FULL_AOT_RUNTIME (e..g iOS)
Sebastien Pouliot [Fri, 8 Mar 2013 14:17:57 +0000 (09:17 -0500)]
TypeFromCLSID is not available when build with FULL_AOT_RUNTIME (e..g iOS)

11 years agoAdjust OptionalCalendars test so it will work when the linker is enabled
Sebastien Pouliot [Fri, 8 Mar 2013 14:16:33 +0000 (09:16 -0500)]
Adjust OptionalCalendars test so it will work when the linker is enabled

11 years agoAvoid loading AOT modules for ref-only assemblies.
Zoltan Varga [Fri, 8 Mar 2013 02:02:58 +0000 (03:02 +0100)]
Avoid loading AOT modules for ref-only assemblies.

11 years agoFix the mobile build.
Zoltan Varga [Fri, 8 Mar 2013 01:36:04 +0000 (02:36 +0100)]
Fix the mobile build.

11 years agoFix the mobile mscorlib build.
Zoltan Varga [Thu, 7 Mar 2013 19:45:37 +0000 (20:45 +0100)]
Fix the mobile mscorlib build.

11 years agoAvoid a crash if the Volatile class is linked away.
Zoltan Varga [Thu, 7 Mar 2013 19:31:51 +0000 (20:31 +0100)]
Avoid a crash if the Volatile class is linked away.

11 years agoAdd full-aot support for Volatile.Read<T>/Write<T> ().
Zoltan Varga [Thu, 7 Mar 2013 18:59:41 +0000 (19:59 +0100)]
Add full-aot support for Volatile.Read<T>/Write<T> ().

11 years agoFix the encoding of runtime-invoke wrappers in AOT. Add support for gsharedvt delegat...
Zoltan Varga [Thu, 7 Mar 2013 18:44:11 +0000 (19:44 +0100)]
Fix the encoding of runtime-invoke wrappers in AOT. Add support for gsharedvt delegate begin/end-invoke wrappers to full AOT.

11 years agoRemove an inexistent icall added by mistake by 0ff40ae70aa2ffbdf61a9ebb5e47e4932864460a.
Zoltan Varga [Thu, 7 Mar 2013 18:28:24 +0000 (19:28 +0100)]
Remove an inexistent icall added by mistake by 0ff40ae70aa2ffbdf61a9ebb5e47e4932864460a.

11 years agoMake the build .gitignore rule absolute. It didn't like mcs/build/.
Rodrigo Kumpera [Thu, 7 Mar 2013 22:59:39 +0000 (17:59 -0500)]
Make the build .gitignore rule absolute. It didn't like mcs/build/.

11 years agoMove some MOBILE bits under DISABLE_REMOTING as a remoting enabled runtime will need...
Rodrigo Kumpera [Thu, 7 Mar 2013 22:46:04 +0000 (17:46 -0500)]
Move some MOBILE bits under DISABLE_REMOTING as a remoting enabled runtime will need them for
basic functionality.

11 years agoMonotouch has builds with -DISABLE_REMOTING.
Rodrigo Kumpera [Thu, 7 Mar 2013 22:44:28 +0000 (17:44 -0500)]
Monotouch has builds with -DISABLE_REMOTING.

11 years agoAdd a bunch of dummy fields to Assembly under MOBILE to match the native layout.
Rodrigo Kumpera [Thu, 7 Mar 2013 21:08:50 +0000 (16:08 -0500)]
Add a bunch of dummy fields to Assembly under MOBILE to match the native layout.

11 years agoReplace a useless g_assert with a g_error that actually gives us some information.
Rodrigo Kumpera [Thu, 7 Mar 2013 00:33:09 +0000 (19:33 -0500)]
Replace a useless g_assert with a g_error that actually gives us some information.

11 years agoMake sure to unlock InternalThread::synch_cs when we fail to suspend the thread durin...
Rodrigo Kumpera [Thu, 7 Mar 2013 00:30:50 +0000 (19:30 -0500)]
Make sure to unlock InternalThread::synch_cs when we fail to suspend the thread during shutdown.

This should fix both crashes seen during Environment.Exit by xbuild and possibly deadlocks.

11 years agoMake sure all functions in the hot path of eg_utf8_to_utf16_general are inlined.
Rodrigo Kumpera [Mon, 4 Mar 2013 23:34:52 +0000 (18:34 -0500)]
Make sure all functions in the hot path of eg_utf8_to_utf16_general are inlined.

This gives a 33% performance boost on a micro benchmark just triggering a call
to mono_string_new.

11 years agoFixes mobile build
Marek Safar [Thu, 7 Mar 2013 17:30:58 +0000 (18:30 +0100)]
Fixes mobile build

11 years agoUpdate mobile tests
Marek Safar [Thu, 7 Mar 2013 15:33:44 +0000 (16:33 +0100)]
Update mobile tests

11 years agoIgnore SynchronizationAttribute on MT
Marek Safar [Thu, 7 Mar 2013 14:10:43 +0000 (15:10 +0100)]
Ignore SynchronizationAttribute on MT

11 years agoFix binary serialization on mobile
Marek Safar [Thu, 7 Mar 2013 10:34:32 +0000 (11:34 +0100)]
Fix binary serialization on mobile

11 years agoFix a typo introduced by c808ced1e2fa580762a8022754ded9dcaeef0a81.
Zoltan Varga [Thu, 7 Mar 2013 15:26:08 +0000 (16:26 +0100)]
Fix a typo introduced by c808ced1e2fa580762a8022754ded9dcaeef0a81.

11 years agoMake begin-invoke/end-invoke wrappers for generic delegates like Func/Action generic...
Zoltan Varga [Thu, 7 Mar 2013 14:41:05 +0000 (15:41 +0100)]
Make begin-invoke/end-invoke wrappers for generic delegates like Func/Action generic, similarly to 8eae1a7d721b37c9e16e77776d9774b2756dcc68.

11 years agoRemove confusing trailing dot
Marek Safar [Thu, 7 Mar 2013 08:31:06 +0000 (09:31 +0100)]
Remove confusing trailing dot

11 years agoActually iterate returned array
Marek Safar [Thu, 7 Mar 2013 08:27:38 +0000 (09:27 +0100)]
Actually iterate returned array

11 years agoRemove generated file dependency to make fresh checkout tests work out of box
Marek Safar [Thu, 7 Mar 2013 07:46:20 +0000 (08:46 +0100)]
Remove generated file dependency to make fresh checkout tests work out of box

11 years agoMerge pull request #596 from madewokherd/typefromclsid
Marek Safar [Thu, 7 Mar 2013 07:44:40 +0000 (23:44 -0800)]
Merge pull request #596 from madewokherd/typefromclsid

corlib: Implement System.Type.GetTypeFromCLSID.

11 years ago[xbuild] Replace string.ToLower() comparison with OrdinalIgnoreCase comparison
Jonathan Pryor [Thu, 7 Mar 2013 03:36:24 +0000 (22:36 -0500)]
[xbuild] Replace string.ToLower() comparison with OrdinalIgnoreCase comparison

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

The scenario is the "turkish-i problem": Have an MSBuild Task Assembly
which calls ITaskItem.GetMetadata("Identity") (like, oh, the
Xamarin.Android build system...). Run in a Turkish locale (tr-TR), and
things fail badly:

Error executing task AndroidComputeResPaths: System.ArgumentException: Invalid reserved metadata name
  at Mono.XBuild.Utilities.ReservedNameUtils.GetReservedMetadata (System.String itemSpec, System.String metadataName, IDictionary metadata) [0x00000] in <filename unknown>:0
  at Microsoft.Build.Utilities.TaskItem.GetMetadata (System.String metadataName) [0x00000] in <filename unknown>:0
  at Xamarin.Android.Tasks.AndroidComputeResPaths.Execute () [0x00000] in <filename unknown>:0
  at Microsoft.Build.BuildEngine.TaskEngine.Execute () [0x00000] in <filename unknown>:0
  at Microsoft.Build.BuildEngine.BuildTask.Execute () [0x00000] in <filename unknown>:0

Wat? Well, in tr-TR, "Identity".ToLower() is "ıdentity", which
doesn't match match anything in GetReservedMetadata()'s `switch`
statement, so it throws an ArgumentException. *BOOM*.

So, if you need a culture-invariant comparison, USE IT.

Related: We could have just s/ToLower/ToLowerInvariant/g, which would
have fixed the problem, but would still result in lots of string
temporaries that aren't really necessary. Use the appropriate
string.Compare() or string.Equals() methods instead to avoid the
string temporary as well.

11 years agoImplement Volatile.Read/Write<T> and Interlocked.MemoryBarrier ().
Zoltan Varga [Thu, 7 Mar 2013 01:41:46 +0000 (02:41 +0100)]
Implement Volatile.Read/Write<T> and Interlocked.MemoryBarrier ().

11 years agoAdd stubs for some NET 4.5 ThreadLocal ctors/methods.
Zoltan Varga [Thu, 7 Mar 2013 01:14:11 +0000 (02:14 +0100)]
Add stubs for some NET 4.5 ThreadLocal ctors/methods.

11 years agoClean up the code which handles prepending _ to global symbol names on MACH by doing...
Zoltan Varga [Thu, 7 Mar 2013 01:00:42 +0000 (02:00 +0100)]
Clean up the code which handles prepending _ to global symbol names on MACH by doing it in aot-compiler.c instead of the image writer.

11 years ago[sgen] Just warn, don't abort, on invalid MONO_GC_PARAM or MONO_GC_DEBUG options.
Mark Probst [Wed, 6 Mar 2013 23:38:16 +0000 (15:38 -0800)]
[sgen] Just warn, don't abort, on invalid MONO_GC_PARAM or MONO_GC_DEBUG options.

11 years agocorlib: Implement System.Type.GetTypeFromCLSID.
Vincent Povirk [Wed, 6 Mar 2013 22:13:25 +0000 (16:13 -0600)]
corlib: Implement System.Type.GetTypeFromCLSID.

This commit is licensed as MIT/X11.

11 years ago[Mono.Debugger.Soft] Made the receiver thread a background thread and gave it a name
Jeffrey Stedfast [Wed, 6 Mar 2013 21:00:07 +0000 (16:00 -0500)]
[Mono.Debugger.Soft] Made the receiver thread a background thread and gave it a name

11 years ago[sgen] Allow empty parameters in MONO_GC_PARAMS and MONO_GC_DEBUG.
Mark Probst [Wed, 6 Mar 2013 19:27:40 +0000 (11:27 -0800)]
[sgen] Allow empty parameters in MONO_GC_PARAMS and MONO_GC_DEBUG.

This allows easy appending/prepending, like so:

    export MONO_GC_PARAMS="major=marksweep-conc,$MONO_GC_PARAMS"

11 years agoFix some ARM assembly in MONO_CONTEXT_GET_CURRENT ().
Zoltan Varga [Wed, 6 Mar 2013 19:20:13 +0000 (20:20 +0100)]
Fix some ARM assembly in MONO_CONTEXT_GET_CURRENT ().

11 years agoMake the JIT icall wrappers for opcode emulation jit icalls call the C icall function...
Zoltan Varga [Wed, 6 Mar 2013 18:31:47 +0000 (19:31 +0100)]
Make the JIT icall wrappers for opcode emulation jit icalls call the C icall function directly on MT.

11 years agoModify the way calls to icalls are made from the icall wrappers. Previously, the...
Zoltan Varga [Wed, 6 Mar 2013 17:49:46 +0000 (18:49 +0100)]
Modify the way calls to icalls are made from the icall wrappers. Previously, the address to call was encoded in an OP_PCONST, and various pieces of code looked up the value in the jit icall table to see if it was an icall address. With the new approach, the fact that this is an icall address is explicit through the JIT.

11 years agoFix AOT on osx+amd64.
Zoltan Varga [Wed, 6 Mar 2013 17:46:25 +0000 (18:46 +0100)]
Fix AOT on osx+amd64.

11 years agoFixed handling of modifier keys in KeyEventArgs constructor (bug #6707)
Ivo Smits [Wed, 6 Mar 2013 16:31:47 +0000 (17:31 +0100)]
Fixed handling of modifier keys in KeyEventArgs constructor (bug #6707)

11 years agoMerge pull request #593 from Cynede/master
Mark Probst [Wed, 6 Mar 2013 16:16:28 +0000 (08:16 -0800)]
Merge pull request #593 from Cynede/master

Python 3 compatibility in gen-descriptor-tests.py

11 years agoDisable more security context tests on mobile
Marek Safar [Wed, 6 Mar 2013 14:50:22 +0000 (15:50 +0100)]
Disable more security context tests on mobile

11 years agoUse more specific types
Marek Safar [Wed, 6 Mar 2013 14:49:46 +0000 (15:49 +0100)]
Use more specific types

11 years agouse floor division // instead of / because in python 3 / returns float, // works...
Heather [Tue, 5 Mar 2013 07:26:22 +0000 (11:26 +0400)]
use floor division // instead of / because in python 3 / returns float, // works in python 2 too

11 years agopython 3 compatibility in gen-descriptor-tests.py
Heather [Tue, 5 Mar 2013 06:52:00 +0000 (10:52 +0400)]
python 3 compatibility in gen-descriptor-tests.py

11 years agoOptimize Activator path used by new() constraint to run less code
Marek Safar [Wed, 6 Mar 2013 10:16:29 +0000 (11:16 +0100)]
Optimize Activator path used by new() constraint to run less code

11 years agoFix exception test text
Marek Safar [Wed, 6 Mar 2013 10:15:51 +0000 (11:15 +0100)]
Fix exception test text

11 years agoAdd test from Jb Evain to test biner with user method types
Marek Safar [Wed, 6 Mar 2013 09:23:47 +0000 (10:23 +0100)]
Add test from Jb Evain to test biner with user method types

11 years agoActivator cannot be used to create default instances of user types
Marek Safar [Tue, 5 Mar 2013 18:16:07 +0000 (19:16 +0100)]
Activator cannot be used to create default instances of user types

11 years ago[sgen] Unify non-concurrent and concurrent M&S.
Mark Probst [Tue, 5 Mar 2013 20:47:17 +0000 (12:47 -0800)]
[sgen] Unify non-concurrent and concurrent M&S.

11 years ago[tests] Init Random with defined value in GC descriptor tests.
Mark Probst [Tue, 5 Mar 2013 20:55:42 +0000 (12:55 -0800)]
[tests] Init Random with defined value in GC descriptor tests.

So we can reproduce bugs and compare time/space if we want.

11 years agoBump version number to 3.0.7.
Duncan Mak [Tue, 5 Mar 2013 18:15:04 +0000 (13:15 -0500)]
Bump version number to 3.0.7.

11 years agoChange the linkage of the type_info symbols generated by the LLVM backend, since...
Zoltan Varga [Tue, 5 Mar 2013 16:34:44 +0000 (17:34 +0100)]
Change the linkage of the type_info symbols generated by the LLVM backend, since using LLVMPrivateLinkage causes LLVM to generate assembly which is not allowed by clang. Fixes #10811.

11 years agoDon't mark unused interface methods. Fixes #10866
Marek Safar [Tue, 5 Mar 2013 15:58:23 +0000 (16:58 +0100)]
Don't mark unused interface methods. Fixes #10866

11 years agoRemove redundant culture info from string concatenations
Marek Safar [Tue, 5 Mar 2013 15:44:38 +0000 (16:44 +0100)]
Remove redundant culture info from string concatenations

11 years ago[rx] Add missing AssemblyInfos.
Atsushi Eno [Tue, 5 Mar 2013 15:56:35 +0000 (00:56 +0900)]
[rx] Add missing AssemblyInfos.

11 years agoAdd Assembly version attributes to hopefully fix bug #10002.
Atsushi Eno [Tue, 5 Mar 2013 14:57:39 +0000 (23:57 +0900)]
Add Assembly version attributes to hopefully fix bug #10002.

11 years agoUpdate binder primitive conversion to match .net
Marek Safar [Tue, 5 Mar 2013 14:02:40 +0000 (15:02 +0100)]
Update binder primitive conversion to match .net

11 years agoTweaks to Enum::FormatName to make it faster/smaller
Marek Safar [Tue, 5 Mar 2013 14:00:58 +0000 (15:00 +0100)]
Tweaks to Enum::FormatName to make it faster/smaller

11 years agoType.FilterAttribute accepts int criteria only
Marek Safar [Tue, 5 Mar 2013 11:54:03 +0000 (12:54 +0100)]
Type.FilterAttribute accepts int criteria only