OLD | NEW |
---|---|
1 /* | 1 /* |
2 This file is provided under a dual BSD/GPLv2 license. When using or | 2 This file is provided under a dual BSD/GPLv2 license. When using or |
3 redistributing this file, you may do so under either license. | 3 redistributing this file, you may do so under either license. |
4 | 4 |
5 GPL LICENSE SUMMARY | 5 GPL LICENSE SUMMARY |
6 | 6 |
7 Copyright(c) 2005-2012 Intel Corporation. All rights reserved. | 7 Copyright(c) 2005-2012 Intel Corporation. All rights reserved. |
8 | 8 |
9 This program is free software; you can redistribute it and/or modify | 9 This program is free software; you can redistribute it and/or modify |
10 it under the terms of version 2 of the GNU General Public License as | 10 it under the terms of version 2 of the GNU General Public License as |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
56 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 56 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
57 */ | 57 */ |
58 #ifndef V8_VTUNE_H_ | 58 #ifndef V8_VTUNE_H_ |
59 #define V8_VTUNE_H_ | 59 #define V8_VTUNE_H_ |
60 | 60 |
61 #include "../../../include/v8.h" | 61 #include "../../../include/v8.h" |
62 | 62 |
63 namespace vTune { | 63 namespace vTune { |
64 | 64 |
65 void InitializeVtuneForV8(v8::Isolate::CreateParams& params); | 65 void InitializeVtuneForV8(v8::Isolate::CreateParams& params); |
66 v8::JitCodeEventHandler GetVtuneCodeEventHandler(); | |
jochen (gone - plz use gerrit)
2014/10/21 12:43:22
can you change d8 to use this API as well so we on
| |
66 | 67 |
67 } // namespace vTune | 68 } // namespace vTune |
68 | 69 |
69 | 70 |
70 #endif // V8_VTUNE_H_ | 71 #endif // V8_VTUNE_H_ |
71 | 72 |
OLD | NEW |