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

Unified Diff: src/IceOperand.cpp

Issue 610813002: Subzero: Rewrite the pass timing infrastructure. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Make the optimized overlaps() implementation actually correct Created 6 years, 3 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
« no previous file with comments | « src/IceInst.h ('k') | src/IceRegAlloc.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceOperand.cpp
diff --git a/src/IceOperand.cpp b/src/IceOperand.cpp
index d1854f4f0f0a6d4e48306b87acef22f227f2b84b..361472595e7e22734b318a9cec62c84b2ac02f77 100644
--- a/src/IceOperand.cpp
+++ b/src/IceOperand.cpp
@@ -122,9 +122,26 @@ bool LiveRange::overlaps(const LiveRange &Other) const {
}
bool LiveRange::overlaps(InstNumberT OtherBegin) const {
+ bool Result = false;
+ for (RangeType::const_iterator I = Range.begin(), E = Range.end(); I != E;
+ ++I) {
+ if (OtherBegin < I->first) {
+ Result = false;
+ break;
+ }
+ if (OtherBegin < I->second) {
+ Result = true;
+ break;
+ }
+ }
+#if 0
+ // An equivalent but less inefficient implementation:
Jim Stichnoth 2014/09/30 22:46:00 Actual comparisons indicated this was a lie. The
LiveRange Temp;
Temp.addSegment(OtherBegin, OtherBegin + 1);
- return overlaps(Temp);
+ bool Validation = overlaps(Temp);
+ assert(Result == Validation);
+#endif
+ return Result;
}
// Returns true if the live range contains the given instruction
@@ -259,6 +276,8 @@ const Inst *VariableTracking::getSingleDefinition() const {
}
void VariablesMetadata::init() {
+ static TimerIdT IDvmetadata = GlobalContext::getTimerID("vmetadata");
+ TimerMarker T(IDvmetadata, Func->getContext());
Metadata.clear();
Metadata.resize(Func->getNumVariables());
« no previous file with comments | « src/IceInst.h ('k') | src/IceRegAlloc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698