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

Unified Diff: src/IceGlobalInits.h

Issue 1661193004: Subzero. Adds symbolic references to RelocInitializer. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: addresses comments. Created 4 years, 10 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
« no previous file with comments | « src/IceGlobalContext.cpp ('k') | src/IceGlobalInits.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceGlobalInits.h
diff --git a/src/IceGlobalInits.h b/src/IceGlobalInits.h
index 711a563d88430f2cdcedd57ed2fa5f4ffaac417b..902e3352a532c826d1c157758895c9d483b60d09 100644
--- a/src/IceGlobalInits.h
+++ b/src/IceGlobalInits.h
@@ -22,6 +22,7 @@
#include "IceDefs.h"
#include "IceGlobalContext.h"
#include "IceIntrinsics.h"
+#include "IceOperand.h"
#include "IceTypes.h"
#ifdef __clang__
@@ -318,11 +319,19 @@ public:
public:
static std::unique_ptr<RelocInitializer>
- create(const GlobalDeclaration *Declaration, RelocOffsetT Offset) {
- return makeUnique<RelocInitializer>(Declaration, Offset);
+ create(const GlobalDeclaration *Declaration,
+ const RelocOffsetArray &OffsetExpr) {
+ return makeUnique<RelocInitializer>(Declaration, OffsetExpr);
+ }
+
+ RelocOffsetT getOffset() const {
+ RelocOffsetT Offset = 0;
+ for (const auto *RelocOffset : OffsetExpr) {
+ Offset += RelocOffset->getOffset();
+ }
+ return Offset;
}
- RelocOffsetT getOffset() const { return Offset; }
const GlobalDeclaration *getDeclaration() const { return Declaration; }
SizeT getNumBytes() const final { return RelocAddrSize; }
void dump(GlobalContext *Ctx, Ostream &Stream) const final;
@@ -334,13 +343,15 @@ public:
private:
ENABLE_MAKE_UNIQUE;
- RelocInitializer(const GlobalDeclaration *Declaration, RelocOffsetT Offset)
- : Initializer(RelocInitializerKind), Declaration(Declaration),
- Offset(Offset) {} // The global declaration used in the relocation.
+ RelocInitializer(const GlobalDeclaration *Declaration,
+ const RelocOffsetArray &OffsetExpr)
+ : Initializer(RelocInitializerKind),
+ Declaration(Declaration), // The global declaration used in the reloc.
+ OffsetExpr(OffsetExpr) {}
const GlobalDeclaration *Declaration;
/// The offset to add to the relocation.
- const RelocOffsetT Offset;
+ const RelocOffsetArray OffsetExpr;
};
/// Models the list of initializers.
« no previous file with comments | « src/IceGlobalContext.cpp ('k') | src/IceGlobalInits.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698