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

Unified Diff: courgette/image_utils.h

Issue 1491703003: [Courgette] Initial Implementation of LabelManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync. Created 5 years 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
« no previous file with comments | « courgette/courgette.gyp ('k') | courgette/label_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/image_utils.h
diff --git a/courgette/image_utils.h b/courgette/image_utils.h
index c016357732d05745c3487a317b1eab98d91fa840..47ba4f4cc01709f24478aed58f26b6dc6c27bb3c 100644
--- a/courgette/image_utils.h
+++ b/courgette/image_utils.h
@@ -15,6 +15,26 @@ namespace courgette {
typedef uint32 RVA;
+// A Label is a symbolic reference to an address. Unlike a conventional
+// assembly language, we always know the address. The address will later be
+// stored in a table and the Label will be replaced with the index into the
+// table.
+// TODO(huangs): Make this a struct, and remove "_" from member names.
+class Label {
+ public:
+ enum : int { kNoIndex = -1 };
+ explicit Label(RVA rva) : rva_(rva) {}
+
+ bool operator==(const Label& other) const {
+ return rva_ == other.rva_ && index_ == other.index_ &&
+ count_ == other.count_;
+ }
+
+ RVA rva_ = 0; // Address referred to by the label.
+ int index_ = kNoIndex; // Index of address in address table.
+ int32 count_ = 0;
+};
+
// These helper functions avoid the need for casts in the main code.
inline uint16 ReadU16(const uint8* address, size_t offset) {
return *reinterpret_cast<const uint16*>(address + offset);
« no previous file with comments | « courgette/courgette.gyp ('k') | courgette/label_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698