>Hex-Rays IDA Pro Page

Help index | Search

Virtual Array: Maximum number of chunks is reached

A virtual array can have up to ~400 chunks. You have reached this limit.

Please read this help page to learn how to avoid this error message.

To increase number of allowed chunks you can increase the page size for virtual arrays. For this, set the configuration file variable VPAGESIZE. For example:

  VPAGESIZE=0x8000
You may set the configuration variable from the command line like this:
        ida -dVPAGESIZE=0x8000 input_file
The page size must be a power of 2. The default page size is 8192. This setting will affect new database only. Old databases will continue to use the old value of VPAGESIZE.

The maximum value of VPAGESIZE is 0x8000 which corresponds to 512MB of address space.

 IMPORTANT NOTES
 ===============
If you were loading New Executable (NE) Format file, you may use 'Fill segment gaps' feature (it is activated in the "Load File" dialog appearing at the very start) to avoid this error message.

If you were loading OMF file, you may use the "Don't align segments" feature to avoid this error message.

Index | Previous topic | Next topic