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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 V(_Double, /, Double_div, 1249186273) \ | 183 V(_Double, /, Double_div, 1249186273) \ |
184 V(_Double, get:isNaN, Double_getIsNaN, 843169197) \ | 184 V(_Double, get:isNaN, Double_getIsNaN, 843169197) \ |
185 V(_Double, get:isNegative, Double_getIsNegative, 1637994744) \ | 185 V(_Double, get:isNegative, Double_getIsNegative, 1637994744) \ |
186 V(_Double, _mulFromInteger, Double_mulFromInteger, 63390017) \ | 186 V(_Double, _mulFromInteger, Double_mulFromInteger, 63390017) \ |
187 V(_Double, .fromInteger, DoubleFromInteger, 213717920) \ | 187 V(_Double, .fromInteger, DoubleFromInteger, 213717920) \ |
188 V(_List, []=, ObjectArraySetIndexed, 527521746) \ | 188 V(_List, []=, ObjectArraySetIndexed, 527521746) \ |
189 V(_GrowableList, .withData, GrowableArray_Allocate, 2094352700) \ | 189 V(_GrowableList, .withData, GrowableArray_Allocate, 2094352700) \ |
190 V(_GrowableList, add, GrowableArray_add, 1675959698) \ | 190 V(_GrowableList, add, GrowableArray_add, 1675959698) \ |
191 V(_JSSyntaxRegExp, _ExecuteMatch, JSRegExp_ExecuteMatch, 1711509198) \ | 191 V(_JSSyntaxRegExp, _ExecuteMatch, JSRegExp_ExecuteMatch, 1711509198) \ |
192 V(Object, ==, ObjectEquals, 409406570) \ | 192 V(Object, ==, ObjectEquals, 409406570) \ |
| 193 V(Object, get:runtimeType, ObjectRuntimeType, 2076963579) \ |
193 V(_StringBase, get:hashCode, String_getHashCode, 2103025405) \ | 194 V(_StringBase, get:hashCode, String_getHashCode, 2103025405) \ |
194 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 780870414) \ | 195 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 780870414) \ |
195 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 397735324) \ | 196 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 397735324) \ |
196 V(_StringBase, [], StringBaseCharAt, 408544820) \ | 197 V(_StringBase, [], StringBaseCharAt, 408544820) \ |
197 V(_OneByteString, get:hashCode, OneByteString_getHashCode, 1111957093) \ | 198 V(_OneByteString, get:hashCode, OneByteString_getHashCode, 1111957093) \ |
198 V(_OneByteString, _substringUncheckedNative, \ | 199 V(_OneByteString, _substringUncheckedNative, \ |
199 OneByteString_substringUnchecked, 1584757277) \ | 200 OneByteString_substringUnchecked, 1584757277) \ |
200 V(_OneByteString, _setAt, OneByteStringSetAt, 1927993207) \ | 201 V(_OneByteString, _setAt, OneByteStringSetAt, 1927993207) \ |
201 V(_OneByteString, _allocate, OneByteString_allocate, 1248050114) \ | 202 V(_OneByteString, _allocate, OneByteString_allocate, 1248050114) \ |
202 V(_OneByteString, ==, OneByteString_equality, 1151307249) \ | 203 V(_OneByteString, ==, OneByteString_equality, 1151307249) \ |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 ASSERT(f.CheckSourceFingerprint(#p0 ", " #p1, fp)) | 488 ASSERT(f.CheckSourceFingerprint(#p0 ", " #p1, fp)) |
488 | 489 |
489 #define CHECK_FINGERPRINT3(f, p0, p1, p2, fp) \ | 490 #define CHECK_FINGERPRINT3(f, p0, p1, p2, fp) \ |
490 ASSERT(f.CheckSourceFingerprint(#p0 ", " #p1 ", " #p2, fp)) | 491 ASSERT(f.CheckSourceFingerprint(#p0 ", " #p1 ", " #p2, fp)) |
491 #endif // defined(DART_NO_SNAPSHOT). | 492 #endif // defined(DART_NO_SNAPSHOT). |
492 | 493 |
493 | 494 |
494 } // namespace dart | 495 } // namespace dart |
495 | 496 |
496 #endif // VM_METHOD_RECOGNIZER_H_ | 497 #endif // VM_METHOD_RECOGNIZER_H_ |
OLD | NEW |