v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
interpreter-intrinsics.cc File Reference
Include dependency graph for interpreter-intrinsics.cc:

Go to the source code of this file.

Namespaces

namespace  v8
 
namespace  v8::internal
 
namespace  v8::internal::interpreter
 

Macros

#define SUPPORTED(name, lower_case, count)
 
#define TO_RUNTIME_ID(name, lower_case, count)
 
#define TO_INTRINSIC_ID(name, lower_case, count)
 

Macro Definition Documentation

◆ SUPPORTED

#define SUPPORTED ( name,
lower_case,
count )
Value:
case Runtime::kInline##name:
const char * name
Definition builtins.cc:39

◆ TO_INTRINSIC_ID

#define TO_INTRINSIC_ID ( name,
lower_case,
count )
Value:
case IntrinsicId::k##name: \
return Runtime::kInline##name;

◆ TO_RUNTIME_ID

#define TO_RUNTIME_ID ( name,
lower_case,
count )
Value:
case Runtime::kInline##name: \
return IntrinsicId::k##name;