diff --git a/CMakeLists.txt b/CMakeLists.txt index a17c94a57..444e1dcd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -185,7 +185,7 @@ project (Jerry CXX C ASM) # Include directories # Core interface set(INCLUDE_CORE_INTERFACE - ${CMAKE_SOURCE_DIR}/core) + ${CMAKE_SOURCE_DIR}/jerry-core) # Sources # Platform-specific @@ -226,7 +226,7 @@ project (Jerry CXX C ASM) # Component targets # Jerry's Core - add_subdirectory(core) + add_subdirectory(jerry-core) # Jerry's libc add_subdirectory(jerry-libc) diff --git a/core/CMakeLists.txt b/jerry-core/CMakeLists.txt similarity index 92% rename from core/CMakeLists.txt rename to jerry-core/CMakeLists.txt index ee6b0cb44..3504efd3e 100644 --- a/core/CMakeLists.txt +++ b/jerry-core/CMakeLists.txt @@ -38,13 +38,13 @@ project (JerryCore CXX C ASM) # Build modes # Debug set(DEFINES_JERRY_DEBUG JERRY_ENABLE_PRETTY_PRINTER) - + # Release set(DEFINES_JERRY_RELEASE JERRY_NDEBUG) # Unit tests set(DEFINES_JERRY_UNITTESTS ) - + # Modifiers # Full profile set(DEFINES_FULL_PROFILE CONFIG_ECMA_NUMBER_TYPE=CONFIG_ECMA_NUMBER_FLOAT64) @@ -80,15 +80,15 @@ project (JerryCore CXX C ASM) # Include directories set(INCLUDE_CORE - ${CMAKE_SOURCE_DIR}/core - ${CMAKE_SOURCE_DIR}/core/mem - ${CMAKE_SOURCE_DIR}/core/vm - ${CMAKE_SOURCE_DIR}/core/ecma/builtin-objects - ${CMAKE_SOURCE_DIR}/core/ecma/base - ${CMAKE_SOURCE_DIR}/core/ecma/operations - ${CMAKE_SOURCE_DIR}/core/parser/collections - ${CMAKE_SOURCE_DIR}/core/parser/js - ${CMAKE_SOURCE_DIR}/core/jrt) + ${CMAKE_SOURCE_DIR}/jerry-core + ${CMAKE_SOURCE_DIR}/jerry-core/mem + ${CMAKE_SOURCE_DIR}/jerry-core/vm + ${CMAKE_SOURCE_DIR}/jerry-core/ecma/builtin-objects + ${CMAKE_SOURCE_DIR}/jerry-core/ecma/base + ${CMAKE_SOURCE_DIR}/jerry-core/ecma/operations + ${CMAKE_SOURCE_DIR}/jerry-core/parser/collections + ${CMAKE_SOURCE_DIR}/jerry-core/parser/js + ${CMAKE_SOURCE_DIR}/jerry-core/jrt) # Third-party # Valgrind diff --git a/core/config.h b/jerry-core/config.h similarity index 100% rename from core/config.h rename to jerry-core/config.h diff --git a/core/ecma/base/ecma-alloc.cpp b/jerry-core/ecma/base/ecma-alloc.cpp similarity index 100% rename from core/ecma/base/ecma-alloc.cpp rename to jerry-core/ecma/base/ecma-alloc.cpp diff --git a/core/ecma/base/ecma-alloc.h b/jerry-core/ecma/base/ecma-alloc.h similarity index 100% rename from core/ecma/base/ecma-alloc.h rename to jerry-core/ecma/base/ecma-alloc.h diff --git a/core/ecma/base/ecma-gc.cpp b/jerry-core/ecma/base/ecma-gc.cpp similarity index 100% rename from core/ecma/base/ecma-gc.cpp rename to jerry-core/ecma/base/ecma-gc.cpp diff --git a/core/ecma/base/ecma-gc.h b/jerry-core/ecma/base/ecma-gc.h similarity index 100% rename from core/ecma/base/ecma-gc.h rename to jerry-core/ecma/base/ecma-gc.h diff --git a/core/ecma/base/ecma-globals.h b/jerry-core/ecma/base/ecma-globals.h similarity index 100% rename from core/ecma/base/ecma-globals.h rename to jerry-core/ecma/base/ecma-globals.h diff --git a/core/ecma/base/ecma-helpers-conversion.cpp b/jerry-core/ecma/base/ecma-helpers-conversion.cpp similarity index 100% rename from core/ecma/base/ecma-helpers-conversion.cpp rename to jerry-core/ecma/base/ecma-helpers-conversion.cpp diff --git a/core/ecma/base/ecma-helpers-number.cpp b/jerry-core/ecma/base/ecma-helpers-number.cpp similarity index 100% rename from core/ecma/base/ecma-helpers-number.cpp rename to jerry-core/ecma/base/ecma-helpers-number.cpp diff --git a/core/ecma/base/ecma-helpers-string.cpp b/jerry-core/ecma/base/ecma-helpers-string.cpp similarity index 100% rename from core/ecma/base/ecma-helpers-string.cpp rename to jerry-core/ecma/base/ecma-helpers-string.cpp diff --git a/core/ecma/base/ecma-helpers-value.cpp b/jerry-core/ecma/base/ecma-helpers-value.cpp similarity index 100% rename from core/ecma/base/ecma-helpers-value.cpp rename to jerry-core/ecma/base/ecma-helpers-value.cpp diff --git a/core/ecma/base/ecma-helpers-values-collection.cpp b/jerry-core/ecma/base/ecma-helpers-values-collection.cpp similarity index 100% rename from core/ecma/base/ecma-helpers-values-collection.cpp rename to jerry-core/ecma/base/ecma-helpers-values-collection.cpp diff --git a/core/ecma/base/ecma-helpers.cpp b/jerry-core/ecma/base/ecma-helpers.cpp similarity index 100% rename from core/ecma/base/ecma-helpers.cpp rename to jerry-core/ecma/base/ecma-helpers.cpp diff --git a/core/ecma/base/ecma-helpers.h b/jerry-core/ecma/base/ecma-helpers.h similarity index 100% rename from core/ecma/base/ecma-helpers.h rename to jerry-core/ecma/base/ecma-helpers.h diff --git a/core/ecma/base/ecma-lcache.cpp b/jerry-core/ecma/base/ecma-lcache.cpp similarity index 100% rename from core/ecma/base/ecma-lcache.cpp rename to jerry-core/ecma/base/ecma-lcache.cpp diff --git a/core/ecma/base/ecma-lcache.h b/jerry-core/ecma/base/ecma-lcache.h similarity index 100% rename from core/ecma/base/ecma-lcache.h rename to jerry-core/ecma/base/ecma-lcache.h diff --git a/core/ecma/base/ecma-magic-strings.inc.h b/jerry-core/ecma/base/ecma-magic-strings.inc.h similarity index 100% rename from core/ecma/base/ecma-magic-strings.inc.h rename to jerry-core/ecma/base/ecma-magic-strings.inc.h diff --git a/core/ecma/base/ecma-stack.cpp b/jerry-core/ecma/base/ecma-stack.cpp similarity index 100% rename from core/ecma/base/ecma-stack.cpp rename to jerry-core/ecma/base/ecma-stack.cpp diff --git a/core/ecma/base/ecma-stack.h b/jerry-core/ecma/base/ecma-stack.h similarity index 100% rename from core/ecma/base/ecma-stack.h rename to jerry-core/ecma/base/ecma-stack.h diff --git a/core/ecma/builtin-objects/ecma-builtin-array-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-array-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-array-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-array-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-array.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-array.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-array.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-array.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-array.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-array.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-array.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-array.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-boolean-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-boolean-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-boolean-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-boolean-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-boolean-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-boolean-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-boolean-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-boolean-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-boolean.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-boolean.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-boolean.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-boolean.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-boolean.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-boolean.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-boolean.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-boolean.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-compact-profile-error.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-compact-profile-error.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-compact-profile-error.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-compact-profile-error.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-compact-profile-error.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-compact-profile-error.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-compact-profile-error.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-compact-profile-error.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-error-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-error-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-error-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-error-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-error-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-error-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-error-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-error-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-error.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-error.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-error.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-error.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-error.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-error.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-error.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-error.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-evalerror-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-evalerror-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-evalerror-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-evalerror-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-evalerror-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-evalerror-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-evalerror-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-evalerror-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-evalerror.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-evalerror.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-evalerror.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-evalerror.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-evalerror.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-evalerror.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-evalerror.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-evalerror.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-function-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-function-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-function-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-function-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-function-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-function-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-function-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-function-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-function.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-function.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-function.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-function.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-function.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-function.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-function.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-function.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-global.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-global.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-global.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-global.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-global.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-global.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-global.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-global.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-internal-routines-template.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-internal-routines-template.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-internal-routines-template.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-internal-routines-template.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-math.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-math.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-math.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-math.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-math.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-math.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-math.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-math.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-number-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-number-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-number-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-number-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-number-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-number-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-number-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-number-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-number.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-number.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-number.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-number.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-number.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-number.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-number.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-number.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-object-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-object-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-object-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-object-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-object-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-object-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-object-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-object-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-object.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-object.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-object.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-object.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-object.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-object.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-object.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-object.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-rangeerror-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-rangeerror-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-rangeerror-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-rangeerror-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-rangeerror-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-rangeerror-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-rangeerror-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-rangeerror-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-rangeerror.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-rangeerror.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-rangeerror.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-rangeerror.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-rangeerror.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-rangeerror.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-rangeerror.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-rangeerror.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-referenceerror-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-referenceerror-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-referenceerror-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-referenceerror-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-referenceerror-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-referenceerror-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-referenceerror-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-referenceerror-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-referenceerror.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-referenceerror.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-referenceerror.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-referenceerror.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-referenceerror.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-referenceerror.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-referenceerror.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-referenceerror.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-string-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-string-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-string-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-string-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-string-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-string-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-string-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-string-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-string.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-string.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-string.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-string.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-string.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-string.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-string.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-string.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-syntaxerror-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-syntaxerror-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-syntaxerror-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-syntaxerror-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-syntaxerror-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-syntaxerror-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-syntaxerror-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-syntaxerror-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-syntaxerror.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-syntaxerror.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-syntaxerror.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-syntaxerror.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-syntaxerror.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-syntaxerror.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-syntaxerror.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-syntaxerror.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-type-error-thrower.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-type-error-thrower.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-type-error-thrower.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-type-error-thrower.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-type-error-thrower.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-type-error-thrower.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-type-error-thrower.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-type-error-thrower.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-typeerror-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-typeerror-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-typeerror-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-typeerror-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-typeerror-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-typeerror-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-typeerror-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-typeerror-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-typeerror.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-typeerror.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-typeerror.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-typeerror.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-typeerror.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-typeerror.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-typeerror.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-typeerror.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-urierror-prototype.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-urierror-prototype.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-urierror-prototype.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-urierror-prototype.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-urierror-prototype.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-urierror-prototype.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-urierror-prototype.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-urierror-prototype.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtin-urierror.cpp b/jerry-core/ecma/builtin-objects/ecma-builtin-urierror.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-urierror.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtin-urierror.cpp diff --git a/core/ecma/builtin-objects/ecma-builtin-urierror.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtin-urierror.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtin-urierror.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtin-urierror.inc.h diff --git a/core/ecma/builtin-objects/ecma-builtins-internal.h b/jerry-core/ecma/builtin-objects/ecma-builtins-internal.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtins-internal.h rename to jerry-core/ecma/builtin-objects/ecma-builtins-internal.h diff --git a/core/ecma/builtin-objects/ecma-builtins.cpp b/jerry-core/ecma/builtin-objects/ecma-builtins.cpp similarity index 100% rename from core/ecma/builtin-objects/ecma-builtins.cpp rename to jerry-core/ecma/builtin-objects/ecma-builtins.cpp diff --git a/core/ecma/builtin-objects/ecma-builtins.h b/jerry-core/ecma/builtin-objects/ecma-builtins.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtins.h rename to jerry-core/ecma/builtin-objects/ecma-builtins.h diff --git a/core/ecma/builtin-objects/ecma-builtins.inc.h b/jerry-core/ecma/builtin-objects/ecma-builtins.inc.h similarity index 100% rename from core/ecma/builtin-objects/ecma-builtins.inc.h rename to jerry-core/ecma/builtin-objects/ecma-builtins.inc.h diff --git a/core/ecma/operations/ecma-array-object.cpp b/jerry-core/ecma/operations/ecma-array-object.cpp similarity index 100% rename from core/ecma/operations/ecma-array-object.cpp rename to jerry-core/ecma/operations/ecma-array-object.cpp diff --git a/core/ecma/operations/ecma-array-object.h b/jerry-core/ecma/operations/ecma-array-object.h similarity index 100% rename from core/ecma/operations/ecma-array-object.h rename to jerry-core/ecma/operations/ecma-array-object.h diff --git a/core/ecma/operations/ecma-boolean-object.cpp b/jerry-core/ecma/operations/ecma-boolean-object.cpp similarity index 100% rename from core/ecma/operations/ecma-boolean-object.cpp rename to jerry-core/ecma/operations/ecma-boolean-object.cpp diff --git a/core/ecma/operations/ecma-boolean-object.h b/jerry-core/ecma/operations/ecma-boolean-object.h similarity index 100% rename from core/ecma/operations/ecma-boolean-object.h rename to jerry-core/ecma/operations/ecma-boolean-object.h diff --git a/core/ecma/operations/ecma-comparison.cpp b/jerry-core/ecma/operations/ecma-comparison.cpp similarity index 100% rename from core/ecma/operations/ecma-comparison.cpp rename to jerry-core/ecma/operations/ecma-comparison.cpp diff --git a/core/ecma/operations/ecma-comparison.h b/jerry-core/ecma/operations/ecma-comparison.h similarity index 100% rename from core/ecma/operations/ecma-comparison.h rename to jerry-core/ecma/operations/ecma-comparison.h diff --git a/core/ecma/operations/ecma-conversion.cpp b/jerry-core/ecma/operations/ecma-conversion.cpp similarity index 100% rename from core/ecma/operations/ecma-conversion.cpp rename to jerry-core/ecma/operations/ecma-conversion.cpp diff --git a/core/ecma/operations/ecma-conversion.h b/jerry-core/ecma/operations/ecma-conversion.h similarity index 100% rename from core/ecma/operations/ecma-conversion.h rename to jerry-core/ecma/operations/ecma-conversion.h diff --git a/core/ecma/operations/ecma-exceptions.cpp b/jerry-core/ecma/operations/ecma-exceptions.cpp similarity index 100% rename from core/ecma/operations/ecma-exceptions.cpp rename to jerry-core/ecma/operations/ecma-exceptions.cpp diff --git a/core/ecma/operations/ecma-exceptions.h b/jerry-core/ecma/operations/ecma-exceptions.h similarity index 100% rename from core/ecma/operations/ecma-exceptions.h rename to jerry-core/ecma/operations/ecma-exceptions.h diff --git a/core/ecma/operations/ecma-function-object.cpp b/jerry-core/ecma/operations/ecma-function-object.cpp similarity index 100% rename from core/ecma/operations/ecma-function-object.cpp rename to jerry-core/ecma/operations/ecma-function-object.cpp diff --git a/core/ecma/operations/ecma-function-object.h b/jerry-core/ecma/operations/ecma-function-object.h similarity index 100% rename from core/ecma/operations/ecma-function-object.h rename to jerry-core/ecma/operations/ecma-function-object.h diff --git a/core/ecma/operations/ecma-get-put-value.cpp b/jerry-core/ecma/operations/ecma-get-put-value.cpp similarity index 100% rename from core/ecma/operations/ecma-get-put-value.cpp rename to jerry-core/ecma/operations/ecma-get-put-value.cpp diff --git a/core/ecma/operations/ecma-init-finalize.cpp b/jerry-core/ecma/operations/ecma-init-finalize.cpp similarity index 100% rename from core/ecma/operations/ecma-init-finalize.cpp rename to jerry-core/ecma/operations/ecma-init-finalize.cpp diff --git a/core/ecma/operations/ecma-lex-env.cpp b/jerry-core/ecma/operations/ecma-lex-env.cpp similarity index 100% rename from core/ecma/operations/ecma-lex-env.cpp rename to jerry-core/ecma/operations/ecma-lex-env.cpp diff --git a/core/ecma/operations/ecma-lex-env.h b/jerry-core/ecma/operations/ecma-lex-env.h similarity index 100% rename from core/ecma/operations/ecma-lex-env.h rename to jerry-core/ecma/operations/ecma-lex-env.h diff --git a/core/ecma/operations/ecma-number-arithmetic.cpp b/jerry-core/ecma/operations/ecma-number-arithmetic.cpp similarity index 100% rename from core/ecma/operations/ecma-number-arithmetic.cpp rename to jerry-core/ecma/operations/ecma-number-arithmetic.cpp diff --git a/core/ecma/operations/ecma-number-arithmetic.h b/jerry-core/ecma/operations/ecma-number-arithmetic.h similarity index 100% rename from core/ecma/operations/ecma-number-arithmetic.h rename to jerry-core/ecma/operations/ecma-number-arithmetic.h diff --git a/core/ecma/operations/ecma-number-object.cpp b/jerry-core/ecma/operations/ecma-number-object.cpp similarity index 100% rename from core/ecma/operations/ecma-number-object.cpp rename to jerry-core/ecma/operations/ecma-number-object.cpp diff --git a/core/ecma/operations/ecma-number-object.h b/jerry-core/ecma/operations/ecma-number-object.h similarity index 100% rename from core/ecma/operations/ecma-number-object.h rename to jerry-core/ecma/operations/ecma-number-object.h diff --git a/core/ecma/operations/ecma-objects-arguments.cpp b/jerry-core/ecma/operations/ecma-objects-arguments.cpp similarity index 100% rename from core/ecma/operations/ecma-objects-arguments.cpp rename to jerry-core/ecma/operations/ecma-objects-arguments.cpp diff --git a/core/ecma/operations/ecma-objects-arguments.h b/jerry-core/ecma/operations/ecma-objects-arguments.h similarity index 100% rename from core/ecma/operations/ecma-objects-arguments.h rename to jerry-core/ecma/operations/ecma-objects-arguments.h diff --git a/core/ecma/operations/ecma-objects-general.cpp b/jerry-core/ecma/operations/ecma-objects-general.cpp similarity index 100% rename from core/ecma/operations/ecma-objects-general.cpp rename to jerry-core/ecma/operations/ecma-objects-general.cpp diff --git a/core/ecma/operations/ecma-objects-general.h b/jerry-core/ecma/operations/ecma-objects-general.h similarity index 100% rename from core/ecma/operations/ecma-objects-general.h rename to jerry-core/ecma/operations/ecma-objects-general.h diff --git a/core/ecma/operations/ecma-objects.cpp b/jerry-core/ecma/operations/ecma-objects.cpp similarity index 100% rename from core/ecma/operations/ecma-objects.cpp rename to jerry-core/ecma/operations/ecma-objects.cpp diff --git a/core/ecma/operations/ecma-objects.h b/jerry-core/ecma/operations/ecma-objects.h similarity index 100% rename from core/ecma/operations/ecma-objects.h rename to jerry-core/ecma/operations/ecma-objects.h diff --git a/core/ecma/operations/ecma-operations.h b/jerry-core/ecma/operations/ecma-operations.h similarity index 100% rename from core/ecma/operations/ecma-operations.h rename to jerry-core/ecma/operations/ecma-operations.h diff --git a/core/ecma/operations/ecma-reference.cpp b/jerry-core/ecma/operations/ecma-reference.cpp similarity index 100% rename from core/ecma/operations/ecma-reference.cpp rename to jerry-core/ecma/operations/ecma-reference.cpp diff --git a/core/ecma/operations/ecma-reference.h b/jerry-core/ecma/operations/ecma-reference.h similarity index 100% rename from core/ecma/operations/ecma-reference.h rename to jerry-core/ecma/operations/ecma-reference.h diff --git a/core/ecma/operations/ecma-string-object.cpp b/jerry-core/ecma/operations/ecma-string-object.cpp similarity index 100% rename from core/ecma/operations/ecma-string-object.cpp rename to jerry-core/ecma/operations/ecma-string-object.cpp diff --git a/core/ecma/operations/ecma-string-object.h b/jerry-core/ecma/operations/ecma-string-object.h similarity index 100% rename from core/ecma/operations/ecma-string-object.h rename to jerry-core/ecma/operations/ecma-string-object.h diff --git a/core/ecma/operations/ecma-try-catch-macro.h b/jerry-core/ecma/operations/ecma-try-catch-macro.h similarity index 100% rename from core/ecma/operations/ecma-try-catch-macro.h rename to jerry-core/ecma/operations/ecma-try-catch-macro.h diff --git a/core/jerry.cpp b/jerry-core/jerry.cpp similarity index 99% rename from core/jerry.cpp rename to jerry-core/jerry.cpp index 0eeb65940..769586205 100644 --- a/core/jerry.cpp +++ b/jerry-core/jerry.cpp @@ -157,7 +157,7 @@ jerry_run_simple (const char *script_source, /**< script source */ jerry_init (flags); jerry_completion_code_t ret_code = JERRY_COMPLETION_CODE_OK; - + if (!jerry_parse (NULL, script_source, script_source_size)) { /* unhandled SyntaxError */ diff --git a/core/jerry.h b/jerry-core/jerry.h similarity index 100% rename from core/jerry.h rename to jerry-core/jerry.h diff --git a/core/jrt/jrt-bit-fields.cpp b/jerry-core/jrt/jrt-bit-fields.cpp similarity index 100% rename from core/jrt/jrt-bit-fields.cpp rename to jerry-core/jrt/jrt-bit-fields.cpp diff --git a/core/jrt/jrt-bit-fields.h b/jerry-core/jrt/jrt-bit-fields.h similarity index 100% rename from core/jrt/jrt-bit-fields.h rename to jerry-core/jrt/jrt-bit-fields.h diff --git a/core/jrt/jrt-fatals.cpp b/jerry-core/jrt/jrt-fatals.cpp similarity index 100% rename from core/jrt/jrt-fatals.cpp rename to jerry-core/jrt/jrt-fatals.cpp diff --git a/core/jrt/jrt-libc-includes.h b/jerry-core/jrt/jrt-libc-includes.h similarity index 100% rename from core/jrt/jrt-libc-includes.h rename to jerry-core/jrt/jrt-libc-includes.h diff --git a/core/jrt/jrt-types.h b/jerry-core/jrt/jrt-types.h similarity index 100% rename from core/jrt/jrt-types.h rename to jerry-core/jrt/jrt-types.h diff --git a/core/jrt/jrt.h b/jerry-core/jrt/jrt.h similarity index 100% rename from core/jrt/jrt.h rename to jerry-core/jrt/jrt.h diff --git a/core/mem/mem-allocator-internal.h b/jerry-core/mem/mem-allocator-internal.h similarity index 100% rename from core/mem/mem-allocator-internal.h rename to jerry-core/mem/mem-allocator-internal.h diff --git a/core/mem/mem-allocator.cpp b/jerry-core/mem/mem-allocator.cpp similarity index 100% rename from core/mem/mem-allocator.cpp rename to jerry-core/mem/mem-allocator.cpp diff --git a/core/mem/mem-allocator.h b/jerry-core/mem/mem-allocator.h similarity index 100% rename from core/mem/mem-allocator.h rename to jerry-core/mem/mem-allocator.h diff --git a/core/mem/mem-config.h b/jerry-core/mem/mem-config.h similarity index 100% rename from core/mem/mem-config.h rename to jerry-core/mem/mem-config.h diff --git a/core/mem/mem-heap.cpp b/jerry-core/mem/mem-heap.cpp similarity index 100% rename from core/mem/mem-heap.cpp rename to jerry-core/mem/mem-heap.cpp diff --git a/core/mem/mem-heap.h b/jerry-core/mem/mem-heap.h similarity index 100% rename from core/mem/mem-heap.h rename to jerry-core/mem/mem-heap.h diff --git a/core/mem/mem-pool.cpp b/jerry-core/mem/mem-pool.cpp similarity index 100% rename from core/mem/mem-pool.cpp rename to jerry-core/mem/mem-pool.cpp diff --git a/core/mem/mem-pool.h b/jerry-core/mem/mem-pool.h similarity index 100% rename from core/mem/mem-pool.h rename to jerry-core/mem/mem-pool.h diff --git a/core/mem/mem-poolman.cpp b/jerry-core/mem/mem-poolman.cpp similarity index 100% rename from core/mem/mem-poolman.cpp rename to jerry-core/mem/mem-poolman.cpp diff --git a/core/mem/mem-poolman.h b/jerry-core/mem/mem-poolman.h similarity index 100% rename from core/mem/mem-poolman.h rename to jerry-core/mem/mem-poolman.h diff --git a/core/parser/collections/array-list.cpp b/jerry-core/parser/collections/array-list.cpp similarity index 100% rename from core/parser/collections/array-list.cpp rename to jerry-core/parser/collections/array-list.cpp diff --git a/core/parser/collections/array-list.h b/jerry-core/parser/collections/array-list.h similarity index 100% rename from core/parser/collections/array-list.h rename to jerry-core/parser/collections/array-list.h diff --git a/core/parser/collections/hash-table.cpp b/jerry-core/parser/collections/hash-table.cpp similarity index 100% rename from core/parser/collections/hash-table.cpp rename to jerry-core/parser/collections/hash-table.cpp diff --git a/core/parser/collections/hash-table.h b/jerry-core/parser/collections/hash-table.h similarity index 100% rename from core/parser/collections/hash-table.h rename to jerry-core/parser/collections/hash-table.h diff --git a/core/parser/collections/linked-list.cpp b/jerry-core/parser/collections/linked-list.cpp similarity index 100% rename from core/parser/collections/linked-list.cpp rename to jerry-core/parser/collections/linked-list.cpp diff --git a/core/parser/collections/linked-list.h b/jerry-core/parser/collections/linked-list.h similarity index 100% rename from core/parser/collections/linked-list.h rename to jerry-core/parser/collections/linked-list.h diff --git a/core/parser/collections/lit-id-hash-table.cpp b/jerry-core/parser/collections/lit-id-hash-table.cpp similarity index 100% rename from core/parser/collections/lit-id-hash-table.cpp rename to jerry-core/parser/collections/lit-id-hash-table.cpp diff --git a/core/parser/collections/lit-id-hash-table.h b/jerry-core/parser/collections/lit-id-hash-table.h similarity index 100% rename from core/parser/collections/lit-id-hash-table.h rename to jerry-core/parser/collections/lit-id-hash-table.h diff --git a/core/parser/collections/literal.h b/jerry-core/parser/collections/literal.h similarity index 100% rename from core/parser/collections/literal.h rename to jerry-core/parser/collections/literal.h diff --git a/core/parser/collections/lp-string.cpp b/jerry-core/parser/collections/lp-string.cpp similarity index 100% rename from core/parser/collections/lp-string.cpp rename to jerry-core/parser/collections/lp-string.cpp diff --git a/core/parser/collections/lp-string.h b/jerry-core/parser/collections/lp-string.h similarity index 100% rename from core/parser/collections/lp-string.h rename to jerry-core/parser/collections/lp-string.h diff --git a/core/parser/collections/stack.h b/jerry-core/parser/collections/stack.h similarity index 100% rename from core/parser/collections/stack.h rename to jerry-core/parser/collections/stack.h diff --git a/core/parser/collections/tree.h b/jerry-core/parser/collections/tree.h similarity index 100% rename from core/parser/collections/tree.h rename to jerry-core/parser/collections/tree.h diff --git a/core/parser/js.new b/jerry-core/parser/js.new similarity index 100% rename from core/parser/js.new rename to jerry-core/parser/js.new diff --git a/core/parser/js/bytecode-data.h b/jerry-core/parser/js/bytecode-data.h similarity index 100% rename from core/parser/js/bytecode-data.h rename to jerry-core/parser/js/bytecode-data.h diff --git a/core/parser/js/deserializer.cpp b/jerry-core/parser/js/deserializer.cpp similarity index 100% rename from core/parser/js/deserializer.cpp rename to jerry-core/parser/js/deserializer.cpp diff --git a/core/parser/js/deserializer.h b/jerry-core/parser/js/deserializer.h similarity index 100% rename from core/parser/js/deserializer.h rename to jerry-core/parser/js/deserializer.h diff --git a/core/parser/js/lexer.cpp b/jerry-core/parser/js/lexer.cpp similarity index 100% rename from core/parser/js/lexer.cpp rename to jerry-core/parser/js/lexer.cpp diff --git a/core/parser/js/lexer.h b/jerry-core/parser/js/lexer.h similarity index 100% rename from core/parser/js/lexer.h rename to jerry-core/parser/js/lexer.h diff --git a/core/parser/js/literal.cpp b/jerry-core/parser/js/literal.cpp similarity index 100% rename from core/parser/js/literal.cpp rename to jerry-core/parser/js/literal.cpp diff --git a/core/parser/js/literal.h b/jerry-core/parser/js/literal.h similarity index 100% rename from core/parser/js/literal.h rename to jerry-core/parser/js/literal.h diff --git a/core/parser/js/opcodes-dumper.cpp b/jerry-core/parser/js/opcodes-dumper.cpp similarity index 100% rename from core/parser/js/opcodes-dumper.cpp rename to jerry-core/parser/js/opcodes-dumper.cpp diff --git a/core/parser/js/opcodes-dumper.h b/jerry-core/parser/js/opcodes-dumper.h similarity index 100% rename from core/parser/js/opcodes-dumper.h rename to jerry-core/parser/js/opcodes-dumper.h diff --git a/core/parser/js/parser.cpp b/jerry-core/parser/js/parser.cpp similarity index 100% rename from core/parser/js/parser.cpp rename to jerry-core/parser/js/parser.cpp diff --git a/core/parser/js/parser.h b/jerry-core/parser/js/parser.h similarity index 100% rename from core/parser/js/parser.h rename to jerry-core/parser/js/parser.h diff --git a/core/parser/js/scopes-tree.cpp b/jerry-core/parser/js/scopes-tree.cpp similarity index 100% rename from core/parser/js/scopes-tree.cpp rename to jerry-core/parser/js/scopes-tree.cpp diff --git a/core/parser/js/scopes-tree.h b/jerry-core/parser/js/scopes-tree.h similarity index 100% rename from core/parser/js/scopes-tree.h rename to jerry-core/parser/js/scopes-tree.h diff --git a/core/parser/js/serializer.cpp b/jerry-core/parser/js/serializer.cpp similarity index 100% rename from core/parser/js/serializer.cpp rename to jerry-core/parser/js/serializer.cpp diff --git a/core/parser/js/serializer.h b/jerry-core/parser/js/serializer.h similarity index 100% rename from core/parser/js/serializer.h rename to jerry-core/parser/js/serializer.h diff --git a/core/parser/js/syntax-errors.cpp b/jerry-core/parser/js/syntax-errors.cpp similarity index 100% rename from core/parser/js/syntax-errors.cpp rename to jerry-core/parser/js/syntax-errors.cpp diff --git a/core/parser/js/syntax-errors.h b/jerry-core/parser/js/syntax-errors.h similarity index 100% rename from core/parser/js/syntax-errors.h rename to jerry-core/parser/js/syntax-errors.h diff --git a/core/vm/opcodes-agnostic.cpp b/jerry-core/vm/opcodes-agnostic.cpp similarity index 100% rename from core/vm/opcodes-agnostic.cpp rename to jerry-core/vm/opcodes-agnostic.cpp diff --git a/core/vm/opcodes-ecma-arithmetics.cpp b/jerry-core/vm/opcodes-ecma-arithmetics.cpp similarity index 100% rename from core/vm/opcodes-ecma-arithmetics.cpp rename to jerry-core/vm/opcodes-ecma-arithmetics.cpp diff --git a/core/vm/opcodes-ecma-bitwise.cpp b/jerry-core/vm/opcodes-ecma-bitwise.cpp similarity index 100% rename from core/vm/opcodes-ecma-bitwise.cpp rename to jerry-core/vm/opcodes-ecma-bitwise.cpp diff --git a/core/vm/opcodes-ecma-equality.cpp b/jerry-core/vm/opcodes-ecma-equality.cpp similarity index 100% rename from core/vm/opcodes-ecma-equality.cpp rename to jerry-core/vm/opcodes-ecma-equality.cpp diff --git a/core/vm/opcodes-ecma-relational.cpp b/jerry-core/vm/opcodes-ecma-relational.cpp similarity index 100% rename from core/vm/opcodes-ecma-relational.cpp rename to jerry-core/vm/opcodes-ecma-relational.cpp diff --git a/core/vm/opcodes-ecma-support.h b/jerry-core/vm/opcodes-ecma-support.h similarity index 100% rename from core/vm/opcodes-ecma-support.h rename to jerry-core/vm/opcodes-ecma-support.h diff --git a/core/vm/opcodes-ecma-try-catch-finally.cpp b/jerry-core/vm/opcodes-ecma-try-catch-finally.cpp similarity index 100% rename from core/vm/opcodes-ecma-try-catch-finally.cpp rename to jerry-core/vm/opcodes-ecma-try-catch-finally.cpp diff --git a/core/vm/opcodes-helpers-variables.cpp b/jerry-core/vm/opcodes-helpers-variables.cpp similarity index 100% rename from core/vm/opcodes-helpers-variables.cpp rename to jerry-core/vm/opcodes-helpers-variables.cpp diff --git a/core/vm/opcodes-native-call.cpp b/jerry-core/vm/opcodes-native-call.cpp similarity index 100% rename from core/vm/opcodes-native-call.cpp rename to jerry-core/vm/opcodes-native-call.cpp diff --git a/core/vm/opcodes-native-call.h b/jerry-core/vm/opcodes-native-call.h similarity index 100% rename from core/vm/opcodes-native-call.h rename to jerry-core/vm/opcodes-native-call.h diff --git a/core/vm/opcodes-varg.cpp b/jerry-core/vm/opcodes-varg.cpp similarity index 100% rename from core/vm/opcodes-varg.cpp rename to jerry-core/vm/opcodes-varg.cpp diff --git a/core/vm/opcodes.cpp b/jerry-core/vm/opcodes.cpp similarity index 100% rename from core/vm/opcodes.cpp rename to jerry-core/vm/opcodes.cpp diff --git a/core/vm/opcodes.h b/jerry-core/vm/opcodes.h similarity index 100% rename from core/vm/opcodes.h rename to jerry-core/vm/opcodes.h diff --git a/core/vm/pretty-printer.cpp b/jerry-core/vm/pretty-printer.cpp similarity index 100% rename from core/vm/pretty-printer.cpp rename to jerry-core/vm/pretty-printer.cpp diff --git a/core/vm/pretty-printer.h b/jerry-core/vm/pretty-printer.h similarity index 100% rename from core/vm/pretty-printer.h rename to jerry-core/vm/pretty-printer.h diff --git a/core/vm/vm.cpp b/jerry-core/vm/vm.cpp similarity index 100% rename from core/vm/vm.cpp rename to jerry-core/vm/vm.cpp diff --git a/core/vm/vm.h b/jerry-core/vm/vm.h similarity index 100% rename from core/vm/vm.h rename to jerry-core/vm/vm.h