Moving to replacement of on-stack ecma_object_t* with managed ecma_object_ptr_t.

This commit is contained in:
Ruben Ayrapetyan
2015-02-04 18:02:34 +03:00
parent e3f081ee84
commit fb6e205d0d
92 changed files with 1343 additions and 907 deletions
+5 -1
View File
@@ -37,7 +37,11 @@ typedef unsigned long mword_t;
#define __noinline __attribute__((noinline))
#define __used __attribute__((used))
#ifndef __attribute_always_inline__
# define __attribute_always_inline__ __attribute__((always_inline))
# ifdef JERRY_NDEBUG
# define __attribute_always_inline__ __attribute__((always_inline))
# else /* !JERRY_NDEBUG */
# define __attribute_always_inline__
# endif /* !JERRY_NDEBUG */
#endif /* !__attribute_always_inline__ */
#ifndef __attribute_const__
# define __attribute_const__ __attribute__((const))