Go to file
getingke 1d1a9cffe1 fixed for gn format
Signed-off-by: getingke <getingke@huawei.com>
Change-Id: I29c7ce9fa6808bab29ee8e23c2207315d01b892b
Signed-off-by: getingke <getingke@huawei.com>
2021-09-23 19:02:18 +08:00
docs modify information 2021-09-18 15:56:31 +08:00
ecmascript fixed for gn format 2021-09-23 19:02:18 +08:00
test support build single testcase 2021-09-22 16:52:51 +08:00
.gitignore add ark js_runtime 2021-09-05 16:05:06 +08:00
BUILD.gn fixed for gn format 2021-09-23 11:26:42 +08:00
js_runtime_config.gni Add llvm prebuilts for js stub optimizer 2021-09-18 17:25:09 +08:00
LICENSE add ark js_runtime 2021-09-05 16:05:06 +08:00
OAT.xml add ark js_runtime 2021-09-05 16:05:06 +08:00
ohos.build modify gn file 2021-09-17 16:30:56 +08:00
README_zh.md update README_zh.md. 2021-09-19 14:39:00 +00:00
README.md fix README 2021-09-19 22:05:41 +08:00
run_test262.sh modify run test262 thread num 2021-09-22 19:19:51 +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 infomation, 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
│   ├─ 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 Hi3516DV300 --build-target ark_js_runtime

Available APIs

For details, see NAPI.

Usage Guidelines

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

To run bytecodes:

$ cd out/release
$ export LD_LIBRARY_PATH=clang_x64/ark/ark_js_runtime:clang_x64/ark/ark:clang_x64/global/i18n:../../prebuilts/clang/ohos/linux-x86_64/llvm/lib/
$ ./clang_x64/ark/ark_js_runtime/ark_js_vm helloworld.abc

For more infomation, please see: ARK-Runtime-Usage-Guide.

Repositories Involved

ark_runtime_core

ark_js_runtime

ark_ts2abc