summaryrefslogtreecommitdiff
path: root/src/arch/x86/bios/e820.cc
AgeCommit message (Collapse)Author
2012-02-24MEM: Make port proxies use references rather than pointersAndreas Hansson
This patch is adding a clearer design intent to all objects that would not be complete without a port proxy by making the proxies members rathen than dynamically allocated. In essence, if NULL would not be a valid value for the proxy, then we avoid using a pointer to make this clear. The same approach is used for the methods using these proxies, such as loadSections, that now use references rather than pointers to better reflect the fact that NULL would not be an acceptable value (in fact the code would break and that is how this patch started out). Overall the concept of "using a reference to express unconditional composition where a NULL pointer is never valid" could be done on a much broader scale throughout the code base, but for now it is only done in the locations affected by the proxies.
2010-05-23copyright: Change HP copyright on x86 code to be more friendlyNathan Binkert
2008-06-12X86: Make the e820 table manually or automatically configurable from python.Gabe Black