chromium/v8/src/execution/vm-state-inl.h

// Copyright 2010 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_EXECUTION_VM_STATE_INL_H_
#define V8_EXECUTION_VM_STATE_INL_H_

#include "src/execution/isolate-inl.h"
#include "src/execution/simulator.h"
#include "src/execution/vm-state.h"
#include "src/logging/log.h"
#include "src/tracing/trace-event.h"

namespace v8 {
namespace internal {

// VMState class implementation. A simple stack of VM states held by the logger
// and partially threaded through the call stack. States are pushed by VMState
// construction and popped by destruction.
inline const char* StateToString(StateTag state) {}

template <StateTag Tag>
VMState<Tag>::VMState(Isolate* isolate)
    :{}

template <StateTag Tag>
VMState<Tag>::~VMState() {}

ExternalCallbackScope::ExternalCallbackScope(
    Isolate* isolate, Address callback, v8::ExceptionContext exception_context,
    const void* callback_info)
    :{}

ExternalCallbackScope::~ExternalCallbackScope() {}

Address ExternalCallbackScope::scope_address() {}

}  // namespace internal
}  // namespace v8

#endif  // V8_EXECUTION_VM_STATE_INL_H_