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

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

Issue 51113015: Fixing fingerprint. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 1 month 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.cc ('k') | tests/lib/lib.status » ('j') | 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 8327 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | tests/lib/lib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698