vote up 6 vote down star

Newb question:

Does a Program that is written with the Microsoft .NET framework compile/execute native code?

I don't mean if there is a way not to have to install the .net framework on a machine. Simply put: does a .net application run on another layer like Java (i.e. bytecode).

flag

8 Answers

vote up 23 vote down

A .NET application must run over the Common Language Runtime (CLR).

The CLR is Microsoft's implementation of the CLI standard. (And there are other implementations of the CLR beside the Microsoft .NET Framework i.e.: Mono, Portable.NET).

The CLR executes a type of bytecode known as the Common Intermediate Language (CIL).

CIL

link|flag
A picture is worth a thousand words – Pascal Paradis Jan 17 at 4:35
+1 for rad diagram – GordonG Jan 17 at 5:15
I always heard MSIL as opposed to CIL. Is calling it MSIL on the outs? – PhoenixRedeemer Jan 17 at 5:40
@PhoenixRedeemer: Originally was known as MSIL, during the beta releases of the .NET languages, but due the standardization (Ecma-335 is.gd/gchW ) is now officially known as CIL... – CMS Jan 17 at 5:55
vote up 6 vote down

Sort of. The .NET compiler compiles your source code into IL (an intermediate language) and packages it in an assembly (usually one .DLL or .EXE file) which you deploy. At run-time, it is hosted by a CLR (common language runtime) which is responsible for executing the code, enforcing security rules, and so on. The main desktop CLR for Windows (there are others like Mono and Silverlight) doesn't interpret the IL, but rather "JIT"s (just in-time compiles) the IL code into native code before executing methods (functions).

Note there are actually some performance advantages to just in-time compilation. For example, the CLR can optimize the native code it generates based on performance characteristics of the machine it is running on like type of CPU, CPU cache size, number of CPUs, RAM size, etc. Traditional compilers can't do this as they don't know what machine the code they generate will ultimately be executed on.

Also, assemblies can be "pre-JITted" using a tool called ngen. In this process the native code is compiled from the IL before the assembly is executed and cached on disk. That way, no JITting overhead is incurred at run-time.

link|flag
not many people knows about ngen – chakrit Jan 17 at 5:08
vote up 1 vote down

Short answer (to your second question): Yes. It's called the Common Language Runtime (CLR).

Brief overview of the framework is available at Wikipedia: http://en.wikipedia.org/wiki/.NET_Framework#Architecture

link|flag
vote up 1 vote down

When you compile a .NET program it is compiled into IL (Intermediate Language). IL is very similar to assembly language. That IL is then converted into native code at run time through the JIT (Just In Time) compiler.

So, to answer your question, yes and no. The compiler does not emit native code but rather IL which is converted to native code when the application is run.

link|flag
vote up 0 vote down

Well, at least with mono I do know that you can generate native code instead of managed assemblies. I think there are OpenSource tools for Windows that are able to do this, too.

link|flag
vote up 0 vote down

I think you have to be careful about asking whether it is "compiled" and assuming that this means that the result emitted must be "native code." This isn't what "compiled" means:

"We generally say that a language is 'interpreted' when the initial translator is simple. If the translator is complicated, we say that the language is "compiled." The distinction can be confusing because "simple" and "complicated" are subjective terms, and because it is possible for a compiler to produce code that is then executed by a complicated virtual machine (interpreter)...These two characteristics - thorough analysis and nontrivial transformation - are the hallmarks of compilation."

From "Programming Language Pragmatics" by Michael L. Scott. Oddly enough, this is a textbook on programming language theory that I just happened to be reading this afternoon with the page open to that quote.

So, yes, C# and other .NET languages run on the CLR and they are compiled.

link|flag
vote up 0 vote down

C++ is the one .Net language which doesnt have to be compiled into IL, but you cant have ANY .NET references or code from .Net if you take this option.

Ther other thing to look into is what c dragon pointed out - ngen.exe which can have some remarkable improvments for many .Net windows/console based applications.

link|flag
vote up 0 vote down

at the time of execution, compiler generates a IL code which is intermediate language code then the code is converted into native code by JIT compiler

link|flag

Your Answer

Get an OpenID
or

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