1. 11 3月, 2021 1 次提交
  2. 09 9月, 2020 1 次提交
  3. 14 5月, 2018 1 次提交
    • A
      Add jerryscript-compiler.h public header to cover compiler incompatibilities (#2313) · 65ae949d
      Akos Kiss 提交于
      In general, public headers should not have compiler-specific
      constructs but both the core and the port headers have attributes,
      which are non-standard. It's better to factor out such constructs
      to a common place (a new header) and hide them behind macros, which
      can then be defined on a per-compiler basis.
      
      This patch moves the existing definitions of function attributes and
      likely/unlikely builtins to the new header. At the same time, it
      unifies the names of these attribute defines and where they are
      used. Moreover, it touches on jerry-main and removes the uses of
      `__attribute__((unused))` entirely and replaces them with the
      elsewhere used `(void) ...` pattern.
      
      JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
      65ae949d
  4. 01 2月, 2018 1 次提交
  5. 07 12月, 2017 1 次提交
    • R
      Remove ecma_simple_value_t and refactor ecma_make_simple_value (#2135) · e83de3ac
      Robert Fancsik 提交于
      This patch removes all ecma_make_simple_value calls to make the code more easy to understand.
      Also removes the type ecma_simple_value_t which improves the performance in related code paths by calculating the value of new ecma_value_t is no longer needed.
      
      JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik frobert@inf.u-szeged.hu
      e83de3ac
  6. 08 12月, 2016 1 次提交
    • T
      Streamline copyright notices across the codebase. (#1473) · 0511091e
      Tilmann Scheller 提交于
      Since the project is now hosted at the JS Foundation we can move to unified copyright notices for the project.
      
      Starting with this commit all future contributions to the project should only carry the following copyright notice (except for third-party code which requires copyright information to be preserved):
      
      "Copyright JS Foundation and other contributors, http://js.foundation" (without the quotes)
      
      This avoids cluttering the codebase with contributor-specific copyright notices which have a higher maintenance overhead and tend to get outdated quickly. Also dropping the year from the copyright notices helps to avoid yearly code changes just to update the copyright notices.
      
      Note that each contributor still retains full copyright ownership of his/her contributions and the respective authorship is tracked very accurately via Git.
      
      JerryScript-DCO-1.0-Signed-off-by: Tilmann Scheller t.scheller@samsung.com
      0511091e
  7. 14 6月, 2016 2 次提交
  8. 17 5月, 2016 1 次提交
  9. 17 2月, 2016 1 次提交
    • Z
      Remove 'ecma_completion_value_t' · b2426a7a
      Zoltan Herczeg 提交于
      Remove ecma_completion_value_t, and add an extra bit to
      ecma_value_t to represent errors. From the long list of
      completion types only normal and error remained.
      
      JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
      JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
      b2426a7a
  10. 29 6月, 2015 1 次提交
  11. 14 5月, 2015 1 次提交
  12. 09 5月, 2015 1 次提交
  13. 10 4月, 2015 1 次提交
  14. 18 2月, 2015 1 次提交
  15. 14 2月, 2015 2 次提交
    • R
    • R
      Jerry is now split to several components: core, libc, plugins. · 43ea53b1
      Ruben Ayrapetyan 提交于
      The components are build independently and then are linked with main module corresponding to target platform.
      Core is supposed to be platform-independent, while libc and plugins are dependent on specific architecture / platform.
      
      The commit disables unit tests building and running during precommit.
      That is supposed to be fixed in a subsequent commit.
      
      Also, the commit disables building and running valgrind targets during precommit.
      Build is supposed to be turned on by an option that should be introduced later.
      Valgrind-checked runs are supposed to be performed in asynchronous mode.
      43ea53b1
  16. 11 2月, 2015 1 次提交
    • R
      Refinement of project structure. · 718bbe26
      Ruben Ayrapetyan 提交于
       - components renaming and moving:
         - liballocator -> mem;
         - libcoreint -> vm;
         - libecmaobjects -> ecma/base;
         - libecmaoperations -> ecma/operations;
         - libecmabuiltins -> ecma/builtins;
         - libjsparser -> parser/js;
         - libintstructs -> parser/collections;
         - liboptimizer -> parser/js;
         - libperipherals -> ../plugins/lib_device_stm;
         - libruntime -> jrt;
       - generated.h now is created as intermediate during build;
       - benchmarks -> tests/benchmarks;
       - docs -> documentation;
       - demo-applications removed (loop_demo.js -> tests/blinky.js).
      718bbe26
  17. 09 2月, 2015 1 次提交
    • R
      Reverting changes related to on-stack GC-root introduction (except of passing... · ba348831
      Ruben Ayrapetyan 提交于
      Reverting changes related to on-stack GC-root introduction (except of passing ecma_value_t by const reference).
      
      This reverts commits:
           31e1405f39d72f8b885e92256b0dc29ecab1a99,
           7cb43840b59c539d9b043990ed658ae15a9defc3,
           1ab57a4493689806035a9853b0030cc6fea65590,
           c24b511ca60587e0db12d46a7e7567c86c3649bc,
           b2caf3e8b31b4b6b16499108ee3aabdcb94f0717,
           44f9c307fb6204bfd2181b19a9d94cabddf04de9.
      ba348831
  18. 31 1月, 2015 2 次提交
  19. 28 1月, 2015 1 次提交
  20. 15 1月, 2015 2 次提交
  21. 14 1月, 2015 1 次提交
  22. 16 12月, 2014 1 次提交
  23. 24 9月, 2014 1 次提交
  24. 23 8月, 2014 1 次提交
  25. 11 8月, 2014 1 次提交
  26. 25 7月, 2014 1 次提交