Skip to content

Commit 07ab121

Browse files
committed
Add custom dispatcher to every builtin object for consistency
JerryScript-DCO-1.0-Signed-off-by: Orkenyi Virag [email protected]
1 parent 3bcd48f commit 07ab121

29 files changed

+760
-0
lines changed

jerry-core/ecma/builtin-objects/ecma-builtin-aggregateerror.c

+26
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@
3333
#define ECMA_BUILTINS_INTERNAL
3434
#include "ecma-builtins-internal.h"
3535

36+
/**
37+
* This object has a custom dispatch function.
38+
*/
39+
#define BUILTIN_CUSTOM_DISPATCH
40+
3641
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-aggregateerror.inc.h"
3742
#define BUILTIN_UNDERSCORED_ID aggregate_error
3843
#include "ecma-builtin-internal-routines-template.inc.h"
@@ -103,6 +108,27 @@ ecma_builtin_aggregate_error_dispatch_construct (const ecma_value_t *arguments_l
103108
return result;
104109
} /* ecma_builtin_aggregate_error_dispatch_construct */
105110

111+
/**
112+
* Dispatcher of the built-in's routines
113+
*
114+
* @return ecma value
115+
* Returned value must be freed with ecma_free_value.
116+
*/
117+
ecma_value_t
118+
ecma_builtin_aggregate_error_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide routine identifier */
119+
ecma_value_t this_arg, /**< 'this' argument value */
120+
const ecma_value_t arguments_list_p[], /**< list of arguments
121+
* passed to routine */
122+
uint32_t arguments_number) /**< length of arguments' list */
123+
{
124+
JERRY_UNUSED (this_arg);
125+
JERRY_UNUSED (arguments_number);
126+
JERRY_UNUSED (arguments_list_p);
127+
JERRY_UNUSED (builtin_routine_id);
128+
129+
JERRY_UNREACHABLE ();
130+
} /* ecma_builtin_aggregate_error_dispatch_routine */
131+
106132
/**
107133
* @}
108134
* @}

jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype-unscopables.c

+28
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,36 @@
2121
#define ECMA_BUILTINS_INTERNAL
2222
#include "ecma-builtins-internal.h"
2323

24+
/**
25+
* This object has a custom dispatch function.
26+
*/
27+
#define BUILTIN_CUSTOM_DISPATCH
28+
2429
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-array-prototype-unscopables.inc.h"
2530
#define BUILTIN_UNDERSCORED_ID array_prototype_unscopables
2631
#include "ecma-builtin-internal-routines-template.inc.h"
2732

33+
/**
34+
* Dispatcher of the built-in's routines
35+
*
36+
* @return ecma value
37+
* Returned value must be freed with ecma_free_value.
38+
*/
39+
ecma_value_t
40+
ecma_builtin_array_prototype_unscopables_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide
41+
* routine identifier */
42+
ecma_value_t this_arg, /**< 'this' argument value */
43+
const ecma_value_t arguments_list_p[], /**< list of arguments
44+
* passed
45+
* to routine */
46+
uint32_t arguments_number) /**< length of arguments' list */
47+
{
48+
JERRY_UNUSED (this_arg);
49+
JERRY_UNUSED (arguments_number);
50+
JERRY_UNUSED (arguments_list_p);
51+
JERRY_UNUSED (builtin_routine_id);
52+
53+
JERRY_UNREACHABLE ();
54+
} /* ecma_builtin_array_prototype_unscopables_dispatch_routine */
55+
2856
#endif /* JERRY_ESNEXT */

jerry-core/ecma/builtin-objects/ecma-builtin-async-function-prototype.c

+27
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
#define ECMA_BUILTINS_INTERNAL
2121
#include "ecma-builtins-internal.h"
2222

