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

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: 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/IceGlobalContext.h ('k') | src/IceRevision.h » ('j') | src/IceRevision.h » ('J')
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..7a77575e6b2fec28d61998476e65113f7bd61581 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"
@@ -466,6 +467,27 @@ void GlobalContext::saveBlockInfoPtrs() {
}
}
+void GlobalContext::lowerGlobalsIfNoCodeHasBeenSeen() {
+ if (HasSeenCode)
+ return;
+
+ if (getFlags().getEmitRevision()) {
John 2016/08/08 11:47:28 This method is supposed to emit globals, but it al
Jim Stichnoth 2016/08/08 14:46:18 A side effect of lowering globals is that Globals
John 2016/08/08 14:55:36 Or maybe just add the global in the GlobalContext'
Jim Stichnoth 2016/08/08 17:48:09 Brilliant! Done.
+ // 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);
+ }
+
+ constexpr char NoSuffix[] = "";
+ lowerGlobals(NoSuffix);
+ HasSeenCode = true;
+}
+
void GlobalContext::lowerGlobals(const std::string &SectionSuffix) {
TimerMarker T(TimerStack::TT_emitGlobalInitializers, this);
const bool DumpGlobalVariables =
« no previous file with comments | « src/IceGlobalContext.h ('k') | src/IceRevision.h » ('j') | src/IceRevision.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698