v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
v8::internal::interpreter::Bytecodes Class Referencefinal

#include <bytecodes.h>

Inheritance diagram for v8::internal::interpreter::Bytecodes:
Collaboration diagram for v8::internal::interpreter::Bytecodes:

Static Public Member Functions

static const char * ToString (Bytecode bytecode)
 
static std::string ToString (Bytecode bytecode, OperandScale operand_scale, const char *separator=".")
 
static uint8_t ToByte (Bytecode bytecode)
 
static Bytecode FromByte (uint8_t value)
 
static Bytecode OperandScaleToPrefixBytecode (OperandScale operand_scale)
 
static bool OperandScaleRequiresPrefixBytecode (OperandScale operand_scale)
 
static OperandScale PrefixBytecodeToOperandScale (Bytecode bytecode)
 
static ImplicitRegisterUse GetImplicitRegisterUse (Bytecode bytecode)
 
static bool ReadsAccumulator (Bytecode bytecode)
 
static bool WritesAccumulator (Bytecode bytecode)
 
static bool ClobbersAccumulator (Bytecode bytecode)
 
static bool WritesOrClobbersAccumulator (Bytecode bytecode)
 
static bool WritesImplicitRegister (Bytecode bytecode)
 
static constexpr bool IsAccumulatorLoadWithoutEffects (Bytecode bytecode)
 
static constexpr bool IsCompareWithoutEffects (Bytecode bytecode)
 
static constexpr bool IsShortStar (Bytecode bytecode)
 
static constexpr bool IsAnyStar (Bytecode bytecode)
 
static constexpr bool IsRegisterLoadWithoutEffects (Bytecode bytecode)
 
static constexpr bool IsConditionalJumpImmediate (Bytecode bytecode)
 
static constexpr bool IsConditionalJumpConstant (Bytecode bytecode)
 
static constexpr bool IsConditionalJump (Bytecode bytecode)
 
static constexpr bool IsUnconditionalJump (Bytecode bytecode)
 
static constexpr bool IsJumpImmediate (Bytecode bytecode)
 
static constexpr bool IsJumpConstant (Bytecode bytecode)
 
static constexpr bool IsJumpIfToBoolean (Bytecode bytecode)
 
static constexpr bool IsJump (Bytecode bytecode)
 
static constexpr bool IsForwardJump (Bytecode bytecode)
 
static constexpr bool IsJumpWithoutEffects (Bytecode bytecode)
 
static constexpr bool IsSwitch (Bytecode bytecode)
 
static constexpr bool IsWithoutExternalSideEffects (Bytecode bytecode)
 
static constexpr bool IsLdarOrStar (Bytecode bytecode)
 
static constexpr bool IsCallOrConstruct (Bytecode bytecode)
 
static constexpr bool IsCallRuntime (Bytecode bytecode)
 
static constexpr bool IsPrefixScalingBytecode (Bytecode bytecode)
 
static constexpr bool Returns (Bytecode bytecode)
 
static constexpr bool UnconditionallyThrows (Bytecode bytecode)
 
static int NumberOfOperands (Bytecode bytecode)
 
static OperandType GetOperandType (Bytecode bytecode, int i)
 
static const OperandTypeGetOperandTypes (Bytecode bytecode)
 
static bool OperandIsScalableSignedByte (Bytecode bytecode, int operand_index)
 
static bool OperandIsScalableUnsignedByte (Bytecode bytecode, int operand_index)
 
static bool OperandIsScalable (Bytecode bytecode, int operand_index)
 
static bool IsBytecodeWithScalableOperands (Bytecode bytecode)
 
static OperandSize GetOperandSize (Bytecode bytecode, int i, OperandScale operand_scale)
 
static const OperandSizeGetOperandSizes (Bytecode bytecode, OperandScale operand_scale)
 
static int GetOperandOffset (Bytecode bytecode, int i, OperandScale operand_scale)
 
