]> git.saurik.com Git - apple/javascriptcore.git/blame_incremental - dfg/DFGDisassembler.cpp
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / dfg / DFGDisassembler.cpp
... / ...
CommitLineData
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 "DFGDisassembler.h"
28
29#if ENABLE(DFG_JIT)
30
31#include "CodeBlockWithJITType.h"
32#include "DFGGraph.h"
33#include "DFGJITCode.h"
34#include "JSCInlines.h"
35#include "LinkBuffer.h"
36#include "ProfilerDatabase.h"
37#include <wtf/StdLibExtras.h>
38
39namespace JSC { namespace DFG {
40
41Disassembler::Disassembler(Graph& graph)
42 : m_graph(graph)
43{
44 m_dumpContext.graph = &m_graph;
45 m_labelForBlockIndex.resize(graph.numBlocks());
46}
47
48void Disassembler::dump(PrintStream& out, LinkBuffer& linkBuffer)
49{
50 Vector<DumpedOp> ops = createDumpList(linkBuffer);
51 for (unsigned i = 0; i < ops.size(); ++i)
52 out.print(ops[i].text);
53}
54
55void Disassembler::dump(LinkBuffer& linkBuffer)
56{
57 dump(WTF::dataFile(), linkBuffer);
58}
59
60void Disassembler::reportToProfiler(Profiler::Compilation* compilation, LinkBuffer& linkBuffer)
61{
62 Vector<DumpedOp> ops = createDumpList(linkBuffer);
63
64 for (unsigned i = 0; i < ops.size(); ++i) {
65 Profiler::OriginStack stack;
66
67 if (ops[i].codeOrigin.isSet())
68 stack = Profiler::OriginStack(*m_graph.m_vm.m_perBytecodeProfiler, m_graph.m_codeBlock, ops[i].codeOrigin);
69
70 compilation->addDescription(Profiler::CompiledBytecode(stack, ops[i].text));
71 }
72}
73
74void Disassembler::dumpHeader(PrintStream& out, LinkBuffer& linkBuffer)
75{
76 out.print("Generated DFG JIT code for ", CodeBlockWithJITType(m_graph.m_codeBlock, JITCode::DFGJIT), ", instruction count = ", m_graph.m_codeBlock->instructionCount(), ":\n");
77 out.print(" Optimized with execution counter = ", m_graph.m_profiledBlock->jitExecuteCounter(), "\n");
78 out.print(" Code at [", RawPointer(linkBuffer.debugAddress()), ", ", RawPointer(static_cast<char*>(linkBuffer.debugAddress()) + linkBuffer.size()), "):\n");
79}
80
81void Disassembler::append(Vector<Disassembler::DumpedOp>& result, StringPrintStream& out, CodeOrigin& previousOrigin)
82{
83 result.append(DumpedOp(previousOrigin, out.toCString()));
84 previousOrigin = CodeOrigin();
85 out.reset();
86}
87
88Vector<Disassembler::DumpedOp> Disassembler::createDumpList(LinkBuffer& linkBuffer)
89{
90 StringPrintStream out;
91 Vector<DumpedOp> result;
92
93 CodeOrigin previousOrigin = CodeOrigin();
94 dumpHeader(out, linkBuffer);
95 append(result, out, previousOrigin);
96
97 m_graph.m_dominators.computeIfNecessary(m_graph);
98 m_graph.m_naturalLoops.computeIfNecessary(m_graph);
99
100 const char* prefix = " ";
101 const char* disassemblyPrefix = " ";
102
103 Node* lastNode = 0;
104 MacroAssembler::Label previousLabel = m_startOfCode;
105 for (size_t blockIndex = 0; blockIndex < m_graph.numBlocks(); ++blockIndex) {
106 BasicBlock* block = m_graph.block(blockIndex);
107 if (!block)
108 continue;
109 dumpDisassembly(out, disassemblyPrefix, linkBuffer, previousLabel, m_labelForBlockIndex[blockIndex], lastNode);
110 append(result, out, previousOrigin);
111 m_graph.dumpBlockHeader(out, prefix, block, Graph::DumpLivePhisOnly, &m_dumpContext);
112 append(result, out, previousOrigin);
113 Node* lastNodeForDisassembly = block->at(0);
114 for (size_t i = 0; i < block->size(); ++i) {
115 MacroAssembler::Label currentLabel;
116 HashMap<Node*, MacroAssembler::Label>::iterator iter = m_labelForNode.find(block->at(i));
117 if (iter != m_labelForNode.end())
118 currentLabel = iter->value;
119 else {
120 // Dump the last instruction by using the first label of the next block
121 // as the end point. This case is hit either during peephole compare
122 // optimizations (the Branch won't have its own label) or if we have a
123 // forced OSR exit.
124 if (blockIndex + 1 < m_graph.numBlocks())
125 currentLabel = m_labelForBlockIndex[blockIndex + 1];
126 else
127 currentLabel = m_endOfMainPath;
128 }
129 dumpDisassembly(out, disassemblyPrefix, linkBuffer, previousLabel, currentLabel, lastNodeForDisassembly);
130 append(result, out, previousOrigin);
131 previousOrigin = block->at(i)->origin.semantic;
132 if (m_graph.dumpCodeOrigin(out, prefix, lastNode, block->at(i), &m_dumpContext)) {
133 append(result, out, previousOrigin);
134 previousOrigin = block->at(i)->origin.semantic;
135 }
136 m_graph.dump(out, prefix, block->at(i), &m_dumpContext);
137 lastNode = block->at(i);
138 lastNodeForDisassembly = block->at(i);
139 }
140 }
141 dumpDisassembly(out, disassemblyPrefix, linkBuffer, previousLabel, m_endOfMainPath, lastNode);
142 append(result, out, previousOrigin);
143 out.print(prefix, "(End Of Main Path)\n");
144 append(result, out, previousOrigin);
145 dumpDisassembly(out, disassemblyPrefix, linkBuffer, previousLabel, m_endOfCode, 0);
146 append(result, out, previousOrigin);
147 m_dumpContext.dump(out, prefix);
148 append(result, out, previousOrigin);
149
150 return result;
151}
152
153void Disassembler::dumpDisassembly(PrintStream& out, const char* prefix, LinkBuffer& linkBuffer, MacroAssembler::Label& previousLabel, MacroAssembler::Label currentLabel, Node* context)
154{
155 size_t prefixLength = strlen(prefix);
156 int amountOfNodeWhiteSpace;
157 if (!context)
158 amountOfNodeWhiteSpace = 0;
159 else
160 amountOfNodeWhiteSpace = Graph::amountOfNodeWhiteSpace(context);
161 auto prefixBuffer = std::make_unique<char[]>(prefixLength + amountOfNodeWhiteSpace + 1);
162 strcpy(prefixBuffer.get(), prefix);
163 for (int i = 0; i < amountOfNodeWhiteSpace; ++i)
164 prefixBuffer[i + prefixLength] = ' ';
165 prefixBuffer[prefixLength + amountOfNodeWhiteSpace] = 0;
166
167 CodeLocationLabel start = linkBuffer.locationOf(previousLabel);
168 CodeLocationLabel end = linkBuffer.locationOf(currentLabel);
169 previousLabel = currentLabel;
170 ASSERT(bitwise_cast<uintptr_t>(end.executableAddress()) >= bitwise_cast<uintptr_t>(start.executableAddress()));
171 disassemble(start, bitwise_cast<uintptr_t>(end.executableAddress()) - bitwise_cast<uintptr_t>(start.executableAddress()), prefixBuffer.get(), out);
172}
173
174} } // namespace JSC::DFG
175
176#endif // ENABLE(DFG_JIT)