idb show bounds

Display boundaries of a given pointer.

Syntax

idb show bounds EXPR

Parameters

EXPR
A pointer name.

Description

This command prints the address and the boundaries of a given pointer with the nameEXPR. The boundaries are displayed if they are available at the current stage of the application execution.

Note

To enable this feature, you must compile your source code with the option -check-pointers. Refer to the Intel® Compiler documentation for more information.

Example

In the following example, the debugger prints the names and boundaries of the pointer PtrVariable.

(idb) 
					  idb show bounds PtrVariable
{Ptr. Address = 0x7ff4423, Lower bound = 0x7ff4423, Upper Bound =
0x7ff4433}

Submit feedback on this help topic