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

Side by Side Diff: runtime/vm/cha_test.cc

Issue 1186113011: Some cleanup and be more conservative when guessing cids: use only current leaf classes; otherwise … (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: y Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/cha.cc ('k') | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "platform/assert.h" 5 #include "platform/assert.h"
6 #include "vm/cha.h" 6 #include "vm/cha.h"
7 #include "vm/class_finalizer.h" 7 #include "vm/class_finalizer.h"
8 #include "vm/globals.h" 8 #include "vm/globals.h"
9 #include "vm/symbols.h" 9 #include "vm/symbols.h"
10 #include "vm/unit_test.h" 10 #include "vm/unit_test.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 const Function& class_d_bar = 79 const Function& class_d_bar =
80 Function::Handle(class_d.LookupDynamicFunction(function_bar_name)); 80 Function::Handle(class_d.LookupDynamicFunction(function_bar_name));
81 EXPECT(!class_d_bar.IsNull()); 81 EXPECT(!class_d_bar.IsNull());
82 82
83 CHA cha(Thread::Current()); 83 CHA cha(Thread::Current());
84 84
85 EXPECT(cha.HasSubclasses(kInstanceCid)); 85 EXPECT(cha.HasSubclasses(kInstanceCid));
86 EXPECT(!cha.HasSubclasses(kSmiCid)); 86 EXPECT(!cha.HasSubclasses(kSmiCid));
87 EXPECT(!cha.HasSubclasses(kNullCid)); 87 EXPECT(!cha.HasSubclasses(kNullCid));
88 88
89 EXPECT(cha.HasSubclasses(class_a)); 89 EXPECT(CHA::HasSubclasses(class_a));
90 EXPECT(cha.HasSubclasses(class_b)); 90 EXPECT(CHA::HasSubclasses(class_b));
91 EXPECT(!cha.HasSubclasses(class_c)); 91 EXPECT(!CHA::HasSubclasses(class_c));
92 cha.AddToLeafClasses(class_c); 92 cha.AddToLeafClasses(class_c);
93 EXPECT(!cha.HasSubclasses(class_d)); 93 EXPECT(!CHA::HasSubclasses(class_d));
94 cha.AddToLeafClasses(class_d); 94 cha.AddToLeafClasses(class_d);
95 95
96 EXPECT(!ContainsCid(cha.leaf_classes(), class_a.id())); 96 EXPECT(!ContainsCid(cha.leaf_classes(), class_a.id()));
97 EXPECT(!ContainsCid(cha.leaf_classes(), class_b.id())); 97 EXPECT(!ContainsCid(cha.leaf_classes(), class_b.id()));
98 EXPECT(ContainsCid(cha.leaf_classes(), class_c.id())); 98 EXPECT(ContainsCid(cha.leaf_classes(), class_c.id()));
99 EXPECT(ContainsCid(cha.leaf_classes(), class_d.id())); 99 EXPECT(ContainsCid(cha.leaf_classes(), class_d.id()));
100 100
101 const Class& function_impl_class = 101 const Class& function_impl_class =
102 Class::Handle(Type::Handle(Isolate::Current()->object_store()-> 102 Class::Handle(Type::Handle(Isolate::Current()->object_store()->
103 function_impl_type()).type_class()); 103 function_impl_type()).type_class());
104 EXPECT(cha.HasSubclasses(function_impl_class.id())); 104 EXPECT(cha.HasSubclasses(function_impl_class.id()));
105 } 105 }
106 106
107 } // namespace dart 107 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/cha.cc ('k') | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698