Go to file
openharmony_ci 8a32f45414
!3915 Support typeinfer for generic types [PART_1]
Merge pull request !3915 from huoqingyi/typeliteral
2023-04-24 07:10:00 +00:00
.gitee refactor stl container 2022-04-06 16:05:22 +08:00
docs docs modification 2023-04-23 11:38:22 +08:00
ecmascript !3915 Support typeinfer for generic types [PART_1] 2023-04-24 07:10:00 +00:00
script AOT and ASM-Interpreter share builtins stub with call and new 2022-11-28 19:15:55 +08:00
test Type infer and transfer between multiple files 2023-04-21 16:36:32 +08:00
.gitignore Add TS Aot Test Framework 2022-04-25 21:28:10 +08:00
BUILD.gn Support typeinfer for generic types [PART_1] 2023-04-23 14:19:11 +08:00
bundle.json Descriptor: Modify some absolute path in arkcompiler 2023-02-24 13:59:21 +08:00
js_runtime_config.gni Fix Log print error in intl 2023-03-24 20:34:46 +08:00
libark_jsruntime.map Re-provide Return Stack API for DFX 2023-03-09 14:06:53 +08:00
LICENSE add ark js_runtime 2021-09-05 16:05:06 +08:00
OAT.xml modify arkcompiler_ets_runtime path 2022-07-14 12:35:04 +08:00
README_zh.md modify docs 2023-03-09 10:51:47 +08:00
README.md Update ArkCompiler's docs issure 2022-11-09 18:07:59 +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