]>
Commit | Line | Data |
---|---|---|
93a37866 A |
1 | /* |
2 | * Copyright (C) 2012, 2013 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 "CodeOrigin.h" | |
28 | ||
29 | #include "CallFrame.h" | |
30 | #include "CodeBlock.h" | |
31 | #include "Executable.h" | |
81345200 | 32 | #include "JSCInlines.h" |
93a37866 A |
33 | |
34 | namespace JSC { | |
35 | ||
36 | unsigned CodeOrigin::inlineDepthForCallFrame(InlineCallFrame* inlineCallFrame) | |
37 | { | |
38 | unsigned result = 1; | |
39 | for (InlineCallFrame* current = inlineCallFrame; current; current = current->caller.inlineCallFrame) | |
40 | result++; | |
41 | return result; | |
42 | } | |
43 | ||
44 | unsigned CodeOrigin::inlineDepth() const | |
45 | { | |
46 | return inlineDepthForCallFrame(inlineCallFrame); | |
47 | } | |
81345200 A |
48 | |
49 | bool CodeOrigin::isApproximatelyEqualTo(const CodeOrigin& other) const | |
50 | { | |
51 | CodeOrigin a = *this; | |
52 | CodeOrigin b = other; | |
53 | ||
54 | if (!a.isSet()) | |
55 | return !b.isSet(); | |
56 | if (!b.isSet()) | |
57 | return false; | |
58 | ||
59 | if (a.isHashTableDeletedValue()) | |
60 | return b.isHashTableDeletedValue(); | |
61 | if (b.isHashTableDeletedValue()) | |
62 | return false; | |
63 | ||
64 | for (;;) { | |
65 | ASSERT(a.isSet()); | |
66 | ASSERT(b.isSet()); | |
67 | ||
68 | if (a.bytecodeIndex != b.bytecodeIndex) | |
69 | return false; | |
70 | ||
71 | if ((!!a.inlineCallFrame) != (!!b.inlineCallFrame)) | |
72 | return false; | |
73 | ||
74 | if (!a.inlineCallFrame) | |
75 | return true; | |
76 | ||
77 | if (a.inlineCallFrame->executable != b.inlineCallFrame->executable) | |
78 | return false; | |
79 | ||
80 | a = a.inlineCallFrame->caller; | |
81 | b = b.inlineCallFrame->caller; | |
82 | } | |
83 | } | |
84 | ||
85 | unsigned CodeOrigin::approximateHash() const | |
86 | { | |
87 | if (!isSet()) | |
88 | return 0; | |
89 | if (isHashTableDeletedValue()) | |
90 | return 1; | |
93a37866 | 91 | |
81345200 A |
92 | unsigned result = 2; |
93 | CodeOrigin codeOrigin = *this; | |
94 | for (;;) { | |
95 | result += codeOrigin.bytecodeIndex; | |
96 | ||
97 | if (!codeOrigin.inlineCallFrame) | |
98 | return result; | |
99 | ||
100 | result += WTF::PtrHash<JSCell*>::hash(codeOrigin.inlineCallFrame->executable.get()); | |
101 | ||
102 | codeOrigin = codeOrigin.inlineCallFrame->caller; | |
103 | } | |
104 | } | |
105 | ||
93a37866 A |
106 | Vector<CodeOrigin> CodeOrigin::inlineStack() const |
107 | { | |
108 | Vector<CodeOrigin> result(inlineDepth()); | |
109 | result.last() = *this; | |
110 | unsigned index = result.size() - 2; | |
111 | for (InlineCallFrame* current = inlineCallFrame; current; current = current->caller.inlineCallFrame) | |
112 | result[index--] = current->caller; | |
113 | RELEASE_ASSERT(!result[0].inlineCallFrame); | |
114 | return result; | |
115 | } | |
116 | ||
117 | void CodeOrigin::dump(PrintStream& out) const | |
118 | { | |
81345200 A |
119 | if (!isSet()) { |
120 | out.print("<none>"); | |
121 | return; | |
122 | } | |
123 | ||
93a37866 A |
124 | Vector<CodeOrigin> stack = inlineStack(); |
125 | for (unsigned i = 0; i < stack.size(); ++i) { | |
126 | if (i) | |
127 | out.print(" --> "); | |
128 | ||
129 | if (InlineCallFrame* frame = stack[i].inlineCallFrame) { | |
130 | out.print(frame->briefFunctionInformation(), ":<", RawPointer(frame->executable.get()), "> "); | |
81345200 | 131 | if (frame->isClosureCall) |
93a37866 A |
132 | out.print("(closure) "); |
133 | } | |
134 | ||
135 | out.print("bc#", stack[i].bytecodeIndex); | |
136 | } | |
137 | } | |
138 | ||
81345200 A |
139 | void CodeOrigin::dumpInContext(PrintStream& out, DumpContext*) const |
140 | { | |
141 | dump(out); | |
142 | } | |
143 | ||
93a37866 A |
144 | JSFunction* InlineCallFrame::calleeForCallFrame(ExecState* exec) const |
145 | { | |
81345200 | 146 | return jsCast<JSFunction*>(calleeRecovery.recover(exec)); |
93a37866 A |
147 | } |
148 | ||
149 | CodeBlockHash InlineCallFrame::hash() const | |
150 | { | |
81345200 A |
151 | return jsCast<FunctionExecutable*>(executable.get())->codeBlockFor( |
152 | specializationKind())->hash(); | |
153 | } | |
154 | ||
155 | CString InlineCallFrame::hashAsStringIfPossible() const | |
156 | { | |
157 | return jsCast<FunctionExecutable*>(executable.get())->codeBlockFor( | |
158 | specializationKind())->hashAsStringIfPossible(); | |
93a37866 A |
159 | } |
160 | ||
81345200 | 161 | CString InlineCallFrame::inferredName() const |
93a37866 | 162 | { |
81345200 | 163 | return jsCast<FunctionExecutable*>(executable.get())->inferredName().utf8(); |
93a37866 A |
164 | } |
165 | ||
166 | CodeBlock* InlineCallFrame::baselineCodeBlock() const | |
167 | { | |
168 | return jsCast<FunctionExecutable*>(executable.get())->baselineCodeBlockFor(specializationKind()); | |
169 | } | |
170 | ||
171 | void InlineCallFrame::dumpBriefFunctionInformation(PrintStream& out) const | |
172 | { | |
81345200 | 173 | out.print(inferredName(), "#", hashAsStringIfPossible()); |
93a37866 A |
174 | } |
175 | ||
81345200 | 176 | void InlineCallFrame::dumpInContext(PrintStream& out, DumpContext* context) const |
93a37866 | 177 | { |
81345200 A |
178 | out.print(briefFunctionInformation(), ":<", RawPointer(executable.get())); |
179 | if (executable->isStrictMode()) | |
180 | out.print(" (StrictMode)"); | |
181 | out.print(", bc#", caller.bytecodeIndex, ", ", specializationKind()); | |
182 | if (isClosureCall) | |
93a37866 | 183 | out.print(", closure call"); |
81345200 A |
184 | else |
185 | out.print(", known callee: ", inContext(calleeRecovery.constant(), context)); | |
93a37866 | 186 | out.print(", numArgs+this = ", arguments.size()); |
81345200 | 187 | out.print(", stack < loc", VirtualRegister(stackOffset).toLocal()); |
93a37866 A |
188 | out.print(">"); |
189 | } | |
190 | ||
81345200 A |
191 | void InlineCallFrame::dump(PrintStream& out) const |
192 | { | |
193 | dumpInContext(out, 0); | |
194 | } | |
195 | ||
93a37866 A |
196 | } // namespace JSC |
197 |