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

Side by Side Diff: src/heap.cc

Issue 2461002: - Begin removing [static] qualifier from methods in Bootstrapper. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: Created 10 years, 6 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 | « src/debug.cc ('k') | src/isolate.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 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 3684 matching lines...) Expand 10 before | Expand all | Expand 10 after
3695 } 3695 }
3696 3696
3697 3697
3698 void Heap::IterateStrongRoots(ObjectVisitor* v, VisitMode mode) { 3698 void Heap::IterateStrongRoots(ObjectVisitor* v, VisitMode mode) {
3699 v->VisitPointers(&roots_[0], &roots_[kStrongRootListLength]); 3699 v->VisitPointers(&roots_[0], &roots_[kStrongRootListLength]);
3700 v->Synchronize("strong_root_list"); 3700 v->Synchronize("strong_root_list");
3701 3701
3702 v->VisitPointer(BitCast<Object**, String**>(&hidden_symbol_)); 3702 v->VisitPointer(BitCast<Object**, String**>(&hidden_symbol_));
3703 v->Synchronize("symbol"); 3703 v->Synchronize("symbol");
3704 3704
3705 Bootstrapper::Iterate(v); 3705 Isolate::Current()->bootstrapper()->Iterate(v);
3706 v->Synchronize("bootstrapper"); 3706 v->Synchronize("bootstrapper");
3707 Top::Iterate(v); 3707 Top::Iterate(v);
3708 v->Synchronize("top"); 3708 v->Synchronize("top");
3709 Relocatable::Iterate(v); 3709 Relocatable::Iterate(v);
3710 v->Synchronize("relocatable"); 3710 v->Synchronize("relocatable");
3711 3711
3712 #ifdef ENABLE_DEBUGGER_SUPPORT 3712 #ifdef ENABLE_DEBUGGER_SUPPORT
3713 Debug::Iterate(v); 3713 Debug::Iterate(v);
3714 #endif 3714 #endif
3715 v->Synchronize("debug"); 3715 v->Synchronize("debug");
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after
4683 void ExternalStringTable::TearDown() { 4683 void ExternalStringTable::TearDown() {
4684 new_space_strings_.Free(); 4684 new_space_strings_.Free();
4685 old_space_strings_.Free(); 4685 old_space_strings_.Free();
4686 } 4686 }
4687 4687
4688 4688
4689 List<Object*> ExternalStringTable::new_space_strings_; 4689 List<Object*> ExternalStringTable::new_space_strings_;
4690 List<Object*> ExternalStringTable::old_space_strings_; 4690 List<Object*> ExternalStringTable::old_space_strings_;
4691 4691
4692 } } // namespace v8::internal 4692 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/debug.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698