Go to file
openharmony_ci c00a572bf0
!1743 Improve BuildEcmaStackTrace perf
Merge pull request !1743 from linxiang8/master
2022-07-06 13:27:04 +00: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 !1743 Improve BuildEcmaStackTrace perf 2022-07-06 13:27:04 +00:00
script fix generate stub.m failed 2022-07-06 18:58:13 +08:00
test !1722 add module resolvePath 2022-07-05 08:31:24 +00:00
.gitignore Add TS Aot Test Framework 2022-04-25 21:28:10 +08:00
BUILD.gn !1646 c++工具链适配m1平台 2022-07-05 06:09:54 +00:00
bundle.json Pause compiling fuzzy use cases 2022-05-23 16:52:23 +08:00
js_runtime_config.gni fix pending job hitrace 2022-06-29 18:44:27 +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 Modification of compilation commands 2022-06-14 10:09:20 +08:00

ARK JS Runtime Module

Introduction

ARK JS Runtime is the runtime used by JavaScript JS applications on OpenHarmony. It consists of the JS object allocator, garbage collector GC, a standard library compliant with ECMAScript specifications, ARK bytecode interpreter, inline caches that store hidden classes, and the ARK Foreign Function Interface AFFI.

For more information, see: ARK Runtime Subsystem.

ARK JS runtime architecture

Directory Structure

/ark/js_runtime
├─ ecmascript             # JS object definition
│   ├─ base               # Base helper class
│   ├─ builtins           # ECMAScript library
│   ├─ class_linker       # Bytecode pre-processing module
│   ├─ compiler           # JS compiler
│   ├─ containers         # Non-ECMAScript container library
│   ├─ cpu_profiler       # CPU Performance Analyzer
│   ├─ hprof              # Memory analysis utility class
│   ├─ ic                 # Inline cache module
│   ├─ interpreter        # JS interpreter
│   ├─ jobs               # Queue of jobs
│   ├─ js_vm              # ARK command line tool
│   ├─ mem                # Memory management module
│   ├─ napi               # External native interface
│   ├─ regexp             # Regular expression engine module
│   ├─ snapshot/mem       # Snapshot module
│   ├─ tests              # Unit test cases
│   ├─ thread             # Thread pool
│   ├─ tooling            # JS debugger
│   └─ vmstat             # Runtime status utility classes
└─ test                   # Module test cases

Constraints

  • Only the bytecode file generated by the ARK JS frontend can be run.
  • Only support ES2015 standard and strict mode ("use strict").
  • Don't support dynamically create functions via string (e.g., new Function("console.log(1))).

Build

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

Available APIs

For details, see NAPI.

Usage Guidelines

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, please see: ARK-Runtime-Usage-Guide.

Repositories Involved

ark_runtime_core

ark_js_runtime

ark_ts2abc