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

Side by Side Diff: courgette/courgette.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, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COURGETTE_COURGETTE_H_ 5 #ifndef COURGETTE_COURGETTE_H_
6 #define COURGETTE_COURGETTE_H_ 6 #define COURGETTE_COURGETTE_H_
7 7
8 #include <stddef.h> // Required to define size_t on GCC 8 #include <stddef.h> // Required to define size_t on GCC
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 30 matching lines...) Expand all
41 // Internal errors. 41 // Internal errors.
42 C_STREAM_ERROR = 20, // Unexpected error from streams.h. 42 C_STREAM_ERROR = 20, // Unexpected error from streams.h.
43 C_STREAM_NOT_CONSUMED = 21, // Stream has extra data, is expected to be 43 C_STREAM_NOT_CONSUMED = 21, // Stream has extra data, is expected to be
44 // used up. 44 // used up.
45 C_SERIALIZATION_FAILED = 22, // 45 C_SERIALIZATION_FAILED = 22, //
46 C_DESERIALIZATION_FAILED = 23, // 46 C_DESERIALIZATION_FAILED = 23, //
47 C_INPUT_NOT_RECOGNIZED = 24, // Unrecognized input (not an executable). 47 C_INPUT_NOT_RECOGNIZED = 24, // Unrecognized input (not an executable).
48 C_DISASSEMBLY_FAILED = 25, // 48 C_DISASSEMBLY_FAILED = 25, //
49 C_ASSEMBLY_FAILED = 26, // 49 C_ASSEMBLY_FAILED = 26, //
50 C_ADJUSTMENT_FAILED = 27, // 50 C_ADJUSTMENT_FAILED = 27, //
51 C_TRIM_FAILED = 28, // TrimLabels failed 51 C_TRIM_FAILED = 28, // TrimLabels failed (deprecated).
Will Harris 2016/05/04 18:02:26 Best to just remove these unused codes, they're no
huangs 2016/05/04 19:33:59 Done.
52 }; 52 };
53 53
54 // What type of executable is something 54 // What type of executable is something
55 // This is part of the patch format. Never reuse an id number. 55 // This is part of the patch format. Never reuse an id number.
56 enum ExecutableType { 56 enum ExecutableType {
57 EXE_UNKNOWN = 0, 57 EXE_UNKNOWN = 0,
58 EXE_WIN_32_X86 = 1, 58 EXE_WIN_32_X86 = 1,
59 EXE_ELF_32_X86 = 2, 59 EXE_ELF_32_X86 = 2,
60 EXE_ELF_32_ARM = 3, 60 EXE_ELF_32_ARM = 3,
61 EXE_WIN_32_X64 = 4, 61 EXE_WIN_32_X64 = 4,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 // |buffer| in an undefined state. 99 // |buffer| in an undefined state.
100 Status Assemble(EncodedProgram* encoded, SinkStream* buffer); 100 Status Assemble(EncodedProgram* encoded, SinkStream* buffer);
101 101
102 // Adjusts |program| to look more like |model|. 102 // Adjusts |program| to look more like |model|.
103 // 103 //
104 Status Adjust(const AssemblyProgram& model, AssemblyProgram *program); 104 Status Adjust(const AssemblyProgram& model, AssemblyProgram *program);
105 105
106 } // namespace courgette 106 } // namespace courgette
107 107
108 #endif // COURGETTE_COURGETTE_H_ 108 #endif // COURGETTE_COURGETTE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698