// Automatically generated from interpreter/bytecodes.h // The following list macro is used to populate the builtins list // with the bytecode handlers #include <stdint.h> #ifndef V8_BUILTINS_GENERATED_BYTECODES_BUILTINS_LIST #define V8_BUILTINS_GENERATED_BYTECODES_BUILTINS_LIST namespace v8 { namespace internal { #define BUILTIN_LIST_BYTECODE_HANDLERS(V) … constexpr int kNumberOfBytecodeHandlers = …; constexpr int kNumberOfWideBytecodeHandlers = …; constexpr uint8_t kIllegalBytecodeHandlerEncoding = …; // Mapping from Bytecode to a dense form with all the illegal // wide Bytecodes removed. Used to index into the builtins table. constexpr uint8_t kWideBytecodeToBuiltinsMapping[204] = …; } // namespace internal } // namespace v8 #endif // V8_BUILTINS_GENERATED_BYTECODES_BUILTINS_LIST