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/IceCfgNode.h

Issue 1746613002: Subzero: Reduce copying of Liveness bitvectors. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix huge perf problem in MINIMAL build 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
Index: src/IceCfgNode.h
diff --git a/src/IceCfgNode.h b/src/IceCfgNode.h
index f7e7b0e20ee07e190a13a94901874682ba04a85e..ca95afb2108dd3e3c48062bd6d38d8ab9c41139b 100644
--- a/src/IceCfgNode.h
+++ b/src/IceCfgNode.h
@@ -99,7 +99,7 @@ public:
void doNopInsertion(RandomNumberGenerator &RNG);
void genCode();
void livenessLightweight();
- bool liveness(Liveness *Liveness);
+ bool liveness(Liveness *Liveness, LivenessBV *ScratchBV);
void livenessAddIntervals(Liveness *Liveness, InstNumberT FirstInstNum,
InstNumberT LastInstNum);
void contractIfEmpty();

Powered by Google App Engine
This is Rietveld 408576698