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

Unified Diff: src/IceInst.h

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/IceCfgNode.cpp ('k') | src/IceInst.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInst.h
diff --git a/src/IceInst.h b/src/IceInst.h
index 71da0b3d19f13dce0801b15fe126e07dcad37349..5d5101bccdf457d4ed3856d36c0ee4112e9ad305 100644
--- a/src/IceInst.h
+++ b/src/IceInst.h
@@ -782,11 +782,12 @@ private:
~InstFakeUse() override {}
};
-// FakeKill instruction. This "kills" a set of variables by adding a
-// trivial live range at this instruction to each variable. The
-// primary use is to indicate that scratch registers are killed after
-// a call, so that the register allocator won't assign a scratch
-// register to a variable whose live range spans a call.
+// FakeKill instruction. This "kills" a set of variables by modeling
+// a trivial live range at this instruction for each (implicit)
+// variable. The primary use is to indicate that scratch registers
+// are killed after a call, so that the register allocator won't
+// assign a scratch register to a variable whose live range spans a
+// call.
//
// The FakeKill instruction also holds a pointer to the instruction
// that kills the set of variables, so that if that linked instruction
@@ -796,12 +797,9 @@ class InstFakeKill : public InstHighLevel {
InstFakeKill &operator=(const InstFakeKill &) = delete;
public:
- static InstFakeKill *create(Cfg *Func, const VarList &KilledRegs,
- const Inst *Linked) {
- return new (Func->allocateInst<InstFakeKill>())
- InstFakeKill(Func, KilledRegs, Linked);
+ static InstFakeKill *create(Cfg *Func, const Inst *Linked) {
+ return new (Func->allocateInst<InstFakeKill>()) InstFakeKill(Func, Linked);
}
- const VarList &getKilledRegs() const { return KilledRegs; }
const Inst *getLinked() const { return Linked; }
void emit(const Cfg *Func) const override;
void emitIAS(const Cfg * /* Func */) const override {}
@@ -809,10 +807,9 @@ public:
static bool classof(const Inst *Inst) { return Inst->getKind() == FakeKill; }
private:
- InstFakeKill(Cfg *Func, const VarList &KilledRegs, const Inst *Linked);
+ InstFakeKill(Cfg *Func, const Inst *Linked);
~InstFakeKill() override {}
- const VarList &KilledRegs;
// This instruction is ignored if Linked->isDeleted() is true.
const Inst *Linked;
};
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceInst.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698