| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 #ifndef VM_METHOD_RECOGNIZER_H_ | 5 #ifndef VM_METHOD_RECOGNIZER_H_ |
| 6 #define VM_METHOD_RECOGNIZER_H_ | 6 #define VM_METHOD_RECOGNIZER_H_ |
| 7 | 7 |
| 8 #include "vm/allocation.h" | 8 #include "vm/allocation.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 V(ListIterator, moveNext, ListIteratorMoveNext, 210829138) \ | 297 V(ListIterator, moveNext, ListIteratorMoveNext, 210829138) \ |
| 298 V(_FixedSizeArrayIterator, moveNext, FixedListIteratorMoveNext, 1147271335) \ | 298 V(_FixedSizeArrayIterator, moveNext, FixedListIteratorMoveNext, 1147271335) \ |
| 299 V(_GrowableList, get:iterator, GrowableArrayIterator, 1812933946) \ | 299 V(_GrowableList, get:iterator, GrowableArrayIterator, 1812933946) \ |
| 300 V(_GrowableList, forEach, GrowableArrayForEach, 2085943947) \ | 300 V(_GrowableList, forEach, GrowableArrayForEach, 2085943947) \ |
| 301 V(_List, ., ObjectArrayAllocate, 1595327584) \ | 301 V(_List, ., ObjectArrayAllocate, 1595327584) \ |
| 302 V(_List, [], ObjectArrayGetIndexed, 795612476) \ | 302 V(_List, [], ObjectArrayGetIndexed, 795612476) \ |
| 303 V(_List, []=, ObjectArraySetIndexed, 1288827575) \ | 303 V(_List, []=, ObjectArraySetIndexed, 1288827575) \ |
| 304 V(_List, get:isEmpty, ObjectArrayIsEmpty, 2130247737) \ | 304 V(_List, get:isEmpty, ObjectArrayIsEmpty, 2130247737) \ |
| 305 V(_List, get:iterator, ObjectArrayIterator, 458612415) \ | 305 V(_List, get:iterator, ObjectArrayIterator, 458612415) \ |
| 306 V(_List, forEach, ObjectArrayForEach, 592525445) \ | 306 V(_List, forEach, ObjectArrayForEach, 592525445) \ |
| 307 V(_List, _copyFromObjectArray, ObjectArrayCopyFromObjectArray, 1985480605) \ |
| 307 V(_ImmutableList, get:iterator, ImmutableArrayIterator, 362084797) \ | 308 V(_ImmutableList, get:iterator, ImmutableArrayIterator, 362084797) \ |
| 308 V(_ImmutableList, forEach, ImmutableArrayForEach, 63658053) \ | 309 V(_ImmutableList, forEach, ImmutableArrayForEach, 63658053) \ |
| 309 V(_ImmutableList, [], ImmutableArrayGetIndexed, 1990177341) \ | 310 V(_ImmutableList, [], ImmutableArrayGetIndexed, 1990177341) \ |
| 310 V(_GrowableList, [], GrowableArrayGetIndexed, 919108233) \ | 311 V(_GrowableList, [], GrowableArrayGetIndexed, 919108233) \ |
| 311 V(_GrowableList, []=, GrowableArraySetIndexed, 1218649853) \ | 312 V(_GrowableList, []=, GrowableArraySetIndexed, 1218649853) \ |
| 312 V(_Float32Array, [], Float32ArrayGetIndexed, 856653338) \ | 313 V(_Float32Array, [], Float32ArrayGetIndexed, 856653338) \ |
| 313 V(_Float32Array, []=, Float32ArraySetIndexed, 2086166464) \ | 314 V(_Float32Array, []=, Float32ArraySetIndexed, 2086166464) \ |
| 314 V(_Float64Array, [], Float64ArrayGetIndexed, 1779054297) \ | 315 V(_Float64Array, [], Float64ArrayGetIndexed, 1779054297) \ |
| 315 V(_Float64Array, []=, Float64ArraySetIndexed, 243929230) \ | 316 V(_Float64Array, []=, Float64ArraySetIndexed, 243929230) \ |
| 316 V(_Int8Array, [], Int8ArrayGetIndexed, 321230586) \ | 317 V(_Int8Array, [], Int8ArrayGetIndexed, 321230586) \ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 static Kind RecognizeKind(const Function& function); | 390 static Kind RecognizeKind(const Function& function); |
| 390 static bool AlwaysInline(const Function& function); | 391 static bool AlwaysInline(const Function& function); |
| 391 static bool PolymorphicTarget(const Function& function); | 392 static bool PolymorphicTarget(const Function& function); |
| 392 static const char* KindToCString(Kind kind); | 393 static const char* KindToCString(Kind kind); |
| 393 static void InitializeState(); | 394 static void InitializeState(); |
| 394 }; | 395 }; |
| 395 | 396 |
| 396 } // namespace dart | 397 } // namespace dart |
| 397 | 398 |
| 398 #endif // VM_METHOD_RECOGNIZER_H_ | 399 #endif // VM_METHOD_RECOGNIZER_H_ |
| OLD | NEW |