v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
factory-base-inl.h File Reference
#include "src/heap/factory-base.h"
#include <type_traits>
#include "src/heap/local-heap-inl.h"
#include "src/numbers/conversions.h"
#include "src/objects/heap-number.h"
#include "src/objects/map.h"
#include "src/objects/slots-inl.h"
#include "src/objects/smi.h"
#include "src/objects/struct-inl.h"
#include "src/roots/roots.h"
Include dependency graph for factory-base-inl.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  v8
 
namespace  v8::internal
 

Macros

#define RO_ROOT_ACCESSOR(Type, name, CamelName)
 
#define MUTABLE_ROOT_ACCESSOR(Type, name, CamelName)
 

Macro Definition Documentation

◆ MUTABLE_ROOT_ACCESSOR

#define MUTABLE_ROOT_ACCESSOR ( Type,
name,
CamelName )
Value:
template <typename Impl> \
Handle<Type> FactoryBase<Impl>::name() { \
return handle(isolate()->heap()->name(), isolate()); \
}
const char * name
Definition builtins.cc:39
Isolate * isolate

Definition at line 33 of file factory-base-inl.h.

◆ RO_ROOT_ACCESSOR

#define RO_ROOT_ACCESSOR ( Type,
name,
CamelName )
Value:
template <typename Impl> \
Handle<Type> FactoryBase<Impl>::name() { \
return isolate()->roots_table().name(); \
}

Definition at line 25 of file factory-base-inl.h.