OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** \mainpage V8 API Reference Guide | 5 /** \mainpage V8 API Reference Guide |
6 * | 6 * |
7 * V8 is Google's open source JavaScript engine. | 7 * V8 is Google's open source JavaScript engine. |
8 * | 8 * |
9 * This set of documents provides reference material generated from the | 9 * This set of documents provides reference material generated from the |
10 * V8 header file, include/v8.h. | 10 * V8 header file, include/v8.h. |
(...skipping 5276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5287 */ | 5287 */ |
5288 static void VisitExternalResources(ExternalResourceVisitor* visitor); | 5288 static void VisitExternalResources(ExternalResourceVisitor* visitor); |
5289 | 5289 |
5290 /** | 5290 /** |
5291 * Iterates through all the persistent handles in the current isolate's heap | 5291 * Iterates through all the persistent handles in the current isolate's heap |
5292 * that have class_ids. | 5292 * that have class_ids. |
5293 */ | 5293 */ |
5294 static void VisitHandlesWithClassIds(PersistentHandleVisitor* visitor); | 5294 static void VisitHandlesWithClassIds(PersistentHandleVisitor* visitor); |
5295 | 5295 |
5296 /** | 5296 /** |
| 5297 * Iterates through all the persistent handles in isolate's heap that have |
| 5298 * class_ids. |
| 5299 */ |
| 5300 static void VisitHandlesWithClassIds( |
| 5301 Isolate* isolate, PersistentHandleVisitor* visitor); |
| 5302 |
| 5303 /** |
5297 * Iterates through all the persistent handles in the current isolate's heap | 5304 * Iterates through all the persistent handles in the current isolate's heap |
5298 * that have class_ids and are candidates to be marked as partially dependent | 5305 * that have class_ids and are candidates to be marked as partially dependent |
5299 * handles. This will visit handles to young objects created since the last | 5306 * handles. This will visit handles to young objects created since the last |
5300 * garbage collection but is free to visit an arbitrary superset of these | 5307 * garbage collection but is free to visit an arbitrary superset of these |
5301 * objects. | 5308 * objects. |
5302 */ | 5309 */ |
5303 static void VisitHandlesForPartialDependence( | 5310 static void VisitHandlesForPartialDependence( |
5304 Isolate* isolate, PersistentHandleVisitor* visitor); | 5311 Isolate* isolate, PersistentHandleVisitor* visitor); |
5305 | 5312 |
5306 /** | 5313 /** |
(...skipping 1740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7047 */ | 7054 */ |
7048 | 7055 |
7049 | 7056 |
7050 } // namespace v8 | 7057 } // namespace v8 |
7051 | 7058 |
7052 | 7059 |
7053 #undef TYPE_CHECK | 7060 #undef TYPE_CHECK |
7054 | 7061 |
7055 | 7062 |
7056 #endif // V8_H_ | 7063 #endif // V8_H_ |
OLD | NEW |