23+
/**
24+
* This object has a custom dispatch function.
25+
*/
26+
#define BUILTIN_CUSTOM_DISPATCH
27+
2328
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-async-function-prototype.inc.h"
2429
#define BUILTIN_UNDERSCORED_ID async_function_prototype
2530
#include "ecma-builtin-internal-routines-template.inc.h"
@@ -34,6 +39,28 @@
3439
* @{
3540
*/
3641

42+
/**
43+
* Dispatcher of the built-in's routines
44+
*
45+
* @return ecma value
46+
* Returned value must be freed with ecma_free_value.
47+
*/
48+
ecma_value_t
49+
ecma_builtin_async_function_prototype_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide
50+
* routine identifier */
51+
ecma_value_t this_arg, /**< 'this' argument value */
52+
const ecma_value_t arguments_list_p[], /**< list of arguments
53+
* passed to routine */
54+
uint32_t arguments_number) /**< length of arguments' list */
55+
{
56+
JERRY_UNUSED (this_arg);
57+
JERRY_UNUSED (arguments_number);
58+
JERRY_UNUSED (arguments_list_p);
59+
JERRY_UNUSED (builtin_routine_id);
60+
61+
JERRY_UNREACHABLE ();
62+
} /* ecma_builtin_async_function_prototype_dispatch_routine */
63+
3764
/**
3865
* @}
3966
* @}

jerry-core/ecma/builtin-objects/ecma-builtin-async-function.c

+26
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
#include "ecma-builtins-internal.h"
2222
#include "ecma-function-object.h"
2323

24+
/**
25+
* This object has a custom dispatch function.
26+
*/
27+
#define BUILTIN_CUSTOM_DISPATCH
28+
2429
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-async-function.inc.h"
2530
#define BUILTIN_UNDERSCORED_ID async_function
2631
#include "ecma-builtin-internal-routines-template.inc.h"
@@ -65,6 +70,27 @@ ecma_builtin_async_function_dispatch_construct (const ecma_value_t *arguments_li
6570
return ecma_builtin_async_function_dispatch_call (arguments_list_p, arguments_list_len);
6671
} /* ecma_builtin_async_function_dispatch_construct */
6772

73+
/**
74+
* Dispatcher of the built-in's routines
75+
*
76+
* @return ecma value
77+
* Returned value must be freed with ecma_free_value.
78+
*/
79+
ecma_value_t
80+
ecma_builtin_async_function_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide routine identifier */
81+
ecma_value_t this_arg, /**< 'this' argument value */
82+
const ecma_value_t arguments_list_p[], /**< list of arguments
83+
* passed to routine */
84+
uint32_t arguments_number) /**< length of arguments' list */
85+
{
86+
JERRY_UNUSED (this_arg);
87+
JERRY_UNUSED (arguments_number);
88+
JERRY_UNUSED (arguments_list_p);
89+
JERRY_UNUSED (builtin_routine_id);
90+
91+
JERRY_UNREACHABLE ();
92+
} /* ecma_builtin_async_function_dispatch_routine */
93+
6894
/**
6995
* @}
7096
* @}

jerry-core/ecma/builtin-objects/ecma-builtin-async-generator-function.c

+27
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
#include "ecma-builtins-internal.h"
2222
#include "ecma-function-object.h"
2323

24+
/**
25+
* This object has a custom dispatch function.
26+
*/
27+
#define BUILTIN_CUSTOM_DISPATCH
28+
2429
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-async-generator-function.inc.h"
2530
#define BUILTIN_UNDERSCORED_ID async_generator_function
2631
#include "ecma-builtin-internal-routines-template.inc.h"
@@ -65,6 +70,28 @@ ecma_builtin_async_generator_function_dispatch_construct (const ecma_value_t *ar
6570
return ecma_builtin_async_generator_function_dispatch_call (arguments_list_p, arguments_list_len);
6671
} /* ecma_builtin_async_generator_function_dispatch_construct */
6772