static int Size (Bytecode bytecode, OperandScale operand_scale)
 
static Bytecode GetDebugBreak (Bytecode bytecode)
 
static bool MakesCallAlongCriticalPath (Bytecode bytecode)
 
static ConvertReceiverMode GetReceiverMode (Bytecode bytecode)
 
static bool IsDebugBreak (Bytecode bytecode)
 
static bool IsRegisterOperandType (OperandType operand_type)
 
static bool IsRegisterInputOperandType (OperandType operand_type)
 
static bool IsRegisterOutputOperandType (OperandType operand_type)
 
static bool IsRegisterListOperandType (OperandType operand_type)
 
static bool IsStarLookahead (Bytecode bytecode, OperandScale operand_scale)
 
static int GetNumberOfRegistersRepresentedBy (OperandType operand_type)
 
static OperandSize SizeOfOperand (OperandType operand_type, OperandScale operand_scale)
 
static bool IsRuntimeIdOperandType (OperandType operand_type)
 
static bool IsUnsignedOperandType (OperandType operand_type)
 
static bool BytecodeHasHandler (Bytecode bytecode, OperandScale operand_scale)
 
static OperandScale ScaleForSignedOperand (int32_t value)
 
static OperandScale ScaleForUnsignedOperand (uint32_t value)
 
static OperandSize SizeForUnsignedOperand (uint32_t value)
 
static Address bytecode_size_table_address ()
 

Static Public Attributes

static const int kMaxOperands = 5
 
static const int kBytecodeCount = static_cast<int>(Bytecode::kLast) + 1
 
static const int kShortStarCount
 

Static Private Attributes

static const OperandType *const kOperandTypes []
 
static const OperandTypeInfo *const kOperandTypeInfos []
 
static const int kOperandCount []
 
static const int kNumberOfRegisterOperands []
 
static const ImplicitRegisterUse kImplicitRegisterUse []
 
static const bool kIsScalable []
 
static const uint8_t kBytecodeSizes [3][kBytecodeCount]
 
static const OperandSize *const kOperandSizes [3][kBytecodeCount]
 
static const int *const kOperandOffsets [3][kBytecodeCount]
 
static OperandSize const kOperandKindSizes [3][BytecodeOperands::kOperandTypeCount]
 

Detailed Description

Definition at line 597 of file bytecodes.h.

Member Function Documentation

◆ bytecode_size_table_address()

static Address v8::internal::interpreter::Bytecodes::bytecode_size_table_address ( )
inlinestatic

Definition at line 1106 of file bytecodes.h.

◆ BytecodeHasHandler()

bool v8::internal::interpreter::Bytecodes::BytecodeHasHandler ( Bytecode bytecode,
OperandScale operand_scale )
static

Definition at line 333 of file bytecodes.cc.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ClobbersAccumulator()

static bool v8::internal::interpreter::Bytecodes::ClobbersAccumulator ( Bytecode bytecode)
inlinestatic

Definition at line 698 of file bytecodes.h.

Here is the caller graph for this function:

◆ FromByte()

static Bytecode v8::internal::interpreter::Bytecodes::FromByte ( uint8_t value)
inlinestatic

Definition at line 624 of file bytecodes.h.

Here is the caller graph for this function:

◆ GetDebugBreak()

Bytecode v8::internal::interpreter::Bytecodes::GetDebugBreak ( Bytecode bytecode)
static

Definition at line 148 of file bytecodes.cc.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetImplicitRegisterUse()

static ImplicitRegisterUse v8::internal::interpreter::Bytecodes::GetImplicitRegisterUse ( Bytecode bytecode)
inlinestatic

Definition at line 681 of file bytecodes.h.

Here is the caller graph for this function:

◆ GetNumberOfRegistersRepresentedBy()

static int v8::internal::interpreter::Bytecodes::GetNumberOfRegistersRepresentedBy ( OperandType operand_type)
inlinestatic

