diff options
author | csilv@chromium.org <csilv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-07 23:26:37 +0000 |
---|---|---|
committer | csilv@chromium.org <csilv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-07 23:26:37 +0000 |
commit | f9e11f6d768d37ca829c2b84f34886ca21109990 (patch) | |
tree | 8a155f171684ea973343b77fa990e6cce40cc648 /courgette/disassembler.h | |
parent | 31cee2c4aa51b30ed1cf9f970bc2caa6b86575c6 (diff) | |
download | chromium_src-f9e11f6d768d37ca829c2b84f34886ca21109990.zip chromium_src-f9e11f6d768d37ca829c2b84f34886ca21109990.tar.gz chromium_src-f9e11f6d768d37ca829c2b84f34886ca21109990.tar.bz2 |
Revert 108929 - Add Elf 32 Support to Courgette.
This change takes advantage of recent refactoring and adds support for
Elf X86 32 executables to courgette. It should have no effect on handling
of Windows PE executables.
We have planned ahead to be able to restrict the code size of the courgette
library in different cases to reduce patcher sizes, but this change does
not yet take advantage of that (all platforms are supported everywhere).
Also, the patcher class currently contains a very small amount of Elf/PE
specific code for recreating relocation tables that cannot (currently) be
compiled out.
BUG=chromium-os:22149
TEST=Please verify that Chrome/Chromium patches can still be generated and
work.
Also, please see how much the updater executable which is downloaded to
users has changed in size since R16.
Review URL: http://codereview.chromium.org/8428009
TBR=dgarrett@chromium.org
Review URL: http://codereview.chromium.org/8490023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108934 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'courgette/disassembler.h')
-rw-r--r-- | courgette/disassembler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/courgette/disassembler.h b/courgette/disassembler.h index 2de67fd..85c0c3d 100644 --- a/courgette/disassembler.h +++ b/courgette/disassembler.h @@ -68,7 +68,7 @@ class Disassembler { } // Reduce the length of the image in memory. Does not actually free - // (or realloc) any memory. Usually only called via ParseHeader() + // (or realloc) any memory. Unusally only called via ParseHeader() void ReduceLength(size_t reduced_length); private: |