8
I Use This!
Activity Not Available

News

Analyzed 3 months ago. based on code collected 4 months ago.
Posted over 15 years ago by illuminus86
http://www.mosa-project.org/wiki/Getting%20MosaThat's a shame. Git still seems like a steep hill to climb...Keep up the great work, guys. On Wed, Jan 20, 2010 at 9:24 PM, tgiphil <[email protected]> wrote: From: tgiphil Where's ... [More] the SVN information on the site? I thought we had removed all references to SVN. We'll still working on the GIT -> SVN bridge. I'm not sure if we'll attempt to go bi-directional. Read the full discussion online. To add a post to this discussion, reply to this email ([email protected]) To start a new discussion for this project, email [email protected] You are receiving this email because you subscribed to this discussion on CodePlex. You can unsubscribe or change your settings on codePlex.com. Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at codeplex.com [Less]
Posted over 15 years ago by tgiphil
Where's the SVN information on the site? I thought we had removed all references to SVN. We'll still working on the GIT -> SVN bridge. I'm not sure if we'll attempt to go bi-directional.
Posted over 15 years ago by illuminus86
Hey guys:The SVN information on the Retrospectiva wiki does not seem to be correct (at least, not anymore). I thought you were going to set up a GIT<->SVN bridge? -Bruce
Posted over 15 years ago by Phil
The MOSA Project website (www.mosa-project.org) is no longer hosted at CodePlex.  Instead we are hosing our own website using Retrospectiva, an open-source project management tool. It has more advanced features than CodePlex could provide us; namely ... [More] support for SVN or GIT as a source code repositories. We hope you like it better! Also, if you have not already noticed, we are using a new logo design. [Less]
Posted over 15 years ago by tgiphil
Managed Operating System Alliance (MOSA) Framework The Managed Operating System Alliance (MOSA) Framework is a set of tools, specifications and source code to foster development of managed operating systems based on the Common Intermediate Language. The MOSA project has moved to a new site: www.mosa-project.org
Posted over 15 years ago by tgiphil
**** SOURCE CODE IS NOT AVAILABLE HERE **** Please go to GitHub: http://github.com/mosa/MOSA-Project Or visit our site: http://www.mosa-project.org
Posted over 15 years ago by tgiphil
Managed Operating System Alliance (MOSA) Framework The Managed Operating System Alliance (MOSA) Framework is a set of tools, specifications and source code to foster development of managed operating systems based on the Common Intermediate Language. This MOSA project has moved to a new site: www.mosa-project.org
Posted over 15 years ago by tgiphil
FYI: http://port25.technet.com/archive/2009/11/16/microsoft-to-open-source-the-net-micro-framework.aspx
Posted over 15 years ago by tgiphil
Hi! I was hoping someone else with more knowledge on this subject would jump in and answer your question. MOSA has not reach the stage of being able to compile code that use objects yet.  It's next on our to-do list! My knowledge on this is ... [More] still limited except I believe that trampolines attempt to resolve the inefficiencies of traversing vtables by using dynamically created dispatch tables for each type. I hope someone else can elaborate more. Trampolines are also used to stub/intercept a method call when the method has not yet been JIT compiled. The trampoline call into the JIT to have the method compiled, then the trampoline would be patched to call the method (instead of the compiler), and finally call the compiled method.   [Less]
Posted over 15 years ago by LostTheBlack
There is a hint in file CodeGenerationStage.cs in line 663 about Microsoft does not use vtables, but instead allocates trampolines. Could anyone explain this technique? Will MOSA use it?