Definition at line 1029 of file bytecodes.h.

Here is the caller graph for this function:

◆ GetOperandOffset()

static int v8::internal::interpreter::Bytecodes::GetOperandOffset ( Bytecode bytecode,
int i,
OperandScale operand_scale )
inlinestatic

Definition at line 951 of file bytecodes.h.

Here is the caller graph for this function:

◆ GetOperandSize()

static OperandSize v8::internal::interpreter::Bytecodes::GetOperandSize ( Bytecode bytecode,
int i,
OperandScale operand_scale )
inlinestatic

Definition at line 931 of file bytecodes.h.

Here is the caller graph for this function:

◆ GetOperandSizes()

static const OperandSize * v8::internal::interpreter::Bytecodes::GetOperandSizes ( Bytecode bytecode,
OperandScale operand_scale )
inlinestatic

Definition at line 938 of file bytecodes.h.

Here is the caller graph for this function:

◆ GetOperandType()

static OperandType v8::internal::interpreter::Bytecodes::GetOperandType ( Bytecode bytecode,
int i )
inlinestatic

Definition at line 894 of file bytecodes.h.

Here is the caller graph for this function:

◆ GetOperandTypes()

static const OperandType * v8::internal::interpreter::Bytecodes::GetOperandTypes ( Bytecode bytecode)
inlinestatic

Definition at line 903 of file bytecodes.h.

Here is the caller graph for this function:

◆ GetReceiverMode()

static ConvertReceiverMode v8::internal::interpreter::Bytecodes::GetReceiverMode ( Bytecode bytecode)
inlinestatic

Definition at line 980 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsAccumulatorLoadWithoutEffects()

static constexpr bool v8::internal::interpreter::Bytecodes::IsAccumulatorLoadWithoutEffects ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 718 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsAnyStar()

static constexpr bool v8::internal::interpreter::Bytecodes::IsAnyStar ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 737 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsBytecodeWithScalableOperands()

bool v8::internal::interpreter::Bytecodes::IsBytecodeWithScalableOperands ( Bytecode bytecode)
static

Definition at line 313 of file bytecodes.cc.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ IsCallOrConstruct()

static constexpr bool v8::internal::interpreter::Bytecodes::IsCallOrConstruct ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 840 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsCallRuntime()

static constexpr bool v8::internal::interpreter::Bytecodes::IsCallRuntime ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 858 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsCompareWithoutEffects()

static constexpr bool v8::internal::interpreter::Bytecodes::IsCompareWithoutEffects ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 726 of file bytecodes.h.

◆ IsConditionalJump()

static constexpr bool v8::internal::interpreter::Bytecodes::IsConditionalJump ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 764 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsConditionalJumpConstant()

static constexpr bool v8::internal::interpreter::Bytecodes::IsConditionalJumpConstant ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 757 of file bytecodes.h.

◆ IsConditionalJumpImmediate()

static constexpr bool v8::internal::interpreter::Bytecodes::IsConditionalJumpImmediate ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 750 of file bytecodes.h.

◆ IsDebugBreak()

bool v8::internal::interpreter::Bytecodes::IsDebugBreak ( Bytecode bytecode)
static

Definition at line 167 of file bytecodes.cc.

Here is the caller graph for this function:

◆ IsForwardJump()

static constexpr bool v8::internal::interpreter::Bytecodes::IsForwardJump ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 805 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsJump()

static constexpr bool v8::internal::interpreter::Bytecodes::IsJump ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 798 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsJumpConstant()

static constexpr bool v8::internal::interpreter::Bytecodes::IsJumpConstant ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 784 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsJumpIfToBoolean()

static constexpr bool v8::internal::interpreter::Bytecodes::IsJumpIfToBoolean ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 791 of file bytecodes.h.

◆ IsJumpImmediate()

