Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
people:holger [2007/08/02 16:48]
holger
people:holger [2007/08/20 11:37] (current)
holger
Line 21: Line 21:
     Status: unfortunately no difference at all. local branch exists, may be included in the attr changes for completeness.     Status: unfortunately no difference at all. local branch exists, may be included in the attr changes for completeness.
   * somewhere in between: install git, learn to use it, research documentation on attributes (useful link: http://​www.ohse.de/​uwe/​articles/​gcc-attributes.html)   * somewhere in between: install git, learn to use it, research documentation on attributes (useful link: http://​www.ohse.de/​uwe/​articles/​gcc-attributes.html)
 +
 +
  
  
Line 30: Line 32:
 out which variables come from where and still get overridden from where else. LXR is easier - once out which variables come from where and still get overridden from where else. LXR is easier - once
 you figure out that the preliminary GIT support doesn'​t really work and set it up on a plain old source directory instead. Both don't seem to offer a way to easily see which functions are called most, but otherwise they'​re both pretty decent source code browsers. let me know if we want anything like that on rom. you figure out that the preliminary GIT support doesn'​t really work and set it up on a plain old source directory instead. Both don't seem to offer a way to easily see which functions are called most, but otherwise they'​re both pretty decent source code browsers. let me know if we want anything like that on rom.
- 
- 
- 
   * repeat the symcheck work on current master. should be easier now. the new make symcheck has reduced the output substantially,​ and i still have the old docs. status: current state of affairs merged, some open questions.   * repeat the symcheck work on current master. should be easier now. the new make symcheck has reduced the output substantially,​ and i still have the old docs. status: current state of affairs merged, some open questions.
   * redo the regparm work. shouldn'​t be too hard now that i know what annotations are really needed to make regparm work. status: merged.   * redo the regparm work. shouldn'​t be too hard now that i know what annotations are really needed to make regparm work. status: merged.
 +  * Revisit Compiler Options. Status: Found two or three more options that reduce codesize. Investigating the effects of -finline-limit (8 seems like the optimal setting right now), -fgcse-after-reload seems to help a bit too. Got gcc 4.2.1 to compile and testing the new options. status: partly merged. (gcc 4.2.1 compile fixes, makefile cleanups) mcb30 felt that module specific optimizations were unmaintainable. inline-limit might go in later.
 +  * Break up string.c in used and unused functions. also set pure attributes. status: done, not yet merged.
  
 +  * optimizing memset. status: should be optimal in size now (also all the other functions in string.h) checked in as "​memset"​ branch. this is an overall win in codesize (most notably for undinet, multiboot ​ and monojob). warnings mentioned here earlier have been successfully silenced, also the code saw a lot more optimizations (memmove optimization,​ memcpy break-even checked and adjusted, cx load trick for all possible functions and values).
 +  * included attributes on hci subdir (branch for that is slightly incorrectly named "​curses"​). also split up curses a bit further, but only marginally (most of it isn't used anyway) - branch that includes this in addition to the former is "​cursessplit"​
 +  * biggest win with attributes was not to inline certain functions (as earlier results on -fno-inline and -finline-limit suggested). investigated all the functions that turned out to decrease in size with a more aggressive inline-limit and found several cases where the effect could be pinpointed to a function or two. set these to noinline (because otherwise, gcc's default inline limit with -Os seems mostly fine - i think it just doesn'​t take the lower call overhead with regparm properly into account). most interesting result was that for minimal codesize with the new regparm calling conventions,​ we actually don't want to have the list functions static inline anymore (even the really simple __list_del is only marginally a win inlined, the others aren'​t). branch named "​inline"​ committed (which is based on the memset branch because before that memset/​memmove would also have been candidates for noinline)
 +  * other than noinline in certain cases, attributes unfortunately turned out to be mostly insignificant for code size. nonnull helps only in special cases (by optimizing away any explicit pointer checks that might be inside), but as it gives us additional compile time checks, it's probably still a good idea (included them in the parts that were committed for other reasons, see above). pure mostly makes no difference either (haven'​t seen effects of more than +/- 2-3 bytes, seems to even out, and we don't have a lot of them - same). don't think i spotted a const function yet.
  
  
-  * Revisit Compiler Options. Status: Found two or three more options that reduce codesize. Investigating the effects of -finline-limit (8 seems like the optimal setting right now), -fgcse-after-reload seems to help a bit too. Got gcc 4.2.1 to compile and testing the new options. 
-status: partly merged. (gcc 4.2.1 compile fixes, makefile cleanups) mcb30 felt that module specific optimizations were unmaintainable. inline-limit might go in later. 
-  * Break up string.c in used and unused functions. also set pure attributes. status: done, not yet merged. 
  
-==== Currently in progress ====+  * commited the malloc annotations (to strings branch, as that wasn't merged yet anyway)
  
-optimizing memset. status: preliminary version modeled after memcpy working, but mostly not a win yet. need to investigate actual code generation. 
  
-more malloc annotations (will merge and push after strings is merged) 
  
-still not sure if curses could use further splitup. 
  
-==== Things to be done next ==== +==== Things to do now that we have "​pencils down" for code ====
- +
-  * start annotating functions with attributes, starting with the common ones (may be a large amount of work that might not lead to anything useful, but at least we know that then - and it might inspire ideas on other modifications to commonly used functions) +
- +
-==== Other things still to do ====+
  
   * write up some docs for the conversions that helped, give some background, maybe illustrated by examples of the generated code before and after.   * write up some docs for the conversions that helped, give some background, maybe illustrated by examples of the generated code before and after.
   * write up docs on when functions (or other symbols) should be attributed by what.   * write up docs on when functions (or other symbols) should be attributed by what.
-  * whatever else comes up 
- 
- 
- 
- 
- 
- 
  

Navigation

* [[:start|Home]] * [[:about|About our Project]] * [[:download|Download]] * [[:screenshots|Screenshots]] * Documentation * [[:howtos|HowTo Guides]] * [[:appnotes|Application Notes]] * [[:faq:|FAQs]] * [[:doc|General Doc]] * [[:talks|Videos, Talks, and Papers]] * [[:hardwareissues|Hardware Issues]] * [[:mailinglists|Mailing lists]] * [[http://support.etherboot.org/|Bugtracker]] * [[:contributing|Contributing]] * [[:editing_permission|Wiki Edit Permission]] * [[:wiki:syntax|Wiki Syntax]] * [[:contact|Contact]] * [[:relatedlinks|Related Links]] * [[:commerciallinks|Commercial Links]] * [[:acknowledgements|Acknowledgements]] * [[:logos|Logo Art]]

QR Code
QR Code people:holger (generated for current page)