| OLD | NEW |
| 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 "vm/object.h" | 5 #include "vm/object.h" |
| 6 | 6 |
| 7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 #include "vm/assembler.h" | 9 #include "vm/assembler.h" |
| 10 #include "vm/cpu.h" | 10 #include "vm/cpu.h" |
| (...skipping 10410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10421 } \ | 10421 } \ |
| 10422 | 10422 |
| 10423 all_libs.Add(&Library::ZoneHandle(Library::CoreLibrary())); | 10423 all_libs.Add(&Library::ZoneHandle(Library::CoreLibrary())); |
| 10424 CORE_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 10424 CORE_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 10425 CORE_INTEGER_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 10425 CORE_INTEGER_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 10426 | 10426 |
| 10427 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); | 10427 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); |
| 10428 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); | 10428 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); |
| 10429 OTHER_RECOGNIZED_LIST(CHECK_FINGERPRINTS); | 10429 OTHER_RECOGNIZED_LIST(CHECK_FINGERPRINTS); |
| 10430 INLINE_WHITE_LIST(CHECK_FINGERPRINTS); | 10430 INLINE_WHITE_LIST(CHECK_FINGERPRINTS); |
| 10431 INLINE_BLACK_LIST(CHECK_FINGERPRINTS); |
| 10431 POLYMORPHIC_TARGET_LIST(CHECK_FINGERPRINTS); | 10432 POLYMORPHIC_TARGET_LIST(CHECK_FINGERPRINTS); |
| 10432 | 10433 |
| 10433 all_libs.Clear(); | 10434 all_libs.Clear(); |
| 10434 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); | 10435 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); |
| 10435 MATH_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 10436 MATH_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 10436 | 10437 |
| 10437 all_libs.Clear(); | 10438 all_libs.Clear(); |
| 10438 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); | 10439 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); |
| 10439 TYPED_DATA_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 10440 TYPED_DATA_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 10440 | 10441 |
| (...skipping 9961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20402 return tag_label.ToCString(); | 20403 return tag_label.ToCString(); |
| 20403 } | 20404 } |
| 20404 | 20405 |
| 20405 | 20406 |
| 20406 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { | 20407 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { |
| 20407 Instance::PrintJSONImpl(stream, ref); | 20408 Instance::PrintJSONImpl(stream, ref); |
| 20408 } | 20409 } |
| 20409 | 20410 |
| 20410 | 20411 |
| 20411 } // namespace dart | 20412 } // namespace dart |
| OLD | NEW |