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

Unified Diff: src/IceTargetLoweringX8632.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/IceTargetLowering.cpp ('k') | src/IceTargetLoweringX8632.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringX8632.h
diff --git a/src/IceTargetLoweringX8632.h b/src/IceTargetLoweringX8632.h
index 3acd4d9184d371d052cad039eaf39c0ae8f0b9d1..74ba287767f2a99a0e6ffc3176d0c3e648f18ca3 100644
--- a/src/IceTargetLoweringX8632.h
+++ b/src/IceTargetLoweringX8632.h
@@ -483,20 +483,10 @@ protected:
llvm::SmallBitVector RegsUsed;
SizeT NextLabelNumber;
VarList PhysicalRegisters[IceType_NUM];
- VarList FakeKilledScratchRegisters;
static IceString RegNames[];
private:
~TargetX8632() override {}
- // Ideally, this initialization would be done in the constructor,
- // but we need to defer it until after the initial CFG is built,
- // because some of the bitcode reader tests rely on the order that
- // Variables are created and their default printable names.
- void initFakeKilledScratchRegisters() {
- for (SizeT I = 0; I < ScratchRegs.size(); ++I)
- if (ScratchRegs[I])
- FakeKilledScratchRegisters.push_back(getPhysicalRegister(I));
- }
template <typename T> void emitConstantPool() const;
};
« no previous file with comments | « src/IceTargetLowering.cpp ('k') | src/IceTargetLoweringX8632.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698