static constexpr bool v8::internal::interpreter::Bytecodes::IsJumpImmediate ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 777 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsJumpWithoutEffects()

static constexpr bool v8::internal::interpreter::Bytecodes::IsJumpWithoutEffects ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 813 of file bytecodes.h.

◆ IsLdarOrStar()

static constexpr bool v8::internal::interpreter::Bytecodes::IsLdarOrStar ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 835 of file bytecodes.h.

◆ IsPrefixScalingBytecode()

static constexpr bool v8::internal::interpreter::Bytecodes::IsPrefixScalingBytecode ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 865 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsRegisterInputOperandType()

bool v8::internal::interpreter::Bytecodes::IsRegisterInputOperandType ( OperandType operand_type)
static

Definition at line 222 of file bytecodes.cc.

◆ IsRegisterListOperandType()

bool v8::internal::interpreter::Bytecodes::IsRegisterListOperandType ( OperandType operand_type)
static

Definition at line 197 of file bytecodes.cc.

Here is the caller graph for this function:

◆ IsRegisterLoadWithoutEffects()

static constexpr bool v8::internal::interpreter::Bytecodes::IsRegisterLoadWithoutEffects ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 743 of file bytecodes.h.

◆ IsRegisterOperandType()

bool v8::internal::interpreter::Bytecodes::IsRegisterOperandType ( OperandType operand_type)
static

Definition at line 180 of file bytecodes.cc.

Here is the caller graph for this function:

◆ IsRegisterOutputOperandType()

bool v8::internal::interpreter::Bytecodes::IsRegisterOutputOperandType ( OperandType operand_type)
static

Definition at line 241 of file bytecodes.cc.

◆ IsRuntimeIdOperandType()

static bool v8::internal::interpreter::Bytecodes::IsRuntimeIdOperandType ( OperandType operand_type)
static

◆ IsShortStar()

static constexpr bool v8::internal::interpreter::Bytecodes::IsShortStar ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 732 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsStarLookahead()

bool v8::internal::interpreter::Bytecodes::IsStarLookahead ( Bytecode bytecode,
OperandScale operand_scale )
static

Definition at line 260 of file bytecodes.cc.

Here is the caller graph for this function:

◆ IsSwitch()

static constexpr bool v8::internal::interpreter::Bytecodes::IsSwitch ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 819 of file bytecodes.h.

Here is the caller graph for this function:

◆ IsUnconditionalJump()

static constexpr bool v8::internal::interpreter::Bytecodes::IsUnconditionalJump ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 770 of file bytecodes.h.

◆ IsUnsignedOperandType()

bool v8::internal::interpreter::Bytecodes::IsUnsignedOperandType ( OperandType operand_type)
static

Definition at line 321 of file bytecodes.cc.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ IsWithoutExternalSideEffects()

static constexpr bool v8::internal::interpreter::Bytecodes::IsWithoutExternalSideEffects ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 826 of file bytecodes.h.

◆ MakesCallAlongCriticalPath()

bool v8::internal::interpreter::Bytecodes::MakesCallAlongCriticalPath ( Bytecode bytecode)
static

Definition at line 207 of file bytecodes.cc.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ NumberOfOperands()

static int v8::internal::interpreter::Bytecodes::NumberOfOperands ( Bytecode bytecode)
inlinestatic

Definition at line 886 of file bytecodes.h.

Here is the caller graph for this function:

◆ OperandIsScalable()

static bool v8::internal::interpreter::Bytecodes::OperandIsScalable ( Bytecode bytecode,
int operand_index )
inlinestatic

Definition at line 922 of file bytecodes.h.

Here is the caller graph for this function:

◆ OperandIsScalableSignedByte()

static bool v8::internal::interpreter::Bytecodes::OperandIsScalableSignedByte ( Bytecode bytecode,
int operand_index )
inlinestatic

Definition at line 908 of file bytecodes.h.

◆ OperandIsScalableUnsignedByte()