73+
/**
74+
* Dispatcher of the built-in's routines
75+
*
76+
* @return ecma value
77+
* Returned value must be freed with ecma_free_value.
78+
*/
79+
ecma_value_t
80+
ecma_builtin_async_generator_function_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide
81+
* routine identifier */
82+
ecma_value_t this_arg, /**< 'this' argument value */
83+
const ecma_value_t arguments_list_p[], /**< list of arguments
84+
* passed to routine */
85+
uint32_t arguments_number) /**< length of arguments' list */
86+
{
87+
JERRY_UNUSED (this_arg);
88+
JERRY_UNUSED (arguments_number);
89+
JERRY_UNUSED (arguments_list_p);
90+
JERRY_UNUSED (builtin_routine_id);
91+
92+
JERRY_UNREACHABLE ();
93+
} /* ecma_builtin_async_generator_function_dispatch_routine */
94+
6895
/**
6996
* @}
7097
* @}

jerry-core/ecma/builtin-objects/ecma-builtin-async-generator.c

+26
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
#define ECMA_BUILTINS_INTERNAL
2121
#include "ecma-builtins-internal.h"
2222

23+
/**
24+
* This object has a custom dispatch function.
25+
*/
26+
#define BUILTIN_CUSTOM_DISPATCH
27+
2328
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-async-generator.inc.h"
2429
#define BUILTIN_UNDERSCORED_ID async_generator
2530
#include "ecma-builtin-internal-routines-template.inc.h"
@@ -34,6 +39,27 @@
3439
* @{
3540
*/
3641

42+
/**
43+
* Dispatcher of the built-in's routines
44+
*
45+
* @return ecma value
46+
* Returned value must be freed with ecma_free_value.
47+
*/
48+
ecma_value_t
49+
ecma_builtin_async_generator_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide routine identifier */
50+
ecma_value_t this_arg, /**< 'this' argument value */
51+
const ecma_value_t arguments_list_p[], /**< list of arguments
52+
* passed to routine */
53+
uint32_t arguments_number) /**< length of arguments' list */
54+
{
55+
JERRY_UNUSED (this_arg);
56+
JERRY_UNUSED (arguments_number);
57+
JERRY_UNUSED (arguments_list_p);
58+
JERRY_UNUSED (builtin_routine_id);
59+
60+
JERRY_UNREACHABLE ();
61+
} /* ecma_builtin_async_generator_dispatch_routine */
62+
3763
/**
3864
* @}
3965
* @}

jerry-core/ecma/builtin-objects/ecma-builtin-bigint.c

+26
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
#define ECMA_BUILTINS_INTERNAL
2323
#include "ecma-builtins-internal.h"
2424

25+
/**
26+
* This object has a custom dispatch function.
27+
*/
28+
#define BUILTIN_CUSTOM_DISPATCH
29+
2530
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-bigint.inc.h"
2631
#define BUILTIN_UNDERSCORED_ID bigint
2732
#include "ecma-builtin-internal-routines-template.inc.h"
@@ -71,6 +76,27 @@ ecma_builtin_bigint_dispatch_construct (const ecma_value_t *arguments_list_p, /*
7176
return ecma_raise_type_error (ECMA_ERR_MSG ("BigInt function is not a constructor"));
7277
} /* ecma_builtin_bigint_dispatch_construct */
7378

79+
/**
80+
* Dispatcher of the built-in's routines
81+
*
82+
* @return ecma value
83+
* Returned value must be freed with ecma_free_value.
84+
*/
85+
ecma_value_t
86+
ecma_builtin_bigint_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide routine identifier */
87+
ecma_value_t this_arg, /**< 'this' argument value */
88+
const ecma_value_t arguments_list_p[], /**< list of arguments
89+
* passed to routine */
90+
uint32_t arguments_number) /**< length of arguments' list */
91+
{
92+
JERRY_UNUSED (this_arg);
93+
JERRY_UNUSED (arguments_number);
94+
JERRY_UNUSED (arguments_list_p);
95+
JERRY_UNUSED (builtin_routine_id);
96+
97+
JERRY_UNREACHABLE ();
98+
} /* ecma_builtin_bigint_dispatch_routine */
99+
74100
/**
75101
* @}
76102
* @}

jerry-core/ecma/builtin-objects/ecma-builtin-boolean.c

+26
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@
2929
#define ECMA_BUILTINS_INTERNAL
3030
#include "ecma-builtins-internal.h"
3131

32+
/**
33+
* This object has a custom dispatch function.
34+
*/
35+
#define BUILTIN_CUSTOM_DISPATCH
36+
3237
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-boolean.inc.h"
3338
#define BUILTIN_UNDERSCORED_ID boolean
3439
#include "ecma-builtin-internal-routines-template.inc.h"
@@ -89,6 +94,27 @@ ecma_builtin_boolean_dispatch_construct (const ecma_value_t *arguments_list_p, /
8994
}
9095
} /* ecma_builtin_boolean_dispatch_construct */
9196

