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 5525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5536 snapshot_blob(NULL), | 5536 snapshot_blob(NULL), |
5537 counter_lookup_callback(NULL), | 5537 counter_lookup_callback(NULL), |
5538 create_histogram_callback(NULL), | 5538 create_histogram_callback(NULL), |
5539 add_histogram_sample_callback(NULL), | 5539 add_histogram_sample_callback(NULL), |
5540 array_buffer_allocator(NULL) {} | 5540 array_buffer_allocator(NULL) {} |
5541 | 5541 |
5542 /** | 5542 /** |
5543 * The optional entry_hook allows the host application to provide the | 5543 * The optional entry_hook allows the host application to provide the |
5544 * address of a function that's invoked on entry to every V8-generated | 5544 * address of a function that's invoked on entry to every V8-generated |
5545 * function. Note that entry_hook is invoked at the very start of each | 5545 * function. Note that entry_hook is invoked at the very start of each |
5546 * generated function. Furthermore, if an entry_hook is given, V8 will | 5546 * generated function. Furthermore, if an entry_hook is given, V8 will |
5547 * always run without a context snapshot. | 5547 * not use a snapshot, including custom snapshots. |
5548 */ | 5548 */ |
5549 FunctionEntryHook entry_hook; | 5549 FunctionEntryHook entry_hook; |
5550 | 5550 |
5551 /** | 5551 /** |
5552 * Allows the host application to provide the address of a function that is | 5552 * Allows the host application to provide the address of a function that is |
5553 * notified each time code is added, moved or removed. | 5553 * notified each time code is added, moved or removed. |
5554 */ | 5554 */ |
5555 JitCodeEventHandler code_event_handler; | 5555 JitCodeEventHandler code_event_handler; |
5556 | 5556 |
5557 /** | 5557 /** |
(...skipping 3271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8829 */ | 8829 */ |
8830 | 8830 |
8831 | 8831 |
8832 } // namespace v8 | 8832 } // namespace v8 |
8833 | 8833 |
8834 | 8834 |
8835 #undef TYPE_CHECK | 8835 #undef TYPE_CHECK |
8836 | 8836 |
8837 | 8837 |
8838 #endif // INCLUDE_V8_H_ | 8838 #endif // INCLUDE_V8_H_ |
OLD | NEW |