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

Unified Diff: src/IceOperand.h

Issue 720343003: Subzero: Simplify the FakeKill instruction. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Remove the Nonpoints code in LiveRange 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.cpp ('k') | src/IceOperand.cpp » ('j') | src/IceRegAlloc.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceOperand.h
diff --git a/src/IceOperand.h b/src/IceOperand.h
index 5e0c02d84b7f261572548c8b3bea2d1a95d2d48e..c37b195415d78807a42e4eb3d1e83b4464bd327c 100644
--- a/src/IceOperand.h
+++ b/src/IceOperand.h
@@ -309,17 +309,15 @@ bool operator==(const RegWeight &A, const RegWeight &B);
// weight, in case e.g. we want a live range to have higher weight
// inside a loop.
class LiveRange {
- // LiveRange(const LiveRange &) = delete;
- // LiveRange &operator=(const LiveRange &) = delete;
jvoung (off chromium) 2014/11/14 17:01:09 Oh, also I didn't spot where this change was neede
Jim Stichnoth 2014/11/14 18:27:02 Sorry, this was just cleanup while I was in the ne
-
public:
- LiveRange() : Weight(0), IsNonpoints(false) {}
+ LiveRange() : Weight(0) {}
+ LiveRange(const LiveRange &) = default;
+ LiveRange &operator=(const LiveRange &) = default;
void reset() {
Range.clear();
Weight.setWeight(0);
untrim();
- IsNonpoints = false;
}
void addSegment(InstNumberT Start, InstNumberT End);
@@ -328,7 +326,6 @@ public:
bool overlapsInst(InstNumberT OtherBegin, bool UseTrimmed = false) const;
bool containsValue(InstNumberT Value, bool IsDest) const;
bool isEmpty() const { return Range.empty(); }
- bool isNonpoints() const { return IsNonpoints; }
InstNumberT getStart() const {
return Range.empty() ? -1 : Range.begin()->first;
}
@@ -365,11 +362,6 @@ private:
// that linear-scan also has to initialize TrimmedBegin at the
// beginning by calling untrim().
RangeType::const_iterator TrimmedBegin;
- // IsNonpoints keeps track of whether the live range contains at
- // least one interval where Start!=End. If it is empty or has the
- // form [x,x),[y,y),...,[z,z), then overlaps(InstNumberT) is
- // trivially false.
- bool IsNonpoints;
};
Ostream &operator<<(Ostream &Str, const LiveRange &L);
« no previous file with comments | « src/IceInst.cpp ('k') | src/IceOperand.cpp » ('j') | src/IceRegAlloc.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698