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

Unified Diff: runtime/vm/flow_graph_compiler_ia32.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_ia32.cc
diff --git a/runtime/vm/flow_graph_compiler_ia32.cc b/runtime/vm/flow_graph_compiler_ia32.cc
index 302b8746eeb8e9af2262db8ef96069c43c3d26f3..2064488cf2e490f03592e06ee7b6ca20fa0a8b64 100644
--- a/runtime/vm/flow_graph_compiler_ia32.cc
+++ b/runtime/vm/flow_graph_compiler_ia32.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