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

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

Issue 1332923005: Remove remaining uses of null's absolute address from non-IA32. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
« no previous file with comments | « runtime/vm/intrinsifier_mips.cc ('k') | runtime/vm/stub_code_arm.cc » ('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 13842 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « runtime/vm/intrinsifier_mips.cc ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698