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

Unified Diff: src/objects.cc

Issue 1287383003: Re-reland: Remove register index/code indirection (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Updated to ToT 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
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index c91ed7c5fd366c24c544b2e4a70637a56e8eabfc..d721140997927a9bfbd65f098d0e1578a4d8f605 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -11615,7 +11615,7 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(
case Translation::DOUBLE_REGISTER: {
int reg_code = iterator.Next();
- os << "{input=" << DoubleRegister::AllocationIndexToString(reg_code)
+ os << "{input=" << DoubleRegister::from_code(reg_code).ToString()
<< "}";
break;
}

Powered by Google App Engine
This is Rietveld 408576698