| 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 8327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8338 } \ | 8338 } \ |
| 8339 | 8339 |
| 8340 all_libs.Add(&Library::ZoneHandle(Library::CoreLibrary())); | 8340 all_libs.Add(&Library::ZoneHandle(Library::CoreLibrary())); |
| 8341 CORE_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 8341 CORE_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 8342 CORE_INTEGER_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 8342 CORE_INTEGER_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 8343 | 8343 |
| 8344 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); | 8344 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); |
| 8345 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); | 8345 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); |
| 8346 RECOGNIZED_LIST(CHECK_FINGERPRINTS); | 8346 RECOGNIZED_LIST(CHECK_FINGERPRINTS); |
| 8347 INLINE_WHITE_LIST(CHECK_FINGERPRINTS); | 8347 INLINE_WHITE_LIST(CHECK_FINGERPRINTS); |
| 8348 POLYMORPHIC_TARGET_LIST(CHECK_FINGERPRINTS); |
| 8348 | 8349 |
| 8349 all_libs.Clear(); | 8350 all_libs.Clear(); |
| 8350 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); | 8351 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); |
| 8351 MATH_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 8352 MATH_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 8352 | 8353 |
| 8353 all_libs.Clear(); | 8354 all_libs.Clear(); |
| 8354 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); | 8355 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); |
| 8355 TYPED_DATA_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 8356 TYPED_DATA_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 8356 | 8357 |
| 8357 #undef CHECK_FINGERPRINTS | 8358 #undef CHECK_FINGERPRINTS |
| (...skipping 7239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15597 return "_MirrorReference"; | 15598 return "_MirrorReference"; |
| 15598 } | 15599 } |
| 15599 | 15600 |
| 15600 | 15601 |
| 15601 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { | 15602 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { |
| 15602 JSONObject jsobj(stream); | 15603 JSONObject jsobj(stream); |
| 15603 } | 15604 } |
| 15604 | 15605 |
| 15605 | 15606 |
| 15606 } // namespace dart | 15607 } // namespace dart |
| OLD | NEW |