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

Unified Diff: src/hydrogen-instructions.cc

Issue 6656001: Support external arrays in Crankshaft (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: stub out arm Created 9 years, 9 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/hydrogen-instructions.cc
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
index e253795a5ea98c1d83d4146154c250b62e4411f2..12e5c862ea69b8508b7bb2240b530e5dd56b9e02 100644
--- a/src/hydrogen-instructions.cc
+++ b/src/hydrogen-instructions.cc
@@ -1172,7 +1172,8 @@ void HLoadKeyedGeneric::PrintDataTo(StringStream* stream) {
}
-void HLoadPixelArrayElement::PrintDataTo(StringStream* stream) {
+void HLoadKeyedSpecializedArrayElement::PrintDataTo(
+ StringStream* stream) {
external_pointer()->PrintNameTo(stream);
Kevin Millikin (Chromium) 2011/03/24 11:21:00 It might be useful to print a string representatio
danno 2011/03/24 13:18:38 Done.
stream->Add("[");
key()->PrintNameTo(stream);
@@ -1221,7 +1222,8 @@ void HStoreKeyedGeneric::PrintDataTo(StringStream* stream) {
}
-void HStorePixelArrayElement::PrintDataTo(StringStream* stream) {
+void HStoreKeyedSpecializedArrayElement::PrintDataTo(
+ StringStream* stream) {
external_pointer()->PrintNameTo(stream);
stream->Add("[");
key()->PrintNameTo(stream);

Powered by Google App Engine
This is Rietveld 408576698