Home > Articles

Advanced CLR Topics

This chapter is from the book

The MSIL Disassembler

As discussed in Chapter 16 "The Common Language Runtime," managed code applications in Visual C++ .NET are compiled into an assembly of Microsoft Intermediate Language (IL) code and metadata about other .NET Framework assemblies or executables used in the application. This assembly is then compiled into native code by the JIT compiler and executed by the Common Runtime Language framework.

Because the structure of the managed code executables differs from native code applications, a new set of tools are required to build and examine them. One of these tools is the IL Disassembler or ILDASM.EXE. It shows you the internals of a managed code application so you can learn what namespaces, types and interfaces the code uses. Perhaps the most powerful use of the disassembler is the ability to examine the intermediate language of the code itself, thus giving you a glimpse into the workings of a particular class.

TIP

ILDASM is pronounced Eye Ell Dazzem.

The ILDASM.EXE tool can be used interactively, or to generate a file of disassembly information. This section will focus using ILDASM interactively to to browse the assembly and examine the internals. For information about generating a file of disassembly information from the command line, type ildasm /? or refer to the online documentation in the .NET Framework Tools under MSIL Disassembler.

To illustrate the use of this tool, this section refers to Managed C++ sample, Calc.exe, included with the samples that come with Visual Studio .NET. You should find and install the sample if you want to follow along with the instructions in this section.

The ILDASM tool can be used with any managed code assembly. This means that the tool can be used with Visual Basic, C#, Managed C++ or any language that can generate .NET Framework assemblies. ILDASM will work with any assembly that is on your hard drive or other media,m but not assemblies that are registered in the global assembly cache (GAC). If your Managed C++ includes some native code embedded in the IL code in the assembly. When this is the case, the ILDASM tool cannot display the embedded code in the same manner as the IL code.

Examining Managed Code Applications Using the ILDASM Tool

To begin using the tool you can execute it from the command line (make sure your path includes the .NET Frameworks tools directory, typically C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\Bin) or create a shortcut to the tool on your desktop. To run it from the command line open a command console and then enter:

Ildasm {filename}

This will load the application and also open the file that you specified. You will need to provide the drive and path information if the assembly is not in the current directory. You can also start the tool without the filename and then use the File, Open command to locate and load the desired assembly. Once the tool starts you should see something similar to Figure 25.4.

Figure 25.4 The ILDASM tool.

I find it convenient to associate the ILDASM tool with the .dll extension, so I can right-click on a .dll file and choose Open With to open it with the ILDASM tool. On most machines, you will be offered the choice to open the DLL with Microsoft .NET Framework IL disassembler just by right-clicking and choosing Open With. If not, click Browse on the dialog that appears and browse to ILDASM.EXE to make this choice. Click Always Use the Selected Program to Open This Type of File to save time the next time you want to disassemble an assembly.

The main window of the ILDASM tool contains a hierarchical view of the assembly. The top level item is the name of the assembly, followed by the manifest of the assembly. In our example, the name of the application, Calc.exe is listed as the top node of the assembly. Under the manifest is the only class of the assembly, calc, and a static method called modopt. If you open the calc class by clicking on the plus box next to the name you will see the information contained in the class as shown in Figure 25.5.

Figure 25.5 Elements of the Calc class.

ILDASM shows you all of the different parts of the Calc class:

  • class information (red triangle)

  • fields (blue-green diamond)

  • methods (purple square)

Each symbol is superimposed with an S if it is static. The first two elements of the tree are under Calc provide more information about the class. The first item tells you that Calc is a private class. The second item tells you that it inherits from the System.Windows.Forms.Form class which is found in the System.Windows.Forms namespace.

How is this information important? Let's say that you are having trouble running an application on your computer and you suspect it is because there is a dependency that you are missing. In the case of the namespaces that come with the .NET Framework, if you have the Framework installed on your computer, those are probably installed correctly, but using this tool, you could determine if there are other 3rd party namespaces that are required by the program that you do not currently have installed. ILDASM is an excellent way to discover dependencies.

You can get similar information about other items that are shown in the tree. In the Calc example, there are many fields that are listed. The information about the field is easy to understand. Let's look at the m_Op1 field definition.

field m_Op1:private float64

This statement shows that this field is a private field of the Calc class and is a 64-bit floating point variable. This information can be helpful if you are trying to determine why there is a failure when certain values are being used. It could be that the value is not of the right type or too small or large.

