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

Unified Diff: src/IceRegAlloc.h

Issue 1319203005: Subzero. Changes the Register Allocator so that it is aware of register (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 5 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 | « no previous file | src/IceRegAlloc.cpp » ('j') | src/IceRegAlloc.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceRegAlloc.h
diff --git a/src/IceRegAlloc.h b/src/IceRegAlloc.h
index f68109171dd9878648e35e4120bb520eda48ffe5..627b82c3406c89b2b11da533a5f22fc6b5bd75e3 100644
--- a/src/IceRegAlloc.h
+++ b/src/IceRegAlloc.h
@@ -108,6 +108,8 @@ private:
/// currently assigned to. It can be greater than 1 as a result of
/// AllowOverlap inference.
llvm::SmallVector<int32_t, REGS_SIZE> RegUses;
+ llvm::SmallVector<const llvm::SmallBitVector *, REGS_SIZE> RegAliases;
jvoung (off chromium) 2015/09/04 16:14:46 Just a note that on ARM (and probably MIPS?) the t
John 2015/09/04 17:32:25 I added a TODO here. Maybe it is worth investigati
+ TargetLowering *Target;
bool FindPreference = false;
bool FindOverlap = false;
« no previous file with comments | « no previous file | src/IceRegAlloc.cpp » ('j') | src/IceRegAlloc.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698