initial import
[vuplus_webkit] / Source / JavaScriptCore / heap / VTableSpectrum.cpp
1 /*
2  * Copyright (C) 2011 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
24  */
25
26 #include "config.h"
27 #include "VTableSpectrum.h"
28
29 #include "JSObject.h"
30 #include "Structure.h"
31 #include <algorithm>
32 #include <stdio.h>
33 #include <wtf/Platform.h>
34 #include <wtf/Vector.h>
35
36 #if PLATFORM(MAC)
37 #include <dlfcn.h>
38 #endif
39
40 namespace JSC {
41
42 VTableSpectrum::VTableSpectrum()
43 {
44 }
45
46 VTableSpectrum::~VTableSpectrum()
47 {
48 }
49
50 void VTableSpectrum::countVPtr(void* vTablePointer)
51 {
52     std::pair<HashMap<void*, unsigned long>::iterator, bool> result = m_map.add(vTablePointer, 1);
53     if (!result.second)
54         result.first->second++;
55 }
56
57 void VTableSpectrum::count(JSCell* cell)
58 {
59     countVPtr(cell->vptr());
60 }
61
62 struct VTableAndCount {
63     void* vtable;
64     unsigned long count;
65     
66     VTableAndCount() { }
67     
68     VTableAndCount(void* vtable, unsigned long count)
69         : vtable(vtable)
70         , count(count)
71     {
72     }
73     
74     bool operator<(const VTableAndCount& other) const
75     {
76         if (count != other.count)
77             return count < other.count;
78         return vtable > other.vtable; // this results in lower-addressed vtables being printed first
79     }
80 };
81
82 void VTableSpectrum::dump(FILE* output, const char* comment)
83 {
84     fprintf(output, "%s:\n", comment);
85     
86     HashMap<void*, unsigned long>::iterator begin = m_map.begin();
87     HashMap<void*, unsigned long>::iterator end = m_map.end();
88     
89     Vector<VTableAndCount, 0> list;
90     
91     for (HashMap<void*, unsigned long>::iterator iter = begin; iter != end; ++iter)
92         list.append(VTableAndCount(iter->first, iter->second));
93     
94     std::sort(list.begin(), list.end());
95     
96     for (size_t index = list.size(); index-- > 0;) {
97         VTableAndCount item = list.at(index);
98 #if PLATFORM(MAC)
99         Dl_info info;
100         if (dladdr(item.vtable, &info)) {
101             char* findResult = strrchr(info.dli_fname, '/');
102             const char* strippedFileName;
103             
104             if (findResult)
105                 strippedFileName = findResult + 1;
106             else
107                 strippedFileName = info.dli_fname;
108             
109             fprintf(output, "    %s:%s(%p): %lu\n", strippedFileName, info.dli_sname, item.vtable, item.count);
110             continue;
111         }
112 #endif
113         fprintf(output, "    %p: %lu\n", item.vtable, item.count);
114     }
115     
116     fflush(output);
117 }
118
119 } // namespace JSC