static bool v8::internal::interpreter::Bytecodes::OperandIsScalableUnsignedByte ( Bytecode bytecode,
int operand_index )
inlinestatic

Definition at line 915 of file bytecodes.h.

◆ OperandScaleRequiresPrefixBytecode()

static bool v8::internal::interpreter::Bytecodes::OperandScaleRequiresPrefixBytecode ( OperandScale operand_scale)
inlinestatic

Definition at line 644 of file bytecodes.h.

Here is the caller graph for this function:

◆ OperandScaleToPrefixBytecode()

static Bytecode v8::internal::interpreter::Bytecodes::OperandScaleToPrefixBytecode ( OperandScale operand_scale)
inlinestatic

Definition at line 632 of file bytecodes.h.

Here is the caller graph for this function:

◆ PrefixBytecodeToOperandScale()

static OperandScale v8::internal::interpreter::Bytecodes::PrefixBytecodeToOperandScale ( Bytecode bytecode)
inlinestatic

Definition at line 650 of file bytecodes.h.

Here is the caller graph for this function:

◆ ReadsAccumulator()

static bool v8::internal::interpreter::Bytecodes::ReadsAccumulator ( Bytecode bytecode)
inlinestatic

Definition at line 687 of file bytecodes.h.

Here is the caller graph for this function:

◆ Returns()

static constexpr bool v8::internal::interpreter::Bytecodes::Returns ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 872 of file bytecodes.h.

Here is the caller graph for this function:

◆ ScaleForSignedOperand()

static OperandScale v8::internal::interpreter::Bytecodes::ScaleForSignedOperand ( int32_t value)
inlinestatic

Definition at line 1074 of file bytecodes.h.

◆ ScaleForUnsignedOperand()

static OperandScale v8::internal::interpreter::Bytecodes::ScaleForUnsignedOperand ( uint32_t value)
inlinestatic

Definition at line 1085 of file bytecodes.h.

Here is the caller graph for this function:

◆ Size()

static int v8::internal::interpreter::Bytecodes::Size ( Bytecode bytecode,
OperandScale operand_scale )
inlinestatic

Definition at line 964 of file bytecodes.h.

Here is the caller graph for this function:

◆ SizeForUnsignedOperand()

static OperandSize v8::internal::interpreter::Bytecodes::SizeForUnsignedOperand ( uint32_t value)
inlinestatic

Definition at line 1096 of file bytecodes.h.

Here is the caller graph for this function:

◆ SizeOfOperand()

static OperandSize v8::internal::interpreter::Bytecodes::SizeOfOperand ( OperandType operand_type,
OperandScale operand_scale )
inlinestatic

Definition at line 1050 of file bytecodes.h.

Here is the caller graph for this function:

◆ ToByte()

static uint8_t v8::internal::interpreter::Bytecodes::ToByte ( Bytecode bytecode)
inlinestatic

Definition at line 618 of file bytecodes.h.

Here is the caller graph for this function:

◆ ToString() [1/2]

const char * v8::internal::interpreter::Bytecodes::ToString ( Bytecode bytecode)
static

Definition at line 123 of file bytecodes.cc.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ToString() [2/2]

std::string v8::internal::interpreter::Bytecodes::ToString ( Bytecode bytecode,
OperandScale operand_scale,
const char * separator = "." )
static

Definition at line 135 of file bytecodes.cc.

Here is the call graph for this function:

◆ UnconditionallyThrows()

static constexpr bool v8::internal::interpreter::Bytecodes::UnconditionallyThrows ( Bytecode bytecode)
inlinestaticconstexpr

Definition at line 879 of file bytecodes.h.

Here is the caller graph for this function:

◆ WritesAccumulator()

static bool v8::internal::interpreter::Bytecodes::WritesAccumulator ( Bytecode bytecode)
inlinestatic

Definition at line 692 of file bytecodes.h.

Here is the caller graph for this function:

