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

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

Issue 1158673004: Do not eagerly add guarded leaf classes with CHA; do not add them for private names. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: typos in comments 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
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 EXPECT(!cha.HasSubclasses(class_d)); 93 EXPECT(!cha.HasSubclasses(class_d));
94 cha.AddToLeafClasses(class_d);
93 95
94 EXPECT(!ContainsCid(cha.leaf_classes(), class_a.id())); 96 EXPECT(!ContainsCid(cha.leaf_classes(), class_a.id()));
95 EXPECT(!ContainsCid(cha.leaf_classes(), class_b.id())); 97 EXPECT(!ContainsCid(cha.leaf_classes(), class_b.id()));
96 EXPECT(ContainsCid(cha.leaf_classes(), class_c.id())); 98 EXPECT(ContainsCid(cha.leaf_classes(), class_c.id()));
97 EXPECT(ContainsCid(cha.leaf_classes(), class_d.id())); 99 EXPECT(ContainsCid(cha.leaf_classes(), class_d.id()));
98 100
99 const Class& function_impl_class = 101 const Class& function_impl_class =
100 Class::Handle(Type::Handle(Isolate::Current()->object_store()-> 102 Class::Handle(Type::Handle(Isolate::Current()->object_store()->
101 function_impl_type()).type_class()); 103 function_impl_type()).type_class());
102 EXPECT(cha.HasSubclasses(function_impl_class.id())); 104 EXPECT(cha.HasSubclasses(function_impl_class.id()));
103 } 105 }
104 106
105 } // namespace dart 107 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698