If you move the cursor down to the class method call ctor and double click on this you will see a listing of the IL code used in the method ctor, which is the constructor for the Calc class. The listing for this function is found in Figure 25.6

Figure 25.6 The ctor method code listing in ILDASM.

This is where the ILDASM tool really becomes useful. It is possible to see the IL code that was generated from the source code that the JIT compiler will run when it is executed. This is not the same as having access to the source code -- a lot of human readable information is missing. However, it is somewhat similar in principle to assembly language, and can be understood.

The first line defines the ctor function, a public function that uses a special or reserved name in the IL and returns nothing (void return value).

After the brace bracket comes a comment showing the size of the IL code that was generated. This is not the same as the native code size that the JIT compiler will create when the application runs, and it is provided just for information.

The maxstack statement defines the maximum amount of stack that this function will use. The Common Language Runtime is stack based and all instructions either load parameter values onto the stack or pop them off the stack for processing. All return codes are then placed onto the stack for the next instruction. This function will never use more than 1 operand on the stack.

The next seven statements are the functioning portion of the ctor method. The first statement loads the argument passed to it onto the stack. In this case, it is the argument passed to the ctor method during execution. The next statement calls the constructor of the System.Windows.Forms.Form class and then returns. Following this the IL loads the parameter passed to the original ctor method calls the constructor of the System.Object. Finally the stack is loaded and a call to the Calc method InitForm is made. When this method returns then the code exits from the ctor function.

Examining the IL for a method allows you to understand what is taking place in the method. However, the full definition of the IL language is not within the scope of this discussion. Microsoft has documented the whole IL syntax in a document that can be found in the \FrameworkSDK\Tool Developers Guide\docs directory and is called Partition III CIL.doc. Using this documentation, you can read and understand any IL code that will be listed in the ILDASM tool.

The balance of our discussion of the ILDASM tool will focus on the filtering options, dumping features, and the uses of the dump file.

Filtering the Output of the ILDASM Tool

When examining a complex application with ILDASM, the display can become very full and cluttered with information that you may not be all that interested in. The ILDASM tool offers many levels of filtering so that you can concentrate on the relevant aspects of the code.

Figure 25.7 The View menu.

Figure 25.7 shows the contents of the View menu. The first menu item allows you to change the font of the Tree view and also the Disassembly displays in the tool.

The balance of the menu items in the View menu allows you to change the level of information in the tool. Each menu item turns on or off the display of one piece of information. Table 25.4 defines the various menu selections and the information associated with it

Table 25.4 Filters Available in the View Menu

Menu Item

Description

Sort by name

Sort information in tree view by name

Show Public

Display/Dump items having only public accessibility

Show Private

Display/Dump items having only private accessibility

Show Family

Display/Dump items having family accessibility

Show Assembly

Display/Dump items having assembly accessibility

Show FamANDAssem

Display/Dump items having both family and assembly accessibility

Show FamORAssem

Display/Dump items having either family or assembly accessibility

Show PrivateScope

Display/Dump items having private scope accessibility

Show member types

Show types of class members in tree view.

Show bytes

Show the IL code in hexadecimal.

Show token values

Show token values in hexadecimal.

Show source lines

Show the original source code, as comments. Only displayed if source code is available on disk.

Quote all names

Show all names in quotes

Expand try/catch

Display all exception clauses in expanded form.


Dumping IL Output to File

The ILDASM tool also allows you to dump the contents of the managed code application to a file. There are a couple of options for dumping information to disk as shown in Figure 25.8

Figure 25.8 The File menu.

The first option is the Open menu item. This allows the developer to open the desired .exe or .dll for examination. This menu option uses the standard File Open dialog to allow the user to browse to the appropriate location and select the file.

The Dump menu item will take the .exe or .dll and put the IL content into a .il dump file. This resulting .il file can be used by the ILASM tool as input and can be recompiled into an .exe or .dll to be used in the Common Runtime Language environment. A significant amount of information is in this file and it can be very useful when working with a complex or large applications.

The Dump tree view menu item takes the .exe or .dll and creates a text file that shows the tree view of the structure of the application with its classes and members of all of the classes in an output similar to the tree view that the tool shows.

The final menu item is Exit. This menu item will terminate the execution of the ILDASM tool and close any opened files.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020