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

Unified Diff: src/IceGlobalContext.cpp

Issue 2218363002: Subzero: Embed the revision string into translated output. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Insert new global in GlobalContext ctor. Created 4 years, 4 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/IceCompileServer.cpp ('k') | src/IceRevision.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceGlobalContext.cpp
diff --git a/src/IceGlobalContext.cpp b/src/IceGlobalContext.cpp
index 349db7cc4ff4bb7db75c5233ce3d3ec1f318a91b..678c521ddf462f48f2362c9de99903a90283410b 100644
--- a/src/IceGlobalContext.cpp
+++ b/src/IceGlobalContext.cpp
@@ -23,6 +23,7 @@
#include "IceGlobalInits.h"
#include "IceLiveness.h"
#include "IceOperand.h"
+#include "IceRevision.h"
#include "IceTargetLowering.h"
#include "IceTimerTree.h"
#include "IceTypes.def"
@@ -357,6 +358,18 @@ GlobalContext::GlobalContext(Ostream *OsDump, Ostream *OsEmit, Ostream *OsError,
#undef X
TargetLowering::staticInit(this);
+
+ if (getFlags().getEmitRevision()) {
+ // Embed the Subzero revision into the compiled binary by creating a special
+ // global variable initialized with the revision string.
+ auto *Revision = VariableDeclaration::create(&Globals, true);
+ Revision->setName(this, "__Sz_revision");
+ Revision->setIsConstant(true);
+ const char *RevisionString = getSubzeroRevision();
+ Revision->addInitializer(VariableDeclaration::DataInitializer::create(
+ &Globals, RevisionString, 1 + strlen(RevisionString)));
+ Globals.push_back(Revision);
+ }
}
void GlobalContext::translateFunctions() {
« no previous file with comments | « src/IceCompileServer.cpp ('k') | src/IceRevision.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698