◆ WritesImplicitRegister()

static bool v8::internal::interpreter::Bytecodes::WritesImplicitRegister ( Bytecode bytecode)
inlinestatic

Definition at line 711 of file bytecodes.h.

◆ WritesOrClobbersAccumulator()

static bool v8::internal::interpreter::Bytecodes::WritesOrClobbersAccumulator ( Bytecode bytecode)
inlinestatic

Definition at line 704 of file bytecodes.h.

Here is the caller graph for this function:

Member Data Documentation

◆ kBytecodeCount

const int v8::internal::interpreter::Bytecodes::kBytecodeCount = static_cast<int>(Bytecode::kLast) + 1
static

Definition at line 603 of file bytecodes.h.

◆ kBytecodeSizes

const uint8_t v8::internal::interpreter::Bytecodes::kBytecodeSizes
staticprivate
Initial value:
= {
{
#define ENTRY(Name, ...)
}, {
#define ENTRY(Name, ...)
}, {
#define ENTRY(Name, ...)
}
}

Definition at line 1118 of file bytecodes.h.

◆ kImplicitRegisterUse

const ImplicitRegisterUse v8::internal::interpreter::Bytecodes::kImplicitRegisterUse
staticprivate
Initial value:
= {
#define ENTRY(Name, ...)
}

Definition at line 1116 of file bytecodes.h.

◆ kIsScalable

const bool v8::internal::interpreter::Bytecodes::kIsScalable[]
staticprivate

Definition at line 1117 of file bytecodes.h.

◆ kMaxOperands

const int v8::internal::interpreter::Bytecodes::kMaxOperands = 5
static

Definition at line 600 of file bytecodes.h.

◆ kNumberOfRegisterOperands

const int v8::internal::interpreter::Bytecodes::kNumberOfRegisterOperands[]
staticprivate

Definition at line 1115 of file bytecodes.h.

◆ kOperandCount

const int v8::internal::interpreter::Bytecodes::kOperandCount
staticprivate
Initial value:
= {
#define ENTRY(Name, ...)
}

Definition at line 1114 of file bytecodes.h.

◆ kOperandKindSizes

const OperandSize v8::internal::interpreter::Bytecodes::kOperandKindSizes
staticprivate
Initial value:
= {
{
#define ENTRY(Name, ...) \
}, {
#define ENTRY(Name, ...) \
}, {
#define ENTRY(Name, ...) \
}
}

Definition at line 1122 of file bytecodes.h.

◆ kOperandOffsets

const int *const v8::internal::interpreter::Bytecodes::kOperandOffsets
staticprivate
Initial value:
= {
{
#define ENTRY(Name, ...) \
}, {
#define ENTRY(Name, ...) \
}, {
#define ENTRY(Name, ...) \
}
}

Definition at line 1120 of file bytecodes.h.

◆ kOperandSizes

const OperandSize *const v8::internal::interpreter::Bytecodes::kOperandSizes
staticprivate
Initial value:
= {
{
#define ENTRY(Name, ...) \
}, {
#define ENTRY(Name, ...) \
}, {
#define ENTRY(Name, ...) \
}
}

Definition at line 1119 of file bytecodes.h.

◆ kOperandTypeInfos

const OperandTypeInfo *const v8::internal::interpreter::Bytecodes::kOperandTypeInfos
staticprivate
Initial value:
= {
#define ENTRY(Name, ...)
}

Definition at line 1113 of file bytecodes.h.

◆ kOperandTypes

const OperandType *const v8::internal::interpreter::Bytecodes::kOperandTypes
staticprivate
Initial value:
= {
#define ENTRY(Name, ...)
}

Definition at line 1112 of file bytecodes.h.

◆ kShortStarCount

const int v8::internal::interpreter::Bytecodes::kShortStarCount
static
Initial value:

Definition at line 605 of file bytecodes.h.


The documentation for this class was generated from the following files: