Remove #include "isolate-inl.h" from v8.h.

Include it only in the .cc files where it's needed.

R=fschneider@chromium.org
BUG=
TEST=

Review URL: http://codereview.chromium.org/8117001

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9506 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 4cb79951
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include "debug.h" #include "debug.h"
#include "execution.h" #include "execution.h"
#include "global-handles.h" #include "global-handles.h"
#include "isolate-inl.h"
#include "macro-assembler.h" #include "macro-assembler.h"
#include "natives.h" #include "natives.h"
#include "objects-visiting.h" #include "objects-visiting.h"
......
...@@ -195,6 +195,11 @@ const char* CodeStub::MajorName(CodeStub::Major major_key, ...@@ -195,6 +195,11 @@ const char* CodeStub::MajorName(CodeStub::Major major_key,
} }
void CodeStub::PrintName(StringStream* stream) {
stream->Add("%s", MajorName(MajorKey(), false));
}
int ICCompareStub::MinorKey() { int ICCompareStub::MinorKey() {
return OpField::encode(op_ - Token::EQ) | StateField::encode(state_); return OpField::encode(op_ - Token::EQ) | StateField::encode(state_);
} }
......
...@@ -202,9 +202,7 @@ class CodeStub BASE_EMBEDDED { ...@@ -202,9 +202,7 @@ class CodeStub BASE_EMBEDDED {
// Returns a name for logging/debugging purposes. // Returns a name for logging/debugging purposes.
SmartArrayPointer<const char> GetName(); SmartArrayPointer<const char> GetName();
virtual void PrintName(StringStream* stream) { virtual void PrintName(StringStream* stream);
stream->Add("%s", MajorName(MajorKey(), false));
}
// Returns whether the code generated for this stub needs to be allocated as // Returns whether the code generated for this stub needs to be allocated as
// a fixed (non-moveable) code object. // a fixed (non-moveable) code object.
......
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
#include "full-codegen.h" #include "full-codegen.h"
#include "gdb-jit.h" #include "gdb-jit.h"
#include "hydrogen.h" #include "hydrogen.h"
#include "isolate-inl.h"
#include "lithium.h" #include "lithium.h"
#include "liveedit.h" #include "liveedit.h"
#include "parser.h" #include "parser.h"
......
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
#include "global-handles.h" #include "global-handles.h"
#include "ic.h" #include "ic.h"
#include "ic-inl.h" #include "ic-inl.h"
#include "isolate-inl.h"
#include "list.h" #include "list.h"
#include "messages.h" #include "messages.h"
#include "natives.h" #include "natives.h"
...@@ -2937,6 +2938,94 @@ void Debugger::CallMessageDispatchHandler() { ...@@ -2937,6 +2938,94 @@ void Debugger::CallMessageDispatchHandler() {
} }
EnterDebugger::EnterDebugger()
: isolate_(Isolate::Current()),
prev_(isolate_->debug()->debugger_entry()),
it_(isolate_),
has_js_frames_(!it_.done()),
save_(isolate_) {
Debug* debug = isolate_->debug();
ASSERT(prev_ != NULL || !debug->is_interrupt_pending(PREEMPT));
ASSERT(prev_ != NULL || !debug->is_interrupt_pending(DEBUGBREAK));
// Link recursive debugger entry.
debug->set_debugger_entry(this);
// Store the previous break id and frame id.
break_id_ = debug->break_id();
break_frame_id_ = debug->break_frame_id();
// Create the new break info. If there is no JavaScript frames there is no
// break frame id.
if (has_js_frames_) {
debug->NewBreak(it_.frame()->id());
} else {
debug->NewBreak(StackFrame::NO_ID);
}
// Make sure that debugger is loaded and enter the debugger context.
load_failed_ = !debug->Load();
if (!load_failed_) {
// NOTE the member variable save which saves the previous context before
// this change.
isolate_->set_context(*debug->debug_context());
}
}
EnterDebugger::~EnterDebugger() {
ASSERT(Isolate::Current() == isolate_);
Debug* debug = isolate_->debug();
// Restore to the previous break state.
debug->SetBreak(break_frame_id_, break_id_);
// Check for leaving the debugger.
if (prev_ == NULL) {
// Clear mirror cache when leaving the debugger. Skip this if there is a
// pending exception as clearing the mirror cache calls back into
// JavaScript. This can happen if the v8::Debug::Call is used in which
// case the exception should end up in the calling code.
if (!isolate_->has_pending_exception()) {
// Try to avoid any pending debug break breaking in the clear mirror
// cache JavaScript code.
if (isolate_->stack_guard()->IsDebugBreak()) {
debug->set_interrupts_pending(DEBUGBREAK);
isolate_->stack_guard()->Continue(DEBUGBREAK);
}
debug->ClearMirrorCache();
}
// Request preemption and debug break when leaving the last debugger entry
// if any of these where recorded while debugging.
if (debug->is_interrupt_pending(PREEMPT)) {
// This re-scheduling of preemption is to avoid starvation in some
// debugging scenarios.
debug->clear_interrupt_pending(PREEMPT);
isolate_->stack_guard()->Preempt();
}
if (debug->is_interrupt_pending(DEBUGBREAK)) {
debug->clear_interrupt_pending(DEBUGBREAK);
isolate_->stack_guard()->DebugBreak();
}
// If there are commands in the queue when leaving the debugger request
// that these commands are processed.
if (isolate_->debugger()->HasCommands()) {
isolate_->stack_guard()->DebugCommand();
}
// If leaving the debugger with the debugger no longer active unload it.
if (!isolate_->debugger()->IsDebuggerActive()) {
isolate_->debugger()->UnloadDebugger();
}
}
// Leaving this debugger entry.
debug->set_debugger_entry(prev_);
}
MessageImpl MessageImpl::NewEvent(DebugEvent event, MessageImpl MessageImpl::NewEvent(DebugEvent event,
bool running, bool running,
Handle<JSObject> exec_state, Handle<JSObject> exec_state,
......
...@@ -869,91 +869,8 @@ class Debugger { ...@@ -869,91 +869,8 @@ class Debugger {
// some reason could not be entered FailedToEnter will return true. // some reason could not be entered FailedToEnter will return true.
class EnterDebugger BASE_EMBEDDED { class EnterDebugger BASE_EMBEDDED {
public: public:
EnterDebugger() EnterDebugger();
: isolate_(Isolate::Current()), ~EnterDebugger();
prev_(isolate_->debug()->debugger_entry()),
it_(isolate_),
has_js_frames_(!it_.done()),
save_(isolate_) {
Debug* debug = isolate_->debug();
ASSERT(prev_ != NULL || !debug->is_interrupt_pending(PREEMPT));
ASSERT(prev_ != NULL || !debug->is_interrupt_pending(DEBUGBREAK));
// Link recursive debugger entry.
debug->set_debugger_entry(this);
// Store the previous break id and frame id.
break_id_ = debug->break_id();
break_frame_id_ = debug->break_frame_id();
// Create the new break info. If there is no JavaScript frames there is no
// break frame id.
if (has_js_frames_) {
debug->NewBreak(it_.frame()->id());
} else {
debug->NewBreak(StackFrame::NO_ID);
}
// Make sure that debugger is loaded and enter the debugger context.
load_failed_ = !debug->Load();
if (!load_failed_) {
// NOTE the member variable save which saves the previous context before
// this change.
isolate_->set_context(*debug->debug_context());
}
}
~EnterDebugger() {
ASSERT(Isolate::Current() == isolate_);
Debug* debug = isolate_->debug();
// Restore to the previous break state.
debug->SetBreak(break_frame_id_, break_id_);
// Check for leaving the debugger.
if (prev_ == NULL) {
// Clear mirror cache when leaving the debugger. Skip this if there is a
// pending exception as clearing the mirror cache calls back into
// JavaScript. This can happen if the v8::Debug::Call is used in which
// case the exception should end up in the calling code.
if (!isolate_->has_pending_exception()) {
// Try to avoid any pending debug break breaking in the clear mirror
// cache JavaScript code.
if (isolate_->stack_guard()->IsDebugBreak()) {
debug->set_interrupts_pending(DEBUGBREAK);
isolate_->stack_guard()->Continue(DEBUGBREAK);
}
debug->ClearMirrorCache();
}
// Request preemption and debug break when leaving the last debugger entry
// if any of these where recorded while debugging.
if (debug->is_interrupt_pending(PREEMPT)) {
// This re-scheduling of preemption is to avoid starvation in some
// debugging scenarios.
debug->clear_interrupt_pending(PREEMPT);
isolate_->stack_guard()->Preempt();
}
if (debug->is_interrupt_pending(DEBUGBREAK)) {
debug->clear_interrupt_pending(DEBUGBREAK);
isolate_->stack_guard()->DebugBreak();
}
// If there are commands in the queue when leaving the debugger request
// that these commands are processed.
if (isolate_->debugger()->HasCommands()) {
isolate_->stack_guard()->DebugCommand();
}
// If leaving the debugger with the debugger no longer active unload it.
if (!isolate_->debugger()->IsDebuggerActive()) {
isolate_->debugger()->UnloadDebugger();
}
}
// Leaving this debugger entry.
debug->set_debugger_entry(prev_);
}
// Check whether the debugger could be entered. // Check whether the debugger could be entered.
inline bool FailedToEnter() { return load_failed_; } inline bool FailedToEnter() { return load_failed_; }
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include "bootstrapper.h" #include "bootstrapper.h"
#include "codegen.h" #include "codegen.h"
#include "debug.h" #include "debug.h"
#include "isolate-inl.h"
#include "runtime-profiler.h" #include "runtime-profiler.h"
#include "simulator.h" #include "simulator.h"
#include "v8threads.h" #include "v8threads.h"
......
...@@ -77,6 +77,21 @@ inline StackHandler* StackHandler::FromAddress(Address address) { ...@@ -77,6 +77,21 @@ inline StackHandler* StackHandler::FromAddress(Address address) {
} }
inline bool StackHandler::is_entry() const {
return state() == ENTRY;
}
inline bool StackHandler::is_try_catch() const {
return state() == TRY_CATCH;
}
inline bool StackHandler::is_try_finally() const {
return state() == TRY_FINALLY;
}
inline StackHandler::State StackHandler::state() const { inline StackHandler::State StackHandler::state() const {
const int offset = StackHandlerConstants::kStateOffset; const int offset = StackHandlerConstants::kStateOffset;
return static_cast<State>(Memory::int_at(address() + offset)); return static_cast<State>(Memory::int_at(address() + offset));
...@@ -105,11 +120,36 @@ inline StackHandler* StackFrame::top_handler() const { ...@@ -105,11 +120,36 @@ inline StackHandler* StackFrame::top_handler() const {
} }
inline Code* StackFrame::LookupCode() const {
return GetContainingCode(isolate(), pc());
}
inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) { inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) {
return isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code; return isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code;
} }
inline EntryFrame::EntryFrame(StackFrameIterator* iterator)
: StackFrame(iterator) {
}
inline EntryConstructFrame::EntryConstructFrame(StackFrameIterator* iterator)
: EntryFrame(iterator) {
}
inline ExitFrame::ExitFrame(StackFrameIterator* iterator)
: StackFrame(iterator) {
}
inline StandardFrame::StandardFrame(StackFrameIterator* iterator)
: StackFrame(iterator) {
}
inline Object* StandardFrame::GetExpression(int index) const { inline Object* StandardFrame::GetExpression(int index) const {
return Memory::Object_at(GetExpressionAddress(index)); return Memory::Object_at(GetExpressionAddress(index));
} }
...@@ -155,6 +195,11 @@ inline bool StandardFrame::IsConstructFrame(Address fp) { ...@@ -155,6 +195,11 @@ inline bool StandardFrame::IsConstructFrame(Address fp) {
} }
inline JavaScriptFrame::JavaScriptFrame(StackFrameIterator* iterator)
: StandardFrame(iterator) {
}
Address JavaScriptFrame::GetParameterSlot(int index) const { Address JavaScriptFrame::GetParameterSlot(int index) const {
int param_count = ComputeParametersCount(); int param_count = ComputeParametersCount();
ASSERT(-1 <= index && index < param_count); ASSERT(-1 <= index && index < param_count);
...@@ -190,6 +235,26 @@ inline Object* JavaScriptFrame::function() const { ...@@ -190,6 +235,26 @@ inline Object* JavaScriptFrame::function() const {
} }
inline OptimizedFrame::OptimizedFrame(StackFrameIterator* iterator)
: JavaScriptFrame(iterator) {
}
inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame(
StackFrameIterator* iterator) : JavaScriptFrame(iterator) {
}
inline InternalFrame::InternalFrame(StackFrameIterator* iterator)
: StandardFrame(iterator) {
}
inline ConstructFrame::ConstructFrame(StackFrameIterator* iterator)
: InternalFrame(iterator) {
}
template<typename Iterator> template<typename Iterator>
inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp( inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp(
Isolate* isolate) Isolate* isolate)
......
...@@ -888,6 +888,11 @@ void OptimizedFrame::GetFunctions(List<JSFunction*>* functions) { ...@@ -888,6 +888,11 @@ void OptimizedFrame::GetFunctions(List<JSFunction*>* functions) {
} }
int ArgumentsAdaptorFrame::GetNumberOfIncomingArguments() const {
return Smi::cast(GetExpression(0))->value();
}
Address ArgumentsAdaptorFrame::GetCallerStackPointer() const { Address ArgumentsAdaptorFrame::GetCallerStackPointer() const {
return fp() + StandardFrameConstants::kCallerSPOffset; return fp() + StandardFrameConstants::kCallerSPOffset;
} }
......
...@@ -106,9 +106,9 @@ class StackHandler BASE_EMBEDDED { ...@@ -106,9 +106,9 @@ class StackHandler BASE_EMBEDDED {
static inline StackHandler* FromAddress(Address address); static inline StackHandler* FromAddress(Address address);
// Testers // Testers
bool is_entry() { return state() == ENTRY; } inline bool is_entry() const;
bool is_try_catch() { return state() == TRY_CATCH; } inline bool is_try_catch() const;
bool is_try_finally() { return state() == TRY_FINALLY; } inline bool is_try_finally() const;
private: private:
// Accessors. // Accessors.
...@@ -218,9 +218,7 @@ class StackFrame BASE_EMBEDDED { ...@@ -218,9 +218,7 @@ class StackFrame BASE_EMBEDDED {
virtual Code* unchecked_code() const = 0; virtual Code* unchecked_code() const = 0;
// Get the code associated with this frame. // Get the code associated with this frame.
Code* LookupCode() const { inline Code* LookupCode() const;
return GetContainingCode(isolate(), pc());
}
// Get the code object that contains the given pc. // Get the code object that contains the given pc.
static inline Code* GetContainingCode(Isolate* isolate, Address pc); static inline Code* GetContainingCode(Isolate* isolate, Address pc);
...@@ -302,7 +300,7 @@ class EntryFrame: public StackFrame { ...@@ -302,7 +300,7 @@ class EntryFrame: public StackFrame {
virtual void SetCallerFp(Address caller_fp); virtual void SetCallerFp(Address caller_fp);
protected: protected:
explicit EntryFrame(StackFrameIterator* iterator) : StackFrame(iterator) { } inline explicit EntryFrame(StackFrameIterator* iterator);
// The caller stack pointer for entry frames is always zero. The // The caller stack pointer for entry frames is always zero. The
// real information about the caller frame is available through the // real information about the caller frame is available through the
...@@ -329,8 +327,7 @@ class EntryConstructFrame: public EntryFrame { ...@@ -329,8 +327,7 @@ class EntryConstructFrame: public EntryFrame {
} }
protected: protected:
explicit EntryConstructFrame(StackFrameIterator* iterator) inline explicit EntryConstructFrame(StackFrameIterator* iterator);
: EntryFrame(iterator) { }
private: private:
friend class StackFrameIterator; friend class StackFrameIterator;
...@@ -364,7 +361,7 @@ class ExitFrame: public StackFrame { ...@@ -364,7 +361,7 @@ class ExitFrame: public StackFrame {
static void FillState(Address fp, Address sp, State* state); static void FillState(Address fp, Address sp, State* state);
protected: protected:
explicit ExitFrame(StackFrameIterator* iterator) : StackFrame(iterator) { } inline explicit ExitFrame(StackFrameIterator* iterator);
virtual Address GetCallerStackPointer() const; virtual Address GetCallerStackPointer() const;
...@@ -397,8 +394,7 @@ class StandardFrame: public StackFrame { ...@@ -397,8 +394,7 @@ class StandardFrame: public StackFrame {
} }
protected: protected:
explicit StandardFrame(StackFrameIterator* iterator) inline explicit StandardFrame(StackFrameIterator* iterator);
: StackFrame(iterator) { }
virtual void ComputeCallerState(State* state) const; virtual void ComputeCallerState(State* state) const;
...@@ -517,8 +513,7 @@ class JavaScriptFrame: public StandardFrame { ...@@ -517,8 +513,7 @@ class JavaScriptFrame: public StandardFrame {
} }
protected: protected:
explicit JavaScriptFrame(StackFrameIterator* iterator) inline explicit JavaScriptFrame(StackFrameIterator* iterator);
: StandardFrame(iterator) { }
virtual Address GetCallerStackPointer() const; virtual Address GetCallerStackPointer() const;
...@@ -555,8 +550,7 @@ class OptimizedFrame : public JavaScriptFrame { ...@@ -555,8 +550,7 @@ class OptimizedFrame : public JavaScriptFrame {
DeoptimizationInputData* GetDeoptimizationData(int* deopt_index); DeoptimizationInputData* GetDeoptimizationData(int* deopt_index);
protected: protected:
explicit OptimizedFrame(StackFrameIterator* iterator) inline explicit OptimizedFrame(StackFrameIterator* iterator);
: JavaScriptFrame(iterator) { }
private: private:
friend class StackFrameIterator; friend class StackFrameIterator;
...@@ -584,12 +578,9 @@ class ArgumentsAdaptorFrame: public JavaScriptFrame { ...@@ -584,12 +578,9 @@ class ArgumentsAdaptorFrame: public JavaScriptFrame {
int index) const; int index) const;
protected: protected:
explicit ArgumentsAdaptorFrame(StackFrameIterator* iterator) inline explicit ArgumentsAdaptorFrame(StackFrameIterator* iterator);
: JavaScriptFrame(iterator) { }
virtual int GetNumberOfIncomingArguments() const { virtual int GetNumberOfIncomingArguments() const;
return Smi::cast(GetExpression(0))->value();
}
virtual Address GetCallerStackPointer() const; virtual Address GetCallerStackPointer() const;
...@@ -614,8 +605,7 @@ class InternalFrame: public StandardFrame { ...@@ -614,8 +605,7 @@ class InternalFrame: public StandardFrame {
} }
protected: protected:
explicit InternalFrame(StackFrameIterator* iterator) inline explicit InternalFrame(StackFrameIterator* iterator);
: StandardFrame(iterator) { }
virtual Address GetCallerStackPointer() const; virtual Address GetCallerStackPointer() const;
...@@ -636,8 +626,7 @@ class ConstructFrame: public InternalFrame { ...@@ -636,8 +626,7 @@ class ConstructFrame: public InternalFrame {
} }
protected: protected:
explicit ConstructFrame(StackFrameIterator* iterator) inline explicit ConstructFrame(StackFrameIterator* iterator);
: InternalFrame(iterator) { }
private: private:
friend class StackFrameIterator; friend class StackFrameIterator;
...@@ -718,15 +707,19 @@ class JavaScriptFrameIteratorTemp BASE_EMBEDDED { ...@@ -718,15 +707,19 @@ class JavaScriptFrameIteratorTemp BASE_EMBEDDED {
inline JavaScriptFrameIteratorTemp(Isolate* isolate, StackFrame::Id id); inline JavaScriptFrameIteratorTemp(Isolate* isolate, StackFrame::Id id);
JavaScriptFrameIteratorTemp(Address fp, Address sp, JavaScriptFrameIteratorTemp(Address fp,
Address low_bound, Address high_bound) : Address sp,
Address low_bound,
Address high_bound) :
iterator_(fp, sp, low_bound, high_bound) { iterator_(fp, sp, low_bound, high_bound) {
if (!done()) Advance(); if (!done()) Advance();
} }
JavaScriptFrameIteratorTemp(Isolate* isolate, JavaScriptFrameIteratorTemp(Isolate* isolate,
Address fp, Address sp, Address fp,
Address low_bound, Address high_bound) : Address sp,
Address low_bound,
Address high_bound) :
iterator_(isolate, fp, sp, low_bound, high_bound) { iterator_(isolate, fp, sp, low_bound, high_bound) {
if (!done()) Advance(); if (!done()) Advance();
} }
......
...@@ -36,6 +36,21 @@ namespace v8 { ...@@ -36,6 +36,21 @@ namespace v8 {
namespace internal { namespace internal {
SaveContext::SaveContext(Isolate* isolate) : prev_(isolate->save_context()) {
if (isolate->context() != NULL) {
context_ = Handle<Context>(isolate->context());
#if __GNUC_VERSION__ >= 40100 && __GNUC_VERSION__ < 40300
dummy_ = Handle<Context>(isolate->context());
#endif
}
isolate->set_save_context(this);
// If there is no JS frame under the current C frame, use the value 0.
JavaScriptFrameIterator it(isolate);
js_sp_ = it.done() ? 0 : it.frame()->sp();
}
bool Isolate::DebuggerHasBreakPoints() { bool Isolate::DebuggerHasBreakPoints() {
#ifdef ENABLE_DEBUGGER_SUPPORT #ifdef ENABLE_DEBUGGER_SUPPORT
return debug()->has_break_points(); return debug()->has_break_points();
......
...@@ -1219,19 +1219,7 @@ class Isolate { ...@@ -1219,19 +1219,7 @@ class Isolate {
// versions of GCC. See V8 issue 122 for details. // versions of GCC. See V8 issue 122 for details.
class SaveContext BASE_EMBEDDED { class SaveContext BASE_EMBEDDED {
public: public:
explicit SaveContext(Isolate* isolate) : prev_(isolate->save_context()) { inline explicit SaveContext(Isolate* isolate);
if (isolate->context() != NULL) {
context_ = Handle<Context>(isolate->context());
#if __GNUC_VERSION__ >= 40100 && __GNUC_VERSION__ < 40300
dummy_ = Handle<Context>(isolate->context());
#endif
}
isolate->set_save_context(this);
// If there is no JS frame under the current C frame, use the value 0.
JavaScriptFrameIterator it(isolate);
js_sp_ = it.done() ? 0 : it.frame()->sp();
}
~SaveContext() { ~SaveContext() {
if (context_.is_null()) { if (context_.is_null()) {
......
// Copyright 2006-2008 the V8 project authors. All rights reserved. // Copyright 2011 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without // Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are // modification, are permitted provided that the following conditions are
// met: // met:
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#define V8_JSREGEXP_H_ #define V8_JSREGEXP_H_
#include "allocation.h" #include "allocation.h"
#include "assembler.h"
#include "zone-inl.h" #include "zone-inl.h"
namespace v8 { namespace v8 {
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include "deoptimizer.h" #include "deoptimizer.h"
#include "execution.h" #include "execution.h"
#include "global-handles.h" #include "global-handles.h"
#include "isolate-inl.h"
#include "mark-compact.h" #include "mark-compact.h"
#include "platform.h" #include "platform.h"
#include "scopeinfo.h" #include "scopeinfo.h"
......
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
#include "deoptimizer.h" #include "deoptimizer.h"
#include "execution.h" #include "execution.h"
#include "global-handles.h" #include "global-handles.h"
#include "isolate-inl.h"
#include "jsregexp.h" #include "jsregexp.h"
#include "json-parser.h" #include "json-parser.h"
#include "liveedit.h" #include "liveedit.h"
......
...@@ -65,7 +65,6 @@ ...@@ -65,7 +65,6 @@
#include "log-inl.h" #include "log-inl.h"
#include "cpu-profiler-inl.h" #include "cpu-profiler-inl.h"
#include "handles-inl.h" #include "handles-inl.h"
#include "isolate-inl.h"
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment