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

Unified Diff: runtime/vm/object.cc

Issue 195333002: Unboxed Float64x2 fields and some misc fixes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 382dac2ca16413e891813f1c8e353508f8d3b2e1..231ca5163c7a175db28d51b9f731b76d8f1bd37d 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -6371,7 +6371,9 @@ void Field::set_guarded_list_length(intptr_t list_length) const {
bool Field::IsUnboxedField() const {
bool valid_class = (guarded_cid() == kDoubleCid) ||
(FlowGraphCompiler::SupportsUnboxedFloat32x4() &&
- (guarded_cid() == kFloat32x4Cid));
+ (guarded_cid() == kFloat32x4Cid)) ||
+ (FlowGraphCompiler::SupportsUnboxedFloat32x4() &&
zra 2014/03/11 16:55:33 64x2?
Cutch 2014/03/11 17:05:28 Done.
+ (guarded_cid() == kFloat64x2Cid));
return is_unboxing_candidate() && !is_final() && !is_nullable() &&
valid_class;
}
« runtime/vm/intermediate_language_arm.cc ('K') | « runtime/vm/intermediate_language_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698