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

Unified Diff: src/IceOperand.cpp

Issue 1419903002: Subzero: Refactor x86 register definitions to use the alias mechanism. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix assembler unit tests. Fix register names. Code review changes. Rebase Created 5 years, 2 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/IceOperand.h ('k') | src/IcePhiLoweringImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceOperand.cpp
diff --git a/src/IceOperand.cpp b/src/IceOperand.cpp
index 66321c29f1c7e4f5347f858a63e939ce9bbd855d..e66a995d788dfdf672946739f9553dad44fc26d1 100644
--- a/src/IceOperand.cpp
+++ b/src/IceOperand.cpp
@@ -131,7 +131,7 @@ IceString Variable::getName(const Cfg *Func) const {
return "__" + std::to_string(getIndex());
}
-Variable *Variable::asType(Type Ty) {
+const Variable *Variable::asType(Type Ty, int32_t NewRegNum) const {
// Note: This returns a Variable, even if the "this" object is a subclass of
// Variable.
if (!BuildDefs::dump() || getType() == Ty)
@@ -139,7 +139,7 @@ Variable *Variable::asType(Type Ty) {
Variable *V = new (getCurrentCfgAllocator()->Allocate<Variable>())
Variable(kVariable, Ty, Number);
V->NameIndex = NameIndex;
- V->RegNum = RegNum;
+ V->RegNum = NewRegNum == NoRegister ? RegNum : NewRegNum;
V->StackOffset = StackOffset;
return V;
}
« no previous file with comments | « src/IceOperand.h ('k') | src/IcePhiLoweringImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698