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

Unified Diff: src/IceDefs.h

Issue 652633002: Subzero: Improve performance of liveness analysis and live range construction. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix non-debug build Created 6 years, 2 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
Index: src/IceDefs.h
diff --git a/src/IceDefs.h b/src/IceDefs.h
index 29ed5d814af847a48b3e28ca311723518abf2307..0ff699a7548e85c9a165bb2d0a9bcc012bcf80fa 100644
--- a/src/IceDefs.h
+++ b/src/IceDefs.h
@@ -69,6 +69,10 @@ typedef uint32_t SizeT;
// numbers are used for representing Variable live ranges.
typedef int32_t InstNumberT;
+typedef llvm::BitVector LivenessBV;
+typedef std::pair<SizeT, InstNumberT> BeginEndMapEntry;
jvoung (off chromium) 2014/10/13 20:50:50 Could you leave a comment about the structure of t
Jim Stichnoth 2014/10/13 23:15:22 Both suggestions done.
+typedef std::vector<BeginEndMapEntry> BeginEndMap;
+
typedef uint32_t TimerStackIdT;
typedef uint32_t TimerIdT;

Powered by Google App Engine
This is Rietveld 408576698