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

Unified Diff: src/hydrogen-instructions.h

Issue 14856015: Bias commutative single-use register inputs and support lea adds (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 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/ia32/lithium-codegen-ia32.cc » ('j') | src/ia32/lithium-ia32.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-instructions.h
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
index c09f261c2e1772e7bfe6548c01f0c5946a4eb8f2..c0cc9cfaf6181344199c2a3685631800299fd2ce 100644
--- a/src/hydrogen-instructions.h
+++ b/src/hydrogen-instructions.h
@@ -3394,13 +3394,21 @@ class HBinaryOperation: public HTemplateInstruction<3> {
// TODO(kasperl): Move these helpers to the IA-32 Lithium
// instruction sequence builder.
- HValue* LeastConstantOperand() {
- if (IsCommutative() && left()->IsConstant()) return right();
+ HValue* BetterCandidateForRegisterOperand() {
+ if (IsCommutative()) {
+ if (left()->IsConstant()) return right();
+ if (right()->IsConstant()) return left();
+ if (right()->UseCount() == 1) return right();
+ }
return left();
}
- HValue* MostConstantOperand() {
- if (IsCommutative() && left()->IsConstant()) return left();
+ HValue* WorseCandidateForRegisterOperand() {
+ if (IsCommutative()) {
+ if (left()->IsConstant()) return left();
+ if (right()->IsConstant()) return right();
+ if (right()->UseCount() == 1) return left();
+ }
return right();
}
« no previous file with comments | « no previous file | src/ia32/lithium-codegen-ia32.cc » ('j') | src/ia32/lithium-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698