| 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 7821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7832 collected_fp_diffs.Add(FpDiff(fp, func.SourceFingerprint())); \ | 7832 collected_fp_diffs.Add(FpDiff(fp, func.SourceFingerprint())); \ |
| 7833 } \ | 7833 } \ |
| 7834 | 7834 |
| 7835 all_libs.Add(&Library::ZoneHandle(Library::CoreLibrary())); | 7835 all_libs.Add(&Library::ZoneHandle(Library::CoreLibrary())); |
| 7836 CORE_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 7836 CORE_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 7837 CORE_INTEGER_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 7837 CORE_INTEGER_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 7838 | 7838 |
| 7839 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); | 7839 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); |
| 7840 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); | 7840 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); |
| 7841 RECOGNIZED_LIST(CHECK_FINGERPRINTS); | 7841 RECOGNIZED_LIST(CHECK_FINGERPRINTS); |
| 7842 INLINE_WHITE_LIST(CHECK_FINGERPRINTS); |
| 7842 | 7843 |
| 7843 all_libs.Clear(); | 7844 all_libs.Clear(); |
| 7844 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); | 7845 all_libs.Add(&Library::ZoneHandle(Library::MathLibrary())); |
| 7845 MATH_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 7846 MATH_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 7846 | 7847 |
| 7847 all_libs.Clear(); | 7848 all_libs.Clear(); |
| 7848 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); | 7849 all_libs.Add(&Library::ZoneHandle(Library::TypedDataLibrary())); |
| 7849 TYPED_DATA_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); | 7850 TYPED_DATA_LIB_INTRINSIC_LIST(CHECK_FINGERPRINTS); |
| 7850 | 7851 |
| 7851 #undef CHECK_FINGERPRINTS | 7852 #undef CHECK_FINGERPRINTS |
| (...skipping 7074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14926 return "_MirrorReference"; | 14927 return "_MirrorReference"; |
| 14927 } | 14928 } |
| 14928 | 14929 |
| 14929 | 14930 |
| 14930 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { | 14931 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { |
| 14931 JSONObject jsobj(stream); | 14932 JSONObject jsobj(stream); |
| 14932 } | 14933 } |
| 14933 | 14934 |
| 14934 | 14935 |
| 14935 } // namespace dart | 14936 } // namespace dart |
| OLD | NEW |