![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include "src/execution/frames.h"
#include <cstdint>
#include <memory>
#include <optional>
#include <sstream>
#include "src/api/api-arguments.h"
#include "src/api/api-natives.h"
#include "src/base/bits.h"
#include "src/codegen/interface-descriptors.h"
#include "src/codegen/linkage-location.h"
#include "src/codegen/macro-assembler.h"
#include "src/codegen/maglev-safepoint-table.h"
#include "src/codegen/register-configuration.h"
#include "src/codegen/safepoint-table.h"
#include "src/common/globals.h"
#include "src/deoptimizer/deoptimizer.h"
#include "src/execution/arguments.h"
#include "src/execution/frame-constants.h"
#include "src/execution/frames-inl.h"
#include "src/execution/vm-state-inl.h"
#include "src/ic/ic-stats.h"
#include "src/logging/counters.h"
#include "src/objects/casting-inl.h"
#include "src/objects/code.h"
#include "src/objects/instance-type-checker.h"
#include "src/objects/slots.h"
#include "src/objects/smi.h"
#include "src/objects/visitors.h"
#include "src/roots/roots.h"
#include "src/snapshot/embedded/embedded-data-inl.h"
#include "src/strings/string-stream.h"
#include "src/zone/zone-containers.h"
Go to the source code of this file.
Classes | |
class | v8::internal::StackHandlerIterator |
Namespaces | |
namespace | v8 |
namespace | v8::internal |
namespace | v8::internal::ensure_layout |
Macros | |
#define | FRAME_TYPE_CASE(type, class) |
#define | CASE(value, name) |
#define | FRAME_SUMMARY_DESTR(kind, type, field, desc) |
#define | FRAME_SUMMARY_DISPATCH(ret, name) |
Typedefs | |
using | v8::internal::ensure_layout::FC = ApiCallbackExitFrameConstants |
using | v8::internal::ensure_layout::FCA = FunctionCallbackArguments |
#define CASE | ( | value, | |
name ) |
#define FRAME_SUMMARY_DESTR | ( | kind, | |
type, | |||
field, | |||
desc ) |
#define FRAME_SUMMARY_DISPATCH | ( | ret, | |
name ) |
#define FRAME_TYPE_CASE | ( | type, | |
class ) |