Go to file
wusongqing 095d0f72cb updated reamde (EN)
Signed-off-by: wusongqing <wusongqing@huawei.com>
2022-07-08 14:06:58 +08:00
.gitee refactor stl container 2022-04-06 16:05:22 +08:00
build Adapt to new version and roll back ark independent compilation 2022-06-20 18:28:21 +08:00
docs Descriptor: delete some internal unused code 2022-06-17 23:03:42 +08:00
ecmascript Descriptor: decrease compiler time 2022-07-07 20:20:23 +08:00
script fix generate stub.m failed 2022-07-06 18:58:13 +08:00
test Descriptor: decrease compiler time 2022-07-07 20:20:23 +08:00
.gitignore Add TS Aot Test Framework 2022-04-25 21:28:10 +08:00
BUILD.gn Descriptor: ark hilog refactor 2022-07-06 22:55:49 +08:00
bundle.json Pause compiling fuzzy use cases 2022-05-23 16:52:23 +08:00
js_runtime_config.gni Descriptor: ark hilog refactor 2022-07-06 22:55:49 +08:00
LICENSE add ark js_runtime 2021-09-05 16:05:06 +08:00
OAT.xml Added a filter in oat.xml 2022-04-15 16:21:39 +08:00
README_zh.md Modification of compilation commands 2022-06-14 10:09:20 +08:00
README.md updated reamde (EN) 2022-07-08 14:06:58 +08:00

ArkCompiler JS Runtime

Introduction

ArkCompiler JS Runtime is the default JS runtime on OpenHarmony. It supports ECMAScript libraries and efficient container libraries. It also provides a set of native APIs for C++ and JS interaction and a variety of garbage collectors that features high performance.

For more information, see ArkCompiler JS Runtime.

ArkCompiler JS Runtime architecture

Directory Structure

/ark/js_runtime
├─ ecmascript             # Implementation of ArkCompiler JS Runtime, including the ECMAScript library, interpreter, and memory management
│   ├─ base               # Base helper class
│   ├─ builtins           # ECMAScript libraries
│   ├─ compiler           # JS compiler
│   ├─ containers         # Non-ECMAScript containers
│   ├─ dfx                # Memory and profiling tool
│   ├─ ic                 # Inline cache module
│   ├─ interpreter        # JS interpreter
│   ├─ jobs               # Queue of jobs
│   ├─ js_vm              # Command line tool
│   ├─ jspandafile        # abc file management module
│   ├─ mem                # Memory management module
│   ├─ module             # ECMAScript module
│   ├─ napi               # C++ API module
│   ├─ taskpool           # Task pool
│   ├─ regexp             # Regular expression engine module
│   ├─ snapshot           # Snapshot module
│   ├─ stubs              # Runtime stub functions
│   ├─ tests              # Unit test cases
│   ├─ tooling            # JS debugger
│   ├─ trampoline         # Trampoline function
│   ├─ ts_type            # TS type management module
└─ test                   # Module test cases    

Constraints

  • Only the ArkCompiler bytecode files generated by ts2abc, which is the ArkCompiler JS frontend toolchain, can be run.
  • Only the ES2015 standard and strict modes are supported.
  • Functions cannot be dynamically created using strings, such as new Function("console.log(1);")).

Building

$./build.sh --product-name hispark_taurus_standard --build-target ark_js_host_linux_tools_packages

Available APIs

See NAPI.

Usage

For details about how to generate JS bytecodes, see Using the Toolchain.

To run bytecodes:

LD_LIBRARY_PATH=out/hispark_taurus/clang_x64/ark/ark:out/hispark_taurus/clang_x64/ark/ark_js_runtime:out/hispark_taurus/clang_x64/thirdparty/icu:prebuilts/clang/ohos/linux-x86_64/llvm/lib ./out/hispark_taurus/clang_x64/ark/ark_js_runtime/ark_js_vm helloworld.abc

For more information, see ARK Runtime Usage Guide.

Repositories Involved

ark_runtime_core

ark_js_runtime

ark_ts2abc