97+
/**
98+
* Dispatcher of the built-in's routines
99+
*
100+
* @return ecma value
101+
* Returned value must be freed with ecma_free_value.
102+
*/
103+
ecma_value_t
104+
ecma_builtin_boolean_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide routine identifier */
105+
ecma_value_t this_arg, /**< 'this' argument value */
106+
const ecma_value_t arguments_list_p[], /**< list of arguments
107+
* passed to routine */
108+
uint32_t arguments_number) /**< length of arguments' list */
109+
{
110+
JERRY_UNUSED (this_arg);
111+
JERRY_UNUSED (arguments_number);
112+
JERRY_UNUSED (arguments_list_p);
113+
JERRY_UNUSED (builtin_routine_id);
114+
115+
JERRY_UNREACHABLE ();
116+
} /* ecma_builtin_boolean_dispatch_routine */
117+
92118
/**
93119
* @}
94120
* @}

jerry-core/ecma/builtin-objects/ecma-builtin-dataview.c

+26
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
#define ECMA_BUILTINS_INTERNAL
2323
#include "ecma-builtins-internal.h"
2424

25+
/**
26+
* This object has a custom dispatch function.
27+
*/
28+
#define BUILTIN_CUSTOM_DISPATCH
29+
2530
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-dataview.inc.h"
2631
#define BUILTIN_UNDERSCORED_ID dataview
2732
#include "ecma-builtin-internal-routines-template.inc.h"
@@ -62,6 +67,27 @@ ecma_builtin_dataview_dispatch_construct (const ecma_value_t *arguments_list_p,
6267
return ecma_op_dataview_create (arguments_list_p, arguments_list_len);
6368
} /* ecma_builtin_dataview_dispatch_construct */
6469

70+
/**
71+
* Dispatcher of the built-in's routines
72+
*
73+
* @return ecma value
74+
* Returned value must be freed with ecma_free_value.
75+
*/
76+
ecma_value_t
77+
ecma_builtin_dataview_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide routine identifier */
78+
ecma_value_t this_arg, /**< 'this' argument value */
79+
const ecma_value_t arguments_list_p[], /**< list of arguments
80+
* passed to routine */
81+
uint32_t arguments_number) /**< length of arguments' list */
82+
{
83+
JERRY_UNUSED (this_arg);
84+
JERRY_UNUSED (arguments_number);
85+
JERRY_UNUSED (arguments_list_p);
86+
JERRY_UNUSED (builtin_routine_id);
87+
88+
JERRY_UNREACHABLE ();
89+
} /* ecma_builtin_dataview_dispatch_routine */
90+
6591
/**
6692
* @}
6793
* @}

jerry-core/ecma/builtin-objects/ecma-builtin-error.c

+26
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@
2929
#define ECMA_BUILTINS_INTERNAL
3030
#include "ecma-builtins-internal.h"
3131

32+
/**
33+
* This object has a custom dispatch function.
34+
*/
35+
#define BUILTIN_CUSTOM_DISPATCH
36+
3237
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-error.inc.h"
3338
#define BUILTIN_UNDERSCORED_ID error
3439
#include "ecma-builtin-internal-routines-template.inc.h"
@@ -89,6 +94,27 @@ ecma_builtin_error_dispatch_construct (const ecma_value_t *arguments_list_p, /**
8994
#endif /* JERRY_ESNEXT */
9095
} /* ecma_builtin_error_dispatch_construct */
9196

97+
/**
98+
* Dispatcher of the built-in's routines
99+
*
100+
* @return ecma value
101+
* Returned value must be freed with ecma_free_value.
102+
*/
103+
ecma_value_t
104+
ecma_builtin_error_dispatch_routine (uint8_t builtin_routine_id, /**< built-in wide routine identifier */
105+
ecma_value_t this_arg, /**< 'this' argument value */
106+
const ecma_value_t arguments_list_p[], /**< list of arguments
107+
* passed to routine */
108+
uint32_t arguments_number) /**< length of arguments' list */
109+
{
110+
JERRY_UNUSED (this_arg);
111+
JERRY_UNUSED (arguments_number);
112+
JERRY_UNUSED (arguments_list_p);
113+
JERRY_UNUSED (builtin_routine_id);
114+
115+
JERRY_UNREACHABLE ();
116+
} /* ecma_builtin_error_dispatch_routine */
117+
92118
/**
93119
* @}
94120
* @}

0 commit comments

Comments
 (0)