| 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 13842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13853 set_filled_entry_count(filled_entry_count() + 1); | 13853 set_filled_entry_count(filled_entry_count() + 1); |
| 13854 return; | 13854 return; |
| 13855 } | 13855 } |
| 13856 i = (i + 1) & id_mask; | 13856 i = (i + 1) & id_mask; |
| 13857 } while (i != index); | 13857 } while (i != index); |
| 13858 UNREACHABLE(); | 13858 UNREACHABLE(); |
| 13859 } | 13859 } |
| 13860 | 13860 |
| 13861 | 13861 |
| 13862 const char* MegamorphicCache::ToCString() const { | 13862 const char* MegamorphicCache::ToCString() const { |
| 13863 return ""; | 13863 return "MegamorphicCache"; |
| 13864 } | 13864 } |
| 13865 | 13865 |
| 13866 | 13866 |
| 13867 void MegamorphicCache::PrintJSONImpl(JSONStream* stream, bool ref) const { | 13867 void MegamorphicCache::PrintJSONImpl(JSONStream* stream, bool ref) const { |
| 13868 Object::PrintJSONImpl(stream, ref); | 13868 Object::PrintJSONImpl(stream, ref); |
| 13869 } | 13869 } |
| 13870 | 13870 |
| 13871 | 13871 |
| 13872 RawSubtypeTestCache* SubtypeTestCache::New() { | 13872 RawSubtypeTestCache* SubtypeTestCache::New() { |
| 13873 ASSERT(Object::subtypetestcache_class() != Class::null()); | 13873 ASSERT(Object::subtypetestcache_class() != Class::null()); |
| (...skipping 7561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21435 return tag_label.ToCString(); | 21435 return tag_label.ToCString(); |
| 21436 } | 21436 } |
| 21437 | 21437 |
| 21438 | 21438 |
| 21439 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { | 21439 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { |
| 21440 Instance::PrintJSONImpl(stream, ref); | 21440 Instance::PrintJSONImpl(stream, ref); |
| 21441 } | 21441 } |
| 21442 | 21442 |
| 21443 | 21443 |
| 21444 } // namespace dart | 21444 } // namespace dart |
| OLD | NEW |