Go to file
xiongluo 00ddb98686 UT enable shared full gc
Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IAAM12

Signed-off-by: xiongluo <xiongluo@huawei.com>
Change-Id: I5110adef96a07fd8926452941e6183bf86a03f0b
2024-08-04 19:12:16 +08:00
.gitee Reason:add checklist 2024-06-29 16:45:08 +08:00
compiler_service Modify syscall of fork to C library function 2024-07-27 18:53:48 +08:00
docs Remove TSManager and TSTypes 2024-04-18 19:02:45 +08:00
ecmascript UT enable shared full gc 2024-08-04 19:12:16 +08:00
etc Remove JitFort space compile time enable macro 2024-07-26 15:36:27 +08:00
script Fix timeout limit 2024-07-08 19:38:17 +08:00
test !8125 Build time optimization 2024-07-30 20:22:11 +00:00
tools/circuit_viewer fix bugs of tools of circuit viewer 2024-07-20 14:57:06 +08:00
.gitignore Add TS Aot Test Framework 2022-04-25 21:28:10 +08:00
BUILD.gn Optimize ArkJS VM build time 2024-07-30 16:26:35 +08:00
bundle.json features modify 2024-07-25 09:24:10 +08:00
CODEOWNERS Add reviwers and klooer as codeowner ets_runtime 2024-07-02 11:57:16 +03:00
hisysevent.yaml add jit event 2024-05-14 14:38:56 +08:00
js_runtime_config.gni !8378 修复大仓开启jit codesign时arm64的编译问题 2024-07-29 14:48:39 +00:00
libark_jsruntime.map Optimize ArkJS VM build time 2024-07-30 16:26:35 +08:00
LICENSE add ark js_runtime 2021-09-05 16:05:06 +08:00
OAT.xml 静态告警fix 2024-06-06 11:23:53 +08: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
REVIEWERS Update list of the reviewrs 2024-07-16 16:23:14 +03: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