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

Unified Diff: src/IceLiveness.h

Issue 1738683003: Subzero. Moar performance tweaks. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments Created 4 years, 10 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
« src/IceBitVector.h ('K') | « src/IceDefs.h ('k') | src/IceRNG.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceLiveness.h
diff --git a/src/IceLiveness.h b/src/IceLiveness.h
index a51a28db46db26d219459867de8366ead347c9cf..66e4976d6a37773eba5fc9eb66b1637686b5a1f5 100644
--- a/src/IceLiveness.h
+++ b/src/IceLiveness.h
@@ -21,8 +21,9 @@
#ifndef SUBZERO_SRC_ICELIVENESS_H
#define SUBZERO_SRC_ICELIVENESS_H
-#include "IceCfgNode.h"
#include "IceDefs.h"
+#include "IceBitVector.h"
+#include "IceCfgNode.h"
#include "IceTypes.h"
namespace Ice {
@@ -117,7 +118,7 @@ private:
CfgVector<Variable *> LiveToVarMap;
/// RangeMask[Variable::Number] indicates whether we want to track that
/// Variable's live range.
- llvm::BitVector RangeMask;
+ LivenessBV RangeMask;
};
} // end of namespace Ice
« src/IceBitVector.h ('K') | « src/IceDefs.h ('k') | src/IceRNG.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698