v8  9.0.257(node16.0.0)
V8 is Google's open source JavaScript engine
v8-fast-api-calls.h File Reference
#include <stddef.h>
#include <stdint.h>
#include "v8config.h"
Include dependency graph for v8-fast-api-calls.h:

Go to the source code of this file.

Data Structures

class  CTypeInfo
 
class  CFunctionInfo
 
struct  ApiObject
 
struct  FastApiCallbackOptions
 
struct  GetCType< T >
 
struct  GetCType< FastApiCallbackOptions & >
 
struct  count< T, List >
 
struct  count< T, T, Args... >
 
struct  count< T, U, Args... >
 
class  CFunctionInfoImpl< R, Args >
 
class  CFunction
 

Namespaces

 v8
 
 v8::internal
 

Macros

#define SPECIALIZE_GET_C_TYPE_FOR(ctype, ctypeinfo)
 
#define SUPPORTED_C_TYPES(V)
 

Macro Definition Documentation

◆ SPECIALIZE_GET_C_TYPE_FOR

#define SPECIALIZE_GET_C_TYPE_FOR (   ctype,
  ctypeinfo 
)
Value:
template <> \
struct GetCType<ctype> { \
static constexpr CTypeInfo Get() { \
return CTypeInfo(CTypeInfo::Type::ctypeinfo); \
} \
};

Definition at line 278 of file v8-fast-api-calls.h.

◆ SUPPORTED_C_TYPES

#define SUPPORTED_C_TYPES (   V)
Value:
V(void, kVoid) \
V(bool, kBool) \
V(int32_t, kInt32) \
V(uint32_t, kUint32) \
V(int64_t, kInt64) \
V(uint64_t, kUint64) \
V(float, kFloat32) \
V(double, kFloat64) \
V(ApiObject, kV8Value)

Definition at line 286 of file v8-fast-api-calls.h.

V
#define V(Name)