Go to file
openharmony_ci 5b35ff1e51
!2551 Fix codecheck for macros in GraphChecker
Merge pull request !2551 from Anna Antipina/fix_codecheck_macros
2024-10-06 12:56:04 +00:00
.gitee !2275 Detect abc version changes 2024-08-19 09:42:23 +00:00
abc2program !2489 Abc2program fixes 2024-10-05 16:48:12 +00:00
arkplatform Add vm param for jsnapi 2024-07-09 11:41:19 +08:00
assembler Support add/delete annotation elements 2024-09-20 20:39:58 +08:00
bytecode_optimizer Fix codecheck 0827 2024-08-28 10:23:34 +08:00
cmake Update runtime_core code 2022-07-17 10:20:32 +08:00
compiler Add unittests for compiler and libpandabase 2024-09-09 09:26:04 +08:00
disassembler Fix ark_disasm crashing 2024-09-23 09:51:23 +08:00
docs Modify bytecode version 2024-09-15 14:11:55 +08:00
gn disable backward cfi for arkcompiler 2023-05-08 22:22:11 +08:00
isa !2491 Fixed properties for insts with two inline cache slots 2024-09-26 11:17:06 +00:00
ldscripts Update runtime_core code 2022-07-17 10:20:32 +08:00
libark_defect_scan_aux Synchronize the blue zone and yellow zone 2024-09-09 09:05:35 +08:00
libpandabase Fix Timer does not initialize bug 2024-09-26 19:27:44 +08:00
libpandafile Fix ark_disasm crashing 2024-09-23 09:51:23 +08:00
libziparchive Fix arkui-x compilation 2024-08-14 14:58:08 +08:00
panda Refactor the oversized functions of the non-test file 2024-05-30 11:05:47 +08:00
pandastdlib Update runtime_core code 2022-07-17 10:20:32 +08:00
platforms Fix code differences 2024-07-26 18:30:52 +08:00
plugins/ecmascript/tests 5.0 component improvement 2024-03-30 20:33:23 +08:00
scripts Update runtime_core code 2022-07-17 10:20:32 +08:00
static_core !2551 Fix codecheck for macros in GraphChecker 2024-10-06 12:56:04 +00:00
templates Remove unused code 2022-11-28 21:08:24 +08:00
tests !2305 Add size and datapac for securemem interface 2024-08-24 16:06:26 +00:00
verifier Enable PAC in Verifier SO 2024-09-13 16:40:29 +08:00
.clang-format copyright update 2022-03-25 13:17:51 +03:00
.clang-tidy copyright update 2022-03-25 13:17:51 +03:00
.gitattributes Rename line_separators.ets to .sts 2024-08-07 01:33:17 +03:00
.gitignore Update REVIEWERS 2024-08-13 11:22:37 +03:00
.standalone_gn copyright update 2022-03-25 13:17:51 +03:00
ark_config.gni Enable PAC in Verifier SO 2024-09-13 16:40:29 +08:00
ark_root.gni adapt SDK on OpenHarmony 2024-08-27 03:55:58 +00:00
AUTHORS Update runtime_core code 2022-07-17 10:20:32 +08:00
BUILD.gn Enable PAC in Verifier SO 2024-09-13 16:40:29 +08:00
bundle.json Fix ark_disasm crashing 2024-09-23 09:51:23 +08:00
CMakeLists.txt Update runtime_core code 2022-07-17 10:20:32 +08:00
codecheck_ignore.json Add codestyle checker ignores 2024-08-30 10:19:03 +03:00
CODEOWNERS Display codeowners for hidden folders and files 2024-08-15 12:42:24 +03:00
LICENSE Fix codecheck warnings 2022-08-01 10:18:19 +08:00
OAT.xml Support corss-file branch elimination 2024-04-29 20:49:14 +08:00
README_zh.md Update runtime core README docs 2024-05-14 20:20:58 +08:00
README.md Update runtime core README docs 2024-05-14 20:20:58 +08:00
static_vm_config.gni Abckit support in compiler 2024-09-27 13:19:21 +03:00

Runtime Core

Introduction

As a common module of language runtime in OpenHarmony, ArkCompiler Runtime Core consists of language-independent basic runtime libraries, including ArkCompiler File, Tooling, Base and ISA. ArkCompiler File provides bytecodes and information required for executing bytecodes. Tooling supports runtime debugger. Base is responsible for implementing platform related utilities. ISA provides common instruction set architecture that is language-independent.

Figure 1 ArkCompiler Runtime Core architecture diagram

ArkCompiler Runtime Core Arch

For more information, see: ARK Runtime Subsystem.

Directory Structure

├── assembler               # Assembler that converts an ARK bytecode file in text format (*.pa) into a bytecode file in binary format (*.abc). For details about the format, see docs/assembly_format.md and docs/file_format.md.
├── bytecode_optimizer      # Bytecode optimizer, further optimize the ARK bytecode to generate optimized bytecode file in binary format (*.abc).
├── cmake                   # Cmake script that contains the toolchain files and common cmake functions used to define the build and test targets.
├── compiler                # Compiler including IR(intermediate representation) and passes for bytecode optimization. See docs/ir_format.md.
├── cross_values            # Cross values generator.
├── disassembler            # Disassembler that converts an ARK bytecode file in binary format (*.abc) into an ARK bytecode file in text format (*.pa).
├── docs                    # Language frontend, ARK file format, and runtime design documents.
├── dprof                   # Data used to collect the profiling data for ARK runtime.
├── gn                      # GN templates and configuration files.
├── irtoc                   # IR to code tool, aims to compile a manually created IR to the target code.
├── isa                     # Bytecode ISA description file YAML, Ruby scripts and templates.
├── ldscripts               # Linker scripts used to place ELF sections larger than 4 GB in a non-PIE executable file.
├── libark_defect_scan_aux  # Vulnerability defect scanning tool for ARK bytecode file in binary format (*.abc).
├── libpandabase            # Basic ArkCompiler runtime library, including logs, synchronization primitives, and common data structure.
├── libpandafile            # Source code repository of ARK bytecode files (*.abc) in binary format.
├── libziparchive           # Provides APIs for reading and using zip files implemented by zlib.
├── panda                   # CLI tool used to execute ARK bytecode files in binary format(*.abc).
├── pandastdlib             # Standard libraries wrote by the ARK assembler.
├── platforms               # Platform related utilities.
├── plugins                 # Language-dependent plugins.
├── quickener               # Quickener tool.
├── runtime                 # ARK runtime command module.
├── scripts                 # CI Scripts.
├── templates               # Ruby templates and scripts used to process command line options, loggers, error messages, and events.
├── tests                   # Test cases.
└── verification            # Bytecode verifier. See docs/bc_verification.

Building

Linux platform

$ ./build.sh --product-name rk3568 --build-target arkcompiler/runtime_core:ark_host_linux_tools_packages

Windows platform

$ ./build.sh --product-name rk3568 --build-target arkcompiler/runtime_core:ark_host_windows_tools_packages

Mac platform

$ ./build.sh --product-name rk3568 --build-target arkcompiler/runtime_core:ark_host_mac_tools_packages

Guidelines

Usage Guidelines

Disassembler ark_disasm

The ark_disasm disassembler converts binary ARK bytecodes into readable text ARK bytecodes.

Command:

ark_disasm [Options] Input file Output file

Supported options:

Option Description
--debug Enable the function for printing debug information.
--debug-file Specify the path of the debug information output file. The default is std::cout.
--help Display help information.
--quiet Enable all of the "--skip-*" flags.
--skip-string-literals Replace string literals with their respective id's, thus shortening emitted code size.
--verbose Enable log printing.
--version Print version info, including file format version and minimum supported file format version.

Input file: ARK bytecodes in binary format

Output file: ARK bytecodes in text format

For more information, please see: ARK Runtime Usage Guide.

Repositories Involved

arkcompiler_runtime_core

arkcompiler_ets_runtime

arkcompiler_ets_frontend