[Mono-dev] Where is trampoline x86 pseudo code documented?

2010-03-06 Thread cpMon
Is there a document that describes the x86 pseudo code your JIT engine uses. For example, it would be a lot easier for me to find bugs for you if I didn't have to reverse-engineer things such as: Thanks, Cal Page if ( 0 mono_thread_get_tls_offset () != -1) { /*

Re: [Mono-dev] Where is trampoline x86 pseudo code documented?

2010-03-06 Thread Kornél Pál
Hi, I wouldn't say that this is pseudo-code. This is more like using a code generator like using System.Reflection.Emit.ILGenerator for managed code. Most of these instruction emitters are just preprocessor macros located in mono/arch/x86/x86-codegen.h. I believe that the names are quite

[Mono-dev] Missing links to 2.4.3.1 on web site?

2010-03-06 Thread Oskar Berggren
Hi, On http://www.mono-project.com/news/ I see that mono 2.4.3.1 is out. It directs me to the download page, which focuses on 2.6.1, but with a link to http://mono-project.com/OldReleases. However, this page only lists up to 2.4.3. By clicking on 2.4.3, then on sources, and then a manual url

Re: [Mono-dev] Missing links to 2.4.3.1 on web site?

2010-03-06 Thread Stifu
For the record, it is available here: http://ftp.novell.com/pub/mono/download-2.4/ -- View this message in context: http://n4.nabble.com/Missing-links-to-2-4-3-1-on-web-site-tp1582882p1582923.html Sent from the Mono - Dev mailing list archive at Nabble.com.

Re: [Mono-dev] [PATCH] Implement configuration loading for System.ServiceModel.Web

2010-03-06 Thread Sander Rijken
Hi, Another patch here to complete the configuration of WebHttpBindingElement. The previous patch didn't include the implementation for XmlDictionaryReaderQuotas. I wasn't sure what to to with the .config file used in the test, the one from my previous patch had an ugly mix of tabs and spaces.

Re: [Mono-dev] System.Threading.Monitor::Exit fails in latest trees

2010-03-06 Thread Zoltan Varga
Hi, This is now fixed in SVN HEAD/2.6 branch. Zoltan On Thu, Mar 4, 2010 at 3:12 PM, cpMon page@gmail.com wrote: I never get a signal when System.Threading.Monitor::Exit gets called too many times. Further, I traced it down into the mono 2.6.1 code tree, and