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

Unified Diff: runtime/vm/flow_graph_compiler_x64.cc

Issue 13818006: Unboxed load/store indexed of Float32x4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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
Index: runtime/vm/flow_graph_compiler_x64.cc
diff --git a/runtime/vm/flow_graph_compiler_x64.cc b/runtime/vm/flow_graph_compiler_x64.cc
index ed7891e7c65bcf2febb1cd10b5191dfe98854cca..d0df0360b37a345054d518758f68baeda2a32392 100644
--- a/runtime/vm/flow_graph_compiler_x64.cc
+++ b/runtime/vm/flow_graph_compiler_x64.cc
@@ -1529,6 +1529,7 @@ static ScaleFactor ToScaleFactor(intptr_t index_scale) {
case 2: return TIMES_1;
case 4: return TIMES_2;
case 8: return TIMES_4;
+ case 16: return TIMES_8;
default:
UNREACHABLE();
return TIMES_1;

Powered by Google App Engine
This is Rietveld 408576698