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

Side by Side Diff: src/third_party/vtune/vtune-jit.h

Issue 11574031: Intel VTune integration for V8/D8 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 10 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
OLDNEW
(Empty)
1 /*
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.
4
5 GPL LICENSE SUMMARY
6
7 Copyright(c) 2005-2012 Intel Corporation. All rights reserved.
8
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
11 published by the Free Software Foundation.
12
13 This program is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 The full GNU General Public License is included in this distribution
22 in the file called LICENSE.GPL.
23
24 Contact Information:
25 http://software.intel.com/en-us/articles/intel-vtune-amplifier-xe/
26
27 BSD LICENSE
28
29 Copyright(c) 2005-2012 Intel Corporation. All rights reserved.
30 All rights reserved.
31
32 Redistribution and use in source and binary forms, with or without
33 modification, are permitted provided that the following conditions
34 are met:
35
36 * Redistributions of source code must retain the above copyright
37 notice, this list of conditions and the following disclaimer.
38 * Redistributions in binary form must reproduce the above copyright
39 notice, this list of conditions and the following disclaimer in
40 the documentation and/or other materials provided with the
41 distribution.
42 * Neither the name of Intel Corporation nor the names of its
43 contributors may be used to endorse or promote products derived
44 from this software without specific prior written permission.
45
46 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
47 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
48 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
49 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
50 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
51 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
52 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
53 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
54 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
55 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
56 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57 */
58 #ifndef V8_VTUNE_JIT_H_
59 #define V8_VTUNE_JIT_H_
60
61 #include "jitprofiling.h"
62 #include "../../v8.h"
63
64 #define VTUNERUNNING (iJIT_IsProfilingActive() == iJIT_SAMPLING_ON)
danno 2013/02/25 20:25:38 If this is an interface file with the public API f
65
66 #ifdef _WIN32
danno 2013/02/25 20:25:38 Why do you need to define these? ../../include/v8
67 // Setup for Windows DLL export/import. See v8.h in the include folder for
68 // information on how to build/use V8 as a DLL.
69 #if defined(BUILDING_V8_SHARED) && defined(USING_V8_SHARED)
70 #error both BUILDING_V8_SHARED and USING_V8_SHARED are set - please check the\
71 build configuration to ensure that at most one of these is set
72 #endif
73
74 #ifdef BUILDING_V8_SHARED
75 #define V8EXPORT __declspec(dllexport)
76 #elif USING_V8_SHARED
77 #define V8EXPORT __declspec(dllimport)
78 #else
79 #define V8EXPORT
80 #endif
81
82 #else // _WIN32
83
84 // Setup for Linux shared library export. See v8.h in the include for
85 // information on how to build/use V8 as shared library.
86 #if defined(__GNUC__) && ((__GNUC__ >= 4) || \
87 (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)) && defined(V8_SHARED)
88 #define V8EXPORT __attribute__ ((visibility("default")))
89 #else
90 #define V8EXPORT
91 #endif
92
93 #endif // _WIN32
94
95 namespace v8 {
danno 2013/02/25 20:25:38 I don't see a reason why all of this should be ins
96
97 class V8EXPORT VTuneInitilizer {
danno 2013/02/25 20:25:38 Any particular reason to wrap this is a class? V8E
98 public:
99 static void initilizeVtune();
100 };
101
102 namespace internal {
103
104 // This class is used to record the JITted code position info for JIT
105 // code profiling.
106 class JITCodeLineInfo : public Malloced {
danno 2013/02/25 20:25:38 Is there any reason that this needs to be in the h
107 public:
108 JITCodeLineInfo() : line_num_info_(10) { }
109
110 void SetPosition(intptr_t pc, int pos) {
111 AddCodeLineInfo(LineNumInfo(pc, pos));
112 }
113
114 struct LineNumInfo {
115 LineNumInfo(intptr_t pc, int pos)
116 : pc_(pc), pos_(pos) { }
117
118 intptr_t pc_;
119 int pos_;
120 };
121
122 List<LineNumInfo>* GetLineNumInfo() {
123 return &line_num_info_;
124 }
125
126 private:
127 void AddCodeLineInfo(const LineNumInfo& line_info) {
128 line_num_info_.Add(line_info);
129 }
130 List<LineNumInfo> line_num_info_;
131 };
132
133 class VTUNEJITInterface: public AllStatic {
134 public:
135 static void event_handler(const v8::JitCodeEvent* event);
136
137 private:
138 static Mutex* vtunemutex_;
139 };
140
141
142 } } // namespace v8::internal
143
144
145 #undef V8EXPORT
danno 2013/02/25 20:25:38 I don't think you should mess with V8EXPORT explic
146
147
148 #endif // V8_VTUNE_JIT_H_
149
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698