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

Side by Side Diff: runtime/observatory/lib/src/models/objects/function.dart

Issue 3008923002: Improve the performance of closure-converted code. (Closed)
Patch Set: Additional bug fixes. Created 3 years, 3 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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 part of models; 5 part of models;
6 6
7 enum FunctionKind { 7 enum FunctionKind {
8 regular, 8 regular,
9 closure, 9 closure,
10 implicitClosure, 10 implicitClosure,
11 convertedClosure,
11 getter, 12 getter,
12 setter, 13 setter,
13 constructor, 14 constructor,
14 implicitGetter, 15 implicitGetter,
15 implicitSetter, 16 implicitSetter,
16 implicitStaticFinalGetter, 17 implicitStaticFinalGetter,
17 irregexpFunction, 18 irregexpFunction,
18 staticInitializer, 19 staticInitializer,
19 methodExtractor, 20 methodExtractor,
20 noSuchMethodDispatcher, 21 noSuchMethodDispatcher,
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 FieldRef get field; 90 FieldRef get field;
90 int get usageCounter; 91 int get usageCounter;
91 InstanceRef get icDataArray; 92 InstanceRef get icDataArray;
92 int get deoptimizations; 93 int get deoptimizations;
93 bool get isOptimizable; 94 bool get isOptimizable;
94 bool get isInlinable; 95 bool get isInlinable;
95 bool get hasIntrinsic; 96 bool get hasIntrinsic;
96 bool get isRecognized; 97 bool get isRecognized;
97 bool get isNative; 98 bool get isNative;
98 } 99 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/function_view.dart ('k') | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698