Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Side by Side Diff: runtime/vm/object.cc

Issue 24249004: More fingerprint fixes, and fixing the FP verification option (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698