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

Side by Side Diff: src/heap-profiler.cc

Issue 9227007: Version 3.8.6 (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 11 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/heap-profiler.h ('k') | src/hydrogen.h » ('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-2010 the V8 project authors. All rights reserved. 1 // Copyright 2009-2010 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 delete snapshots_; 44 delete snapshots_;
45 } 45 }
46 46
47 47
48 void HeapProfiler::ResetSnapshots() { 48 void HeapProfiler::ResetSnapshots() {
49 delete snapshots_; 49 delete snapshots_;
50 snapshots_ = new HeapSnapshotsCollection(); 50 snapshots_ = new HeapSnapshotsCollection();
51 } 51 }
52 52
53 53
54 void HeapProfiler::Setup() { 54 void HeapProfiler::SetUp() {
55 Isolate* isolate = Isolate::Current(); 55 Isolate* isolate = Isolate::Current();
56 if (isolate->heap_profiler() == NULL) { 56 if (isolate->heap_profiler() == NULL) {
57 isolate->set_heap_profiler(new HeapProfiler()); 57 isolate->set_heap_profiler(new HeapProfiler());
58 } 58 }
59 } 59 }
60 60
61 61
62 void HeapProfiler::TearDown() { 62 void HeapProfiler::TearDown() {
63 Isolate* isolate = Isolate::Current(); 63 Isolate* isolate = Isolate::Current();
64 delete isolate->heap_profiler(); 64 delete isolate->heap_profiler();
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 profiler->ResetSnapshots(); 164 profiler->ResetSnapshots();
165 } 165 }
166 166
167 167
168 void HeapProfiler::ObjectMoveEvent(Address from, Address to) { 168 void HeapProfiler::ObjectMoveEvent(Address from, Address to) {
169 snapshots_->ObjectMoveEvent(from, to); 169 snapshots_->ObjectMoveEvent(from, to);
170 } 170 }
171 171
172 172
173 } } // namespace v8::internal 173 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/heap-profiler.h ('k') | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698