
- Forum
- Programming Talk
- C Sharp
- Features of this Concept
Features of this Concept
This is a discussion on Features of this Concept within the C Sharp forums, part of the Programming Talk category; I want to know the important features of Intermediate Language? Someone provide a detailed answer on this....
-
02-26-2007, 04:31 PM #1
- Join Date
- Apr 2006
- Answers
- 124
Features of this Concept
I want to know the important features of Intermediate Language? Someone provide a detailed answer on this.
-
There are various features embedded with each of the different types of intermediate languages. CIL stands for C Intermediate Language is both lower-level than abstract-syntax trees, by clarifying ambiguous constructs and removing redundant ones, and also higher-level than typical intermediate languages designed for compilation, by maintaining types and a close relationship with the source program. The main feature of CIL is that it compiles all valid C programs into a few core constructs with a very clean semantics.
-
Another vital feature of CIL is it has a syntax-directed type system that makes it easy to analyze and manipulate C programs. Also CIL front-end is able to process not only ANSI-C programs but also those using Microsoft C or GNU C extensions.
-
08-08-2010, 10:08 PM #4
- Join Date
- Aug 2010
- Answers
- 2
Another vital feature of CIL is it has a syntax-directed type system that makes it easy to analyze and manipulate C programs. Also CIL front-end is able to process not only ANSI-C programs but also those using Microsoft C or GNU C extensions.
-
Sponsored Ads

Reply With Quote





