Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3092)

Unified Diff: courgette/disassembler_win32_x64.h

Issue 1935203002: [Courgette] Using LabelManager to reduce Courgette-apply peak RAM by 25%. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: courgette/disassembler_win32_x64.h
diff --git a/courgette/disassembler_win32_x64.h b/courgette/disassembler_win32_x64.h
index 60a2259fc03992ba319da1a24bfee8d4e8621d90..49ca45207b79c319a4feed918faa9ab46e8a1b49 100644
--- a/courgette/disassembler_win32_x64.h
+++ b/courgette/disassembler_win32_x64.h
@@ -54,6 +54,11 @@ class DisassemblerWin32X64 : public Disassembler {
static std::string SectionName(const Section* section);
protected:
+ // Disassembler interfaces.
+ RvaVisitor* CreateAbs32TargetRvaVisitor() override;
+ RvaVisitor* CreateRel32TargetRvaVisitor() override;
+ void RemoveUnusedRel32Locations(AssemblyProgram* program) override;
+
CheckBool ParseFile(AssemblyProgram* target) WARN_UNUSED_RESULT;
bool ParseAbs32Relocs();
void ParseRel32RelocsFromSections();

Powered by Google App Engine
This is Rietveld 408576698