Getting Started With .NET IL |
Written by Mike James | |||||||
Friday, 10 December 2021 | |||||||
Page 3 of 3
Local variablesAs well as the stack there are local variables, data structures and fields. But notice that in principle you can write any program using just the stack. For example to declare local variable called Total you would add:
The “init” is a modifier that indicates that the variables have to be initialised before use. To load the result of the addition you have to use:
before the call to WriteLine. The instruction stloc, i.e. Store to Local, pops the top of the stack into Total. You need the ldloc instruction, i.e. LoaD from Local, to push the value back on the stack so that the WriteLine can use it. It is more common to work with local variables just in terms of the index number. For example:
Defines Total to be local varible zero and you can load it onto the stack using any of:
Object oriented ILUsing a static object isn’t really the same thing as taking a full object-oriented approach – it’s just a way of writing a main program. This next example is intended to give you an idea of the full extent of IL’s object facilities. Start a new program called Arith.il. First we have the usual declarations followed by a public class definition:
The class has two methods .ctor which is its constructor – which does nothing in this case - and Add. The Add method pushes its two parameters on the stack, using ldarg.n, adds them and leaves the result on the stack. To try this class and its Add method out we use the static Main method again:
The newobj instruction creates an instance of the class and calls its creator, .ctor(). The result of newobj is a pointer to the instance stored on the top of the stack. Now we can load the stack with two parameter values and call the instance of Add. Notice that the instance of the class that is called is determined by the first argument, i.e. arg0, passed to the method. You can think of this as a “this” reference and note that instance methods have to explicitly use it to work with instance fields. If you assemble this program you will discover that it adds two numbers together as before. IL supports instance and static methods and fields. It supports virtual and non-virtual methods and inheritance but this is beyond the scope of this introduction. Where next?Once you have the idea of the way that the object-oriented, strongly typed aspects of IL interact with the fact that it is a stack-oriented assembler you should find it easier to understand the documentation. You can find some very dry technical definitions of how it all works at: ECMA C# and Common Language Infrastructure Standards Another good way of learning IL is to use the ILdasm tool, which you will find in the same directory as ILasm. This can be used to disassemble .NET programs and it provides lots of clues as to how the compilers use IL.
Related articles:The LIFO Stack - A Gentle Guide Introduction to data structures Stack architecture demystified Javascript data structures - Stacks Assemblers and assembly language
To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.
Comments
or email your comment to: comments@i-programmer.info
<ASIN:1871962714> <ASIN:B09FTLPTP9>
|
|||||||
Last Updated ( Friday, 10 December 2021 ) |