TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

C# Method Call Depth Performance

This C# benchmark compares the performance of method call depths.

Method calls can be nested.

This impacts performance. The more nesting, the more depth to the stack. A method call will require stack space unless it is inlined. By flattening the call stack, we reduce stack usage and improve performance.

Example. In compiler theory, the term "activation record" refers to a section of memory on the stack that contains data about a method call. As more nested methods are invoked, the stack grows downwards, consuming more and more memory.

And: When a method terminates, its memory is forgotten from the stack and the pointer is readjusted.

Activation Record

Next: This program contains eight important methods: A1 through D1, and A2 through D2.

When A1 is called, it calls B1 and then B1 calls C1. On the other hand, when A2 is called, it simply calls B2, C2, and D2. The A2 method should consume less stack space. It has a shorter stack.

C# program that compares method call depths

using System;
using System.Diagnostics;

class Program
{
    const int _max = 100000000;
    static void Main()
    {
	A1();
	A2();

	var s1 = Stopwatch.StartNew();
	for (int i = 0; i < _max; i++)
	{
	    A1();
	}
	s1.Stop();
	var s2 = Stopwatch.StartNew();
	for (int i = 0; i < _max; i++)
	{
	    A2();
	}
	s2.Stop();
	Console.WriteLine(((double)(s1.Elapsed.TotalMilliseconds * 1000 * 1000) /
	    _max).ToString("0.00 ns"));
	Console.WriteLine(((double)(s2.Elapsed.TotalMilliseconds * 1000 * 1000) /
	    _max).ToString("0.00 ns"));
	Console.Read();
    }

    static int _i = 1;

    static void A1()
    {
	B1();
    }

    static void B1()
    {
	if (_i == 0)
	    throw new Exception();
	C1();
    }

    static void C1()
    {
	if (_i == 0)
	    throw new Exception();
	D1();
    }

    static void D1()
    {
	if (_i == 0)
	    throw new Exception();
    }

    static void A2()
    {
	B2();
	C2();
	D2();
    }

    static void B2()
    {
	if (_i == 0)
	    throw new Exception();
    }

    static void C2()
    {
	if (_i == 0)
	    throw new Exception();
    }

    static void D2()
    {
	if (_i == 0)
	    throw new Exception();
    }
}

Output

3.54 ns
0.96 ns

The results of this program are revealing. When A1, B1, C1 and D1 are called in a nested sequence, the program is much slower than when A2, B2, C2 and D2 are called in a more sequential order.

Also: The Exception throws in the program are to confuse the inliner in the JIT.

JIT

Summary. It is possible to improve the performance of method calls by reducing the depth of the call stack. In other words, changing deeply nested method invocations into more sequential invocations can yield performance benefits.

However: This is likely not useful except on performance-critical parts of important programs.


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf