Go to file
qijinquan 537e001e5a remove line 0 ~ line 1899 of 'test/quickfix/multiconstpool_multifunc/base.js'
Signed-off-by: qijinquan <qijinquan@kaihong.com>
2024-05-08 17:51:43 +08:00
.gitee add gitee template 2024-04-28 00:51:45 +08:00
compiler_service add stop ces event 2024-05-06 18:19:24 +08:00
docs Remove TSManager and TSTypes 2024-04-18 19:02:45 +08:00
ecmascript !7279 Adding debug log for Serialization/Deserialization timeout check 2024-05-08 09:28:30 +00:00
etc enable jit js crash escape 2024-04-22 08:36:26 +04:00
script Added DateNow builtin 2024-04-20 12:30:39 +08:00
test remove line 0 ~ line 1899 of 'test/quickfix/multiconstpool_multifunc/base.js' 2024-05-08 17:51:43 +08:00
tools/circuit_viewer modify code alarms 2024-04-19 14:53:36 +08:00
.gitignore Add TS Aot Test Framework 2022-04-25 21:28:10 +08:00
BUILD.gn !7023 Support tlab for shared old space allocation 2024-04-25 11:52:02 +00:00
bundle.json support ffrt update id 2024-05-06 19:42:19 +08:00
hisysevent.yaml add aot hisysevent 2024-04-22 09:35:17 +08:00
js_runtime_config.gni fix support ffrt v1 2024-05-07 00:37:48 +08:00
libark_jsruntime.map add sa service 2024-05-05 12:42:14 +08:00
LICENSE add ark js_runtime 2021-09-05 16:05:06 +08:00
OAT.xml %TypedArray%.prototype.at 2023-07-03 23:23:32 -07:00
README_zh.md Update Dead-link in docs 2023-11-01 11:24:56 +08:00
README.md Modify ets_runtime readme.md 2023-05-09 15:05:35 +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

/arkcompiler/ets_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
│   ├─ debugger           # 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 ES2021 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/arkcompiler/ets_runtime:out/hispark_taurus/clang_x64/thirdparty/icu:prebuilts/clang/ohos/linux-x86_64/llvm/lib ./out/hispark_taurus/clang_x64/arkcompiler/ets_runtime/ark_js_vm helloworld.abc

For more information, see [ARK Runtime Usage Guide](https://gitee.com/openharmony/arkcompiler_ets_runtime/blob/master/ docs/ARK-Runtime-Usage-Guide.md).

Repositories Involved

arkcompiler_runtime_core

arkcompiler_ets_runtime

arkcompiler_ets_frontend