Erich is Professor at Lucerne University of Applied Sciences and Arts and Distinguished Member of Technical Staff at Freescale Semiconductor. Erich has a MsCS degree and 18+ years of experience in the embedded software and tools world. He created many embedded cross C/C++ compilers and debuggers. Additionally he is researching in the domain of programming languages, real time and mechatronic systems. Erich is a DZone MVB and is not an employee of DZone and has posted 50 posts at DZone. You can read more from them at their website. View Full User Profile

Eclipse Editor Scalability

08.17.2012
| 2752 views |
  • submit to reddit

In Eclipse opening a large file might cause the following dialog:

What does this mean? Well, Eclipse does a lot behind the scenes with source files. And this includes Eclipse Indexer, Outline View or Syntax Coloring.

The drawback of all these great features is: it does not make the Eclipse framework faster. The Eclipse IDE with its Java foundation is in my view the best IDE in the world, but unfortunately not the fastest. That’s why the Eclipse community has implemented settings to keep things within boundaries, and the above dialog is one of this.

As Eclipse tends to get slower and to use more memory for very large files, that dialog warns me about this. I can change the settings pressing the ‘Configure Scalability Settings…‘ hyperlink in above dialog which will open the settings:

Eclipse Scalability Settings

Eclipse Scalability Settings

The same settings are available with the menu Window > Preferences > C/C++ > Editor > Scalability too.  I can configure if I do want that dialog (I usually switch it off), this is the same setting as the check-box on the first dialog. I can change the line number settings to warn me about really big files only.

The warning dialog typically shows up if I open one of the header files containing all the peripheral register declarations, or during debugging if I step into library code.

If performance is a concern, it does not hurt to turn on the scalability mode:

Scalability Mode Turned On

Scalability Mode Turned On

This turns off features which might slow down Eclipse. And there is a price for performance: less functionality.

Happy Scaling :-)

 

Published at DZone with permission of Erich Styger, author and DZone MVB. (source)

(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)