Caller / Callee View - Sampling Data

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

The Caller/Callee view displays profiling information for a selected function and its parent and child functions. The Caller/Callee view contains three grids.

Current function is displayed in the middle grid, and it shows profiling information for the selected function. The values include all sampled calls to the function.

Functions that called the current function is displayed in the top grid, and it shows the individual contributions of the caller (parent) functions to the values of the selected (current) function.

Functions that were called by the current function is displayed in the bottom grid, and it shows profiling information for the callee (child) functions of the selected function when the child function was called by the current function.

Note

Enhanced security features in Windows 8 and Windows Server 2012 required significant changes in the way the Visual Studio profiler collects data on these platforms. Windows Store apps also require new collection techniques. See Performance Tools on Windows 8 and Windows Server 2012 applications.

Column Description
Process ID The process ID (PID) of the profiling run.
Process Name The name of the process.
Module Name The name of the module that contains the function.
Module Path The path of the module that contains the function.
Source File The source file that contains the definition for this function.
Function Name The fully qualified name of the function.
Function Line Number The line number of the start of this function in the source file.
Function Address The address of the function.
Type The context of the function:

- 0 - the current function
- 1 - a function that calls the current function
- 2 - a function that is called by the current function
Root Function Name The name of the current function.
Inclusive Samples - For the current function, the number of samples that were collected although this function or one of its child functions was executing.
- For a caller function, the number of inclusive samples of the current function that were collected when this function called the current function.
- For a callee function, the number of inclusive samples of this function that were collected when the current function called this function.
Inclusive Samples % The percentage of all samples in the profiling run that were inclusive samples of this function.
Exclusive Samples - For the current function, the number of samples in the profiling run that were collected when this function was directly executing; that is, when this function was at the top of the call stack. Samples that are collected when child functions of this function are executing are not counted in exclusive counts.
- For a caller function, the number of exclusive samples of the current function that were collected when this function called the current function.
- For a callee function, the number of exclusive samples of this function that were collected when the current function called this function.
Exclusive Samples % The percentage of all samples in the profiling run that were exclusive samples of this function.

See Also

Caller/Callee View - .NET Memory Sampling Data
Caller/Callee View - NET Memory Instrumentation Data
Caller/Callee View - Instrumentation Data