Revert "Calling routine for instantiating built-ins' properties only if property name is a magic string."

Reverting commit 1dd7d626967110c3a0f14c40479bc054baf04b3f because of performance degradation on ARM Linux.

The degradation requires further investigation.
This commit is contained in:
Ruben Ayrapetyan 2014-11-14 18:04:45 +03:00
parent 82fe067fc9
commit 857e66fb98
2 changed files with 5 additions and 6 deletions

View File

@ -109,8 +109,10 @@ TRY_TO_INSTANTIATE_PROPERTY_ROUTINE_NAME (BUILTIN_UNDERSCORED_ID) (ecma_object_t
ecma_magic_string_id_t id;
bool is_string_magic = ecma_is_string_magic (prop_name_p, &id);
JERRY_ASSERT (is_string_magic);
if (!ecma_is_string_magic (prop_name_p, &id))
{
return NULL;
}
int32_t index;
index = ecma_builtin_bin_search_for_magic_string_id_in_array (ecma_builtin_property_names,

View File

@ -104,11 +104,8 @@ ecma_op_object_get_own_property (ecma_object_t *obj_p, /**< the object */
if (unlikely (prop_p == NULL))
{
ecma_magic_string_id_t magic_string_id __unused;
if (is_builtin
&& type != ECMA_OBJECT_TYPE_BUILT_IN_FUNCTION
&& ecma_is_string_magic (property_name_p, &magic_string_id))
&& type != ECMA_OBJECT_TYPE_BUILT_IN_FUNCTION)
{
prop_p = ecma_builtin_try_to_instantiate_property (obj_p, property_name_p);
}