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

Unified Diff: src/IceOperand.h

Issue 1377323002: Subzero: Change -asm-verbose output to print more useful info. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Also add predecessors and loop depth Created 5 years, 3 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/IceCfgNode.cpp ('k') | src/IceTargetLoweringX86BaseImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceOperand.h
diff --git a/src/IceOperand.h b/src/IceOperand.h
index f624641f17725ea6b0b342b1d695572e6cf339c2..28c118d23c1966df4555a59a6a5e3621f2eee0ff 100644
--- a/src/IceOperand.h
+++ b/src/IceOperand.h
@@ -442,6 +442,11 @@ public:
int32_t getStackOffset() const { return StackOffset; }
void setStackOffset(int32_t Offset) { StackOffset = Offset; }
+ /// Returns the variable's stack offset in symbolic form, to improve
+ /// readability in DecorateAsm mode.
+ IceString getSymbolicStackOffset(const Cfg *Func) const {
+ return "lv$" + getName(Func);
+ }
static const int32_t NoRegister = -1;
bool hasReg() const { return getRegNum() != NoRegister; }
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceTargetLoweringX86BaseImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698