v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
js-objects.h File Reference
#include <optional>
#include "src/common/globals.h"
#include "src/handles/handles.h"
#include "src/objects/embedder-data-slot.h"
#include "src/objects/fixed-array.h"
#include "src/objects/internal-index.h"
#include "src/objects/objects.h"
#include "src/objects/property-array.h"
#include "src/objects/object-macros.h"
#include "torque-generated/src/objects/js-objects-tq.inc"
#include "src/objects/object-macros-undef.h"
Include dependency graph for js-objects.h:

Go to the source code of this file.

Classes

class  v8::internal::JSReceiver
 
class  v8::internal::JSObject
 
class  v8::internal::JSExternalObject
 
class  v8::internal::JSObjectWithEmbedderSlots
 
class  v8::internal::JSAPIObjectWithEmbedderSlots
 
class  v8::internal::JSCustomElementsObject
 
class  v8::internal::JSSpecialObject
 
class  v8::internal::JSApiWrapper
 
class  v8::internal::JSAccessorPropertyDescriptor
 
class  v8::internal::JSDataPropertyDescriptor
 
class  v8::internal::JSIteratorResult
 
class  v8::internal::JSGlobalProxy
 
class  v8::internal::JSGlobalObject
 
class  v8::internal::JSPrimitiveWrapper
 
class  v8::internal::JSDate
 
class  v8::internal::JSMessageObject
 
class  v8::internal::JSAsyncFromSyncIterator
 
class  v8::internal::JSStringIterator
 
class  v8::internal::JSValidIteratorWrapper
 
class  v8::internal::JSPromiseWithResolversResult
 

Namespaces

namespace  v8
 
namespace  v8::internal
 

Macros

#define JS_ACCESSOR_PROPERTY_DESCRIPTOR_FIELDS(V)
 
#define JS_DATA_PROPERTY_DESCRIPTOR_FIELDS(V)
 
#define JS_ITERATOR_RESULT_FIELDS(V)
 
#define JS_PROMISE_WITHRESOLVERS_RESULT_FIELDS(V)
 

Enumerations

enum class  v8::internal::AllocationPolicy { v8::internal::kAllocationAllowed , v8::internal::kAllocationDisallowed }
 

Macro Definition Documentation

◆ JS_ACCESSOR_PROPERTY_DESCRIPTOR_FIELDS

#define JS_ACCESSOR_PROPERTY_DESCRIPTOR_FIELDS ( V)
Value:
V(kGetOffset, kTaggedSize) \
V(kSetOffset, kTaggedSize) \
V(kEnumerableOffset, kTaggedSize) \
V(kConfigurableOffset, kTaggedSize) \
/* Total size. */ \
V(kSize, 0)
#define V(Name)

Definition at line 1117 of file js-objects.h.

◆ JS_DATA_PROPERTY_DESCRIPTOR_FIELDS

#define JS_DATA_PROPERTY_DESCRIPTOR_FIELDS ( V)
Value:
V(kValueOffset, kTaggedSize) \
V(kWritableOffset, kTaggedSize) \
V(kEnumerableOffset, kTaggedSize) \
V(kConfigurableOffset, kTaggedSize) \
/* Total size. */ \
V(kSize, 0)

Definition at line 1146 of file js-objects.h.

◆ JS_ITERATOR_RESULT_FIELDS

#define JS_ITERATOR_RESULT_FIELDS ( V)
Value:
V(kValueOffset, kTaggedSize) \
V(kDoneOffset, kTaggedSize) \
/* Total size. */ \
V(kSize, 0)

Definition at line 1178 of file js-objects.h.

◆ JS_PROMISE_WITHRESOLVERS_RESULT_FIELDS

#define JS_PROMISE_WITHRESOLVERS_RESULT_FIELDS ( V)
Value:
V(kPromiseOffset, kTaggedSize) \
V(kResolveOffset, kTaggedSize) \
V(kRejectOffset, kTaggedSize) \
/* Total size. */ \
V(kSize, 0)

Definition at line 1455 of file js-objects.h.