]> git.saurik.com Git - apple/javascriptcore.git/blame - debugger/Debugger.cpp
JavaScriptCore-1097.3.3.tar.gz
[apple/javascriptcore.git] / debugger / Debugger.cpp
CommitLineData
9dae56ea
A
1/*
2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
4 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 */
21
22#include "config.h"
23#include "Debugger.h"
24
f9bf01c6 25#include "Error.h"
9dae56ea 26#include "Interpreter.h"
f9bf01c6
A
27#include "JSFunction.h"
28#include "JSGlobalObject.h"
9dae56ea 29#include "Parser.h"
f9bf01c6 30#include "Protect.h"
9dae56ea 31
14957cd0
A
32namespace {
33
34using namespace JSC;
35
6fe7ccc8 36class Recompiler : public MarkedBlock::VoidFunctor {
14957cd0 37public:
6fe7ccc8 38 Recompiler(JSC::Debugger*);
14957cd0
A
39 ~Recompiler();
40 void operator()(JSCell*);
41
42private:
43 typedef HashSet<FunctionExecutable*> FunctionExecutableSet;
44 typedef HashMap<SourceProvider*, ExecState*> SourceProviderMap;
45
6fe7ccc8 46 JSC::Debugger* m_debugger;
14957cd0
A
47 FunctionExecutableSet m_functionExecutables;
48 SourceProviderMap m_sourceProviders;
49};
50
6fe7ccc8 51inline Recompiler::Recompiler(JSC::Debugger* debugger)
14957cd0
A
52 : m_debugger(debugger)
53{
54}
55
56inline Recompiler::~Recompiler()
57{
58 // Call sourceParsed() after reparsing all functions because it will execute
59 // JavaScript in the inspector.
60 SourceProviderMap::const_iterator end = m_sourceProviders.end();
61 for (SourceProviderMap::const_iterator iter = m_sourceProviders.begin(); iter != end; ++iter)
62 m_debugger->sourceParsed(iter->second, iter->first, -1, UString());
63}
64
65inline void Recompiler::operator()(JSCell* cell)
66{
67 if (!cell->inherits(&JSFunction::s_info))
68 return;
69
6fe7ccc8 70 JSFunction* function = jsCast<JSFunction*>(cell);
14957cd0
A
71 if (function->executable()->isHostFunction())
72 return;
73
74 FunctionExecutable* executable = function->jsExecutable();
75
76 // Check if the function is already in the set - if so,
77 // we've already retranslated it, nothing to do here.
6fe7ccc8 78 if (!m_functionExecutables.add(executable).isNewEntry)
14957cd0
A
79 return;
80
81 ExecState* exec = function->scope()->globalObject->JSGlobalObject::globalExec();
82 executable->discardCode();
83 if (m_debugger == function->scope()->globalObject->debugger())
84 m_sourceProviders.add(executable->source().provider(), exec);
85}
86
87} // namespace
88
9dae56ea
A
89namespace JSC {
90
9dae56ea
A
91Debugger::~Debugger()
92{
93 HashSet<JSGlobalObject*>::iterator end = m_globalObjects.end();
94 for (HashSet<JSGlobalObject*>::iterator it = m_globalObjects.begin(); it != end; ++it)
95 (*it)->setDebugger(0);
96}
97
98void Debugger::attach(JSGlobalObject* globalObject)
99{
100 ASSERT(!globalObject->debugger());
101 globalObject->setDebugger(this);
102 m_globalObjects.add(globalObject);
103}
104
105void Debugger::detach(JSGlobalObject* globalObject)
106{
107 ASSERT(m_globalObjects.contains(globalObject));
108 m_globalObjects.remove(globalObject);
109 globalObject->setDebugger(0);
110}
111
f9bf01c6
A
112void Debugger::recompileAllJSFunctions(JSGlobalData* globalData)
113{
114 // If JavaScript is running, it's not safe to recompile, since we'll end
115 // up throwing away code that is live on the stack.
116 ASSERT(!globalData->dynamicGlobalObject);
117 if (globalData->dynamicGlobalObject)
118 return;
119
14957cd0 120 Recompiler recompiler(this);
6fe7ccc8 121 globalData->heap.objectSpace().forEachCell(recompiler);
f9bf01c6
A
122}
123
ba379fdc 124JSValue evaluateInGlobalCallFrame(const UString& script, JSValue& exception, JSGlobalObject* globalObject)
9dae56ea
A
125{
126 CallFrame* globalCallFrame = globalObject->globalExec();
14957cd0 127 JSGlobalData& globalData = globalObject->globalData();
9dae56ea 128
14957cd0
A
129 EvalExecutable* eval = EvalExecutable::create(globalCallFrame, makeSource(script), false);
130 if (!eval) {
131 exception = globalData.exception;
132 globalData.exception = JSValue();
133 return exception;
134 }
9dae56ea 135
14957cd0
A
136 JSValue result = globalData.interpreter->execute(eval, globalCallFrame, globalObject, globalCallFrame->scopeChain());
137 if (globalData.exception) {
138 exception = globalData.exception;
139 globalData.exception = JSValue();
140 }
141 ASSERT(result);
142 return result;
9dae56ea
A
143}
144
145} // namespace JSC