![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include "src/objects/map.h"
#include <optional>
#include "src/common/assert-scope.h"
#include "src/common/globals.h"
#include "src/execution/frames.h"
#include "src/execution/isolate.h"
#include "src/handles/handles-inl.h"
#include "src/handles/maybe-handles.h"
#include "src/heap/heap-layout-inl.h"
#include "src/heap/heap-write-barrier-inl.h"
#include "src/init/bootstrapper.h"
#include "src/logging/log.h"
#include "src/logging/runtime-call-stats-scope.h"
#include "src/objects/arguments-inl.h"
#include "src/objects/descriptor-array.h"
#include "src/objects/elements-kind.h"
#include "src/objects/field-type.h"
#include "src/objects/instance-type.h"
#include "src/objects/js-objects.h"
#include "src/objects/map-updater.h"
#include "src/objects/maybe-object.h"
#include "src/objects/oddball.h"
#include "src/objects/property.h"
#include "src/objects/transitions-inl.h"
#include "src/roots/roots.h"
#include "src/utils/ostreams.h"
#include "src/zone/zone-containers.h"
Go to the source code of this file.
Namespaces | |
namespace | v8 |
namespace | v8::internal |
Macros | |
#define | TYPED_ARRAY_CONSTRUCTORS_SWITCH(Type, type, TYPE, Ctype) |
#define | MAKE_TQ_CASE(TYPE, Name) |
#define | CASE(TypeCamelCase, TYPE_UPPER_CASE) |
Functions | |
static bool | v8::internal::ContainsMap (MapHandlesSpan maps, Tagged< Map > map) |
static bool | v8::internal::HasElementsKind (MapHandlesSpan maps, ElementsKind elements_kind) |
static Tagged< Map > | v8::internal::FindClosestElementsTransition (Isolate *isolate, Tagged< Map > map, ElementsKind to_kind, ConcurrencyMode cmode) |
static Handle< Map > | v8::internal::AddMissingElementsTransitions (Isolate *isolate, Handle< Map > map, ElementsKind to_kind) |
#define CASE | ( | TypeCamelCase, | |
TYPE_UPPER_CASE ) |
#define MAKE_TQ_CASE | ( | TYPE, | |
Name ) |
#define TYPED_ARRAY_CONSTRUCTORS_SWITCH | ( | Type, | |
type, | |||
TYPE, | |||
Ctype ) |