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

Unified Diff: src/IceInst.cpp

Issue 720343003: Subzero: Simplify the FakeKill instruction. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Hoist KillsMask out of the loop Created 6 years, 1 month 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/IceInst.h ('k') | src/IceOperand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInst.cpp
diff --git a/src/IceInst.cpp b/src/IceInst.cpp
index 090faba5ad997eb9e3366a91d89d8e70c93a9c07..5030f5f5388802a8b7d24960ff821d69bb72ed79 100644
--- a/src/IceInst.cpp
+++ b/src/IceInst.cpp
@@ -114,8 +114,6 @@ bool Inst::isLastUse(const Operand *TestSrc) const {
void Inst::livenessLightweight(Cfg *Func, LivenessBV &Live) {
assert(!isDeleted());
- if (llvm::isa<InstFakeKill>(this))
- return;
resetLastUses();
VariablesMetadata *VMetadata = Func->getVMetadata();
SizeT VarIndex = 0;
@@ -139,8 +137,6 @@ bool Inst::liveness(InstNumberT InstNumber, LivenessBV &Live,
Liveness *Liveness, LiveBeginEndMap *LiveBegin,
LiveBeginEndMap *LiveEnd) {
assert(!isDeleted());
- if (llvm::isa<InstFakeKill>(this))
- return true;
Dead = false;
if (Dest) {
@@ -181,15 +177,13 @@ bool Inst::liveness(InstNumberT InstNumber, LivenessBV &Live,
// twice. ICE only allows a variable to have a single
// liveness interval in a basic block (except for blocks
// where a variable is live-in and live-out but there is a
- // gap in the middle, and except for the special
- // InstFakeKill instruction that can appear multiple
- // times in the same block). Therefore, this lowered
- // sequence needs to represent a single conservative live
- // range for t. Since the instructions are being traversed
- // backwards, we make sure LiveEnd is only set once by
- // setting it only when LiveEnd[VarNum]==0 (sentinel value).
- // Note that it's OK to set LiveBegin multiple times because
- // of the backwards traversal.
+ // gap in the middle). Therefore, this lowered sequence
+ // needs to represent a single conservative live range for
+ // t. Since the instructions are being traversed backwards,
+ // we make sure LiveEnd is only set once by setting it only
+ // when LiveEnd[VarNum]==0 (sentinel value). Note that it's
+ // OK to set LiveBegin multiple times because of the
+ // backwards traversal.
if (LiveEnd) {
// Ideally, we would verify that VarNum wasn't already
// added in this block, but this can't be done very
@@ -452,10 +446,8 @@ InstFakeUse::InstFakeUse(Cfg *Func, Variable *Src)
addSource(Src);
}
-InstFakeKill::InstFakeKill(Cfg *Func, const VarList &KilledRegs,
- const Inst *Linked)
- : InstHighLevel(Func, Inst::FakeKill, 0, NULL), KilledRegs(KilledRegs),
- Linked(Linked) {}
+InstFakeKill::InstFakeKill(Cfg *Func, const Inst *Linked)
+ : InstHighLevel(Func, Inst::FakeKill, 0, NULL), Linked(Linked) {}
// ======================== Dump routines ======================== //
@@ -757,14 +749,7 @@ void InstFakeKill::dump(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrDump();
if (Linked->isDeleted())
Str << "// ";
- Str << "kill.pseudo ";
- bool First = true;
- for (Variable *Var : KilledRegs) {
- if (!First)
- Str << ", ";
- First = false;
- Var->dump(Func);
- }
+ Str << "kill.pseudo scratch_regs";
}
void InstTarget::dump(const Cfg *Func) const {
« no previous file with comments | « src/IceInst.h ('k') | src/IceOperand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698