I have been developing apps using .net for quite sometime now. But, I am still not sure how does the CLR know that a .net app has started. Is there like one instance of CLR per app? I don't think this can be the case as there is just one GC which manages all the memory for all .net apps. Does the CLR kind of run in background? I am quite confused.

link|improve this question

62% accept rate
What made you think: "there is just one GC which manages all the memory for all .net apps"? – Erno Jul 7 '11 at 5:06
What makes you think there's only one GC for all applications? – blowdart Jul 7 '11 at 5:06
2  
You may also check this out – V4Vendetta Jul 7 '11 at 5:23
feedback

3 Answers

Hmm, let me take a shot at this too.

  1. Somebody builds a .NET application in C#, or .NET 'Intermediate Language', or another managed language.

  2. The compiler for that language csc.exe (C#), or ilasm.exe (bytecode assembler), or whichever, produces a PE executable. The PE executable has a specific structure that the compiler or assembler populates. That includes:

    • an entry point, and
    • a list of dynamic libraries that it uses (the IMPORT table). One of those libraries is mscoree.dll
    • lots of metadata, including the targeted .NET runtime version
  3. When the executable is clicked on, ran from the command line, or executed from a Win32 API, the Windows loader implementation (in NTDLL.dll) takes over

  4. The loader code is responsible for getting the executable into memory, loading dynamic link libraries if needed, mapping linked libraries into a place the executable code can reach them, and updating the Import Address Table with the actual addresses of the mapped libraries.

  5. Once all is ready, the loader jumps to the entry point (through what I assume is some shenanigans switching from kernel space to user space, or to protected mode, since the application runs in it's own protected 32 or 64 bit memory space). The entry point goes to mscoree.dll - the .NET Common Object Runtime Execution Engine, which was just mapped into the processes memory. I've seen this DLL referred to as the .NET startup shim, and it allows the multiple installs of .NET to exist on one machine. Mscoree.dll is the library you'll use if you are embedding a .NET language in your own regular application.

  6. Mscoree.dll looks at the metadata loaded from the PE executable, specifically the CLR header, and the targeted .NET runtime version. From that it can CorBindToRuntimeEx2 to the right CLR version.

  7. The CorBindToRuntimeEx loads the correct .NET runtime implementation (and returns a pointer to a COM interface allowing you to invoke that .NET runtime. This code is loaded from the dlls in %WINDIR%\Microsoft.NET\Framework\v#####.

  8. I'm not sure who at this point, but probably the mscoree shim uses the .NET ICLRRuntimeHost interface pointer to invoke methods to initialize the .NET runtime, garbage collector, IL interpreter, JIT and IHostControl interfaces (that allow the .NET interpreter to talk back to the hosting process), and ultimately tells the Interpreter to start executing your compiled application's IL code.

(I learnt a lot writing this - there is a ton of information behind the links, I certainly didn't get through all of it!)

http://msdn.microsoft.com/en-us/library/xh0859k0.aspx

http://my.safaribooksonline.com/book/programming/microsoft-dotnet/0735619883/a-tour-of-the-clr-hosting-api/ch02lev1sec3

http://msdn.microsoft.com/en-us/magazine/bb985994.aspx

link|improve this answer
Very well written and detailed answer. And, afaik, it's even all correct too. :) – Samuel Neff Jul 9 '11 at 4:04
feedback

Windows executables are Portable Executables, a format which gives Windows the information it needs to load and run the program. When Windows encounters a .NET program it loads an instance of the CLR and hands execution of the program to the new CLR instance. Each running .NET program is hosted within it's own instance of the CLR.

The CLR process loads the IL program and compiles it to Native Code (JIT) then executes the code, taking care of memory management and garbage collection for that program.

link|improve this answer
This makes it seem like Windows knows the app is .NET and Windows should load the clr. That's not the case. The exe basically contains a native bootstrapper which loads the .NET clr and kicks off the managed process. As far as windows itself is concerned, it just launched a native app and that app loaded some dll's. – Samuel Neff Jul 9 '11 at 4:02
feedback

From MSDN: Common Language Runtime

The .NET Framework provides a run-time environment called the common language runtime, which runs the code and provides services that make the development process easier.

A Process loads the .Net Framework (of which only one version of the Framework may exist within a process). The referenced link seems to go into great detail on how things work. In addition, regarding GC:

The runtime automatically handles object layout and manages references to objects, releasing them when they are no longer being used. Objects whose lifetimes are managed in this way are called managed data. Garbage collection eliminates memory leaks as well as some other common programming errors.

There does not seem to be any difference between GC in the above reference and the Garbage Collection to which you are referring. I believe that there is one GC - if indeed this is the case, then I can understand why it is so indeterminate in it's collection duties.

Admission of possibly being completely incorrect in previous conclusion
I suppose The runtime infers a single runtime (process) has it's own GC. But that is not necessarily clear in the above reference; however, as @V4Vendetta kindly referenced this blog entry: there is one GC per Process...

Update ...and another correction on my part ;)
It has been brought to my attention that, with .Net 4.0, there can be multiple versions of the .Net framework running within a single Process, thanks to what is called InProc-SxS, or In-Process, Side-by-Side: CLR Inside Out

link|improve this answer
Each running .NET programme has it's own GC. – blowdart Jul 7 '11 at 5:09
@blowdart: any references? – IAbstract Jul 7 '11 at 5:17
It's discussed in detail in CLR via C# – blowdart Jul 7 '11 at 5:22
Not everything here is correct anymore. A .NET 4 app can also host the .NET 2 clr for compatibility. You end up with two runtimes in one process. – Samuel Neff Jul 9 '11 at 4:06
@Samuel Neff: incorrect - only one version of the runtime is installed in a Process. In this case .Net 4 is able to host a .Net 2 app because of the 'In Process, Side by Side' approach here: msdn.microsoft.com/en-us/magazine/ee819091.aspx ...there are not multiple versions of a runtime loaded, it is simply intended that a runtime be able to execute apps targeting previous versions. – IAbstract Jul 9 '11 at 11:34
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.