Would like to know what is CaaS as applied to what Roslyn uses and in general, and how using the Roslyn compiler improves the performance of a C# application over the current C# 4.0 compiler. Also, what are the known limitations/issues in the Roslyn-CTP?

link|improve this question

It's not clear to me what exactly do you mean by "compiling process". What exactly do you want to know? – svick Jan 19 at 11:21
@svick i.e. What exactly is CaaS as applied to Roslyn and also some light on CaaS in general.. – CSharpVJ Jan 19 at 12:15
See my updated answer for that. – svick Jan 19 at 13:05
feedback

3 Answers

up vote 2 down vote accepted

What exactly does Compiler as a Service (CaaS) mean in relation to Roslyn? You can watch a video where Anders Hejlsberg explains that (talk about Roslyn starts at 35 minutes in). Basically, the old C# compiler is a "black box": source code comes in, compiled assemblies come out. Roslyn gives you access inside that box. That means you can get syntactic and semantic information about some code, modify it and give it back to the compiler to process it further. You can use that to do code analysis, refactoring, code generation and more.

There is a long list of features that are not implemented in the current CTP on the Roslyn forum.

Regarding performance, I don't think that's among the goals of Roslyn. Besides, the JIT compiler is more important for performance optimizations than the C#/VB compiler. And Roslyn replaces the C#/VB compiler, not th JIT compiler.

link|improve this answer
feedback

Compiler as a service (CaaS) with respect to Roslyn just means the compilation process is broken down into pieces with a public API that lets you examine the syntactic and semantic models built by the compiler during compilation. The Roslyn C# and VB compilers completely replace the existing compilers, so you can continue to use them in the same way you use the compilers today (as separate executables that converts text files into .net assemblies.) You can also use the compilers as a library of API's that help you build tools that do deeper or different kinds of code analysis.

Roslyn does not give you specific performance advantage over using the existing compilers because when Roslyn releases they will be one and the same. However, it is possible to use roslyn to build specialized code refactorings that improve your source code.

link|improve this answer
feedback

One advantage that Roslyn has is when your application needs a scripting interface. With Roslyn, you can directly compile the script as C# source code with same programming possibilities as the source of the application and directly use it.

link|improve this answer
do you mean after compiling, the script is converted to C# source code? – CSharpVJ Jan 19 at 7:06
Yes, the user could be given a text box into which he can script in a high level language like VB.NET or C# and the the code can be directly compiled and used by the application... – Nigel Findlater Jan 19 at 8:59
feedback

Your Answer

 
or
required, but never shown

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