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

Side by Side Diff: src/IceInst.cpp

Issue 1405643003: Subzero: Various fixes in preparation for x86-32 register aliasing. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Reformat, 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 unified diff | Download patch
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceRegAlloc.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceInst.cpp - High-level instruction implementation ----===// 1 //===- subzero/src/IceInst.cpp - High-level instruction implementation ----===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 940
941 void InstTarget::dump(const Cfg *Func) const { 941 void InstTarget::dump(const Cfg *Func) const {
942 if (!BuildDefs::dump()) 942 if (!BuildDefs::dump())
943 return; 943 return;
944 Ostream &Str = Func->getContext()->getStrDump(); 944 Ostream &Str = Func->getContext()->getStrDump();
945 Str << "[TARGET] "; 945 Str << "[TARGET] ";
946 Inst::dump(Func); 946 Inst::dump(Func);
947 } 947 }
948 948
949 bool checkForRedundantAssign(const Variable *Dest, const Operand *Source) { 949 bool checkForRedundantAssign(const Variable *Dest, const Operand *Source) {
950 const auto SrcVar = llvm::dyn_cast<const Variable>(Source); 950 const auto *SrcVar = llvm::dyn_cast<const Variable>(Source);
951 if (!SrcVar) 951 if (!SrcVar)
952 return false; 952 return false;
953 if (Dest->hasReg() && Dest->getRegNum() == SrcVar->getRegNum()) { 953 if (Dest->hasReg() && Dest->getRegNum() == SrcVar->getRegNum()) {
954 // TODO: On x86-64, instructions like "mov eax, eax" are used to clear the 954 // TODO: On x86-64, instructions like "mov eax, eax" are used to clear the
955 // upper 32 bits of rax. We need to recognize and preserve these. 955 // upper 32 bits of rax. We need to recognize and preserve these.
956 return true; 956 return true;
957 } 957 }
958 if (!Dest->hasReg() && !SrcVar->hasReg() && 958 if (!Dest->hasReg() && !SrcVar->hasReg() &&
959 Dest->getStackOffset() == SrcVar->getStackOffset()) 959 Dest->getStackOffset() == SrcVar->getStackOffset())
960 return true; 960 return true;
961 return false; 961 return false;
962 } 962 }
963 963
964 } // end of namespace Ice 964 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceRegAlloc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698