提交 1345e55c 编写于 作者: Y Yuqiang Xian

Correct the SIG compileruntime component descriptions.

Issue: https://gitee.com/openharmony/community/issues/I5GAWFSigned-off-by: NYuqiang Xian <xianyuqiang@huawei.com>
上级 1b2338fe
......@@ -25,12 +25,32 @@
![figures/compileruntime-overview-runtime-en.png](figures/compileruntime-overview-runtime-en.png)
## repositories
|Component|Description|Code repo|
| ----- | ----------- | --------- |
|ArkCompiler runtime core|Core components of ArkCompiler runtime|arkcompiler_runtime_core|
|ArkCompiler eTS runtime|eTS language runtime of ArkCompiler|arkcompiler_ets_runtime|
|ArkCompiler eTS frontend|eTS compiler frontend of ArkCompiler|arkcompiler_ets_frontend|
|ArkCompiler toolchain|Debugging and profiling tools for ArkCompiler|arkcompiler_toolchain|
|ARM assembler / code generator|ARM instruction assembler and code generator library|third_party_vixl|
|jerryscript|Lightweight JS engine with extremely low memory footprint|third_party_jerryscript|
|quickjs|Small JS engine with full compatibility of ES2020|third_party_quickjs|
|LLVM|LLVM compiler and toolchain|third_party_llvm-project|
|LLDB Machine Interface|LLDB machine interface|third_party_lldb-mi|
|MinGW-w64|A complete runtime environment for GCC and LLVM for 32 and 64 bit Windows|third_party_mingw-w64|
|musl|Standard C library|third_party_musl|
|mimalloc Memory allocator|High performance memory allocator implementation|third_party_mimalloc|
|elfio|C++ library for reading and generating ELF files|third_party_elfio|
|miniz|Data compression library that implements most zlib interfaces|third_party_miniz|
|eTS util library|eTS library providing basic utilities|commonlibrary_ets_library|
|C utils library|C library providing basic utilities|commonlibrary_c_utils|
|Utils library for lite OS|Library providing basic utilities for lite OS|commonlibrary_utils_lite|
|Memory utils|Libraries providing common system memory related operations|commonlibrary_memory|
- arkcompiler_runtime_core: https://gitee.com/openharmony/arkcompiler_runtime_core
- arkcompiler_ets_runtime: https://gitee.com/openharmony/arkcompiler_ets_runtime
- arkcompiler_ets_frontend: https://gitee.com/openharmony/arkcompiler_ets_frontend
- arkcompiler_toolchain: https://gitee.com/openharmony/arkcompiler_toolchain
- ets_utils: https://gitee.com/openharmony-sig/commonlibrary_ets_utils
- third_party_vixl: https://gitee.com/openharmony-sig/third-party-vixl
- third_party_jerryscript: https://gitee.com/openharmony/third_party_jerryscript
- third_party_quickjs: https://gitee.com/openharmony/third_party_quickjs
......@@ -40,14 +60,14 @@
- third_party_mingw-w64: https://gitee.com/openharmony/third_party_mingw-w64
- third_party_musl: https://gitee.com/openharmony/third_party_musl
- third_party_mimalloc: https://gitee.com/openharmony-sig/third_party_mimalloc
- third_party_elfio: https://gitee.com/openharmony-sig/third_party_elfio
- third_party_miniz: https://gitee.com/openharmony/third_party_miniz
- commonlibrary_ets_utils: https://gitee.com/openharmony-sig/commonlibrary_ets_utils
- commonlibrary_c_utils: https://gitee.com/openharmony/commonlibrary_c_utils
- commonlibrary_utils_lite: https://gitee.com/openharmony/commonlibrary_utils_lite
- utils_memory: https://gitee.com/openharmony/utils_memory
- third_party_miniz: https://gitee.com/openharmony/third_party_miniz
## SIG Members
### Leader
......
......@@ -26,32 +26,31 @@
## 代码仓
|部件名称|部件功能描述|部件仓名称|
| ----- | ----------- | --------- |
|runtime_core|方舟运行时核心库|arkcompiler_runtime_core|
|ets_runtime|方舟eTS(兼容JS/TS)运行时|arkcompiler_ets_runtime|
|ets_frontend|方舟eTS(兼容JS/TS)前端编译器,解析eTS生成abc文件供方舟运行时执行|arkcompiler_ets_frontend|
|toolchain|方舟运行时调试调优工具链|arkcompiler_toolchain|
|ets_utils|eTS语言函数库;当前主要由 js_sys_module js_util_module js_worker_module js_api_module 四个部分组成|commonlibrary_ets_library|
|c_utils|C工具函数库|commonlibrary_c_utils|
|utils_lite|轻量级系统所使用的工具函数库|commonlibrary_utils_lite|
|vixl|ARM汇编器,提供生成ARM汇编的C接口|third_party_vixl|
|方舟运行时公共库|方舟运行时公共库|arkcompiler_runtime_core|
|方舟eTS运行时|方舟eTS(兼容JS/TS)运行时|arkcompiler_ets_runtime|
|方舟eTS编译器|方舟eTS(兼容JS/TS)前端编译器,解析eTS生成abc文件供方舟运行时执行|arkcompiler_ets_frontend|
|方舟工具栏|方舟运行时调试调优工具链|arkcompiler_toolchain|
|ARM汇编器|ARM汇编器,提供生成ARM汇编的C接口|third_party_vixl|
|jerryscript|百K级别超轻量级JS引擎,低内存消耗|third_party_jerryscript|
|quickjs|QuickJS是一个小型并且可嵌入的Javascript引擎,支持ES2020|third_party_quickjs|
|llvm-project|C/C++编译器,包含libcxx,lldb,crt等很多组件|third_party_llvm-project|
|lldb-mi|Lldb的machine interface,方便IDE使用lldb功能|third_party_lldb-mi|
|mingw-w64|支持编译windows 64平台项目的运行时套件|third_party_mingw-w64|
|LLVM|C/C++编译器,包含libcxx,lldb,crt等很多组件|third_party_llvm-project|
|LLDB MI|Lldb的machine interface,方便IDE使用lldb功能|third_party_lldb-mi|
|MinGW-w64|GCC,LLVM等编译器的windows 32/64平台运行环境|third_party_mingw-w64|
|musl|标准C库|third_party_musl|
|mimalloc|性能优化的内存分配器|third_party_mimalloc|
|elfio|Elf文件操作工具库|third_party_elfio|
|memory|内存分析相关工具库|commonlibrary_memory|
|miniz|一种无损高效压缩算法库,支持zlib接口|third_party_miniz|
|eTS工具库|eTS语言函数库;当前主要由 js_sys_module js_util_module js_worker_module js_api_module 四个部分组成|commonlibrary_ets_library|
|C工具库|C工具函数库|commonlibrary_c_utils|
|轻量级系统工具库|轻量级系统所使用的工具函数库|commonlibrary_utils_lite|
|内存工具库|内存使用和分析相关工具库|commonlibrary_memory|
- 代码仓地址:
- arkcompiler_runtime_core: https://gitee.com/openharmony/arkcompiler_runtime_core
- arkcompiler_ets_runtime: https://gitee.com/openharmony/arkcompiler_ets_runtime
- arkcompiler_ets_frontend: https://gitee.com/openharmony/arkcompiler_ets_frontend
- arkcompiler_toolchain: https://gitee.com/openharmony/arkcompiler_toolchain
- ets_utils: https://gitee.com/openharmony-sig/commonlibrary_ets_utils
- third_party_vixl: https://gitee.com/openharmony-sig/third-party-vixl
- third_party_jerryscript: https://gitee.com/openharmony/third_party_jerryscript
- third_party_quickjs: https://gitee.com/openharmony/third_party_quickjs
......@@ -61,14 +60,14 @@
- third_party_mingw-w64: https://gitee.com/openharmony/third_party_mingw-w64
- third_party_musl: https://gitee.com/openharmony/third_party_musl
- third_party_mimalloc: https://gitee.com/openharmony-sig/third_party_mimalloc
- third_party_elfio: https://gitee.com/openharmony-sig/third_party_elfio
- third_party_miniz: https://gitee.com/openharmony/third_party_miniz
- commonlibrary_ets_utils: https://gitee.com/openharmony-sig/commonlibrary_ets_utils
- commonlibrary_c_utils: https://gitee.com/openharmony/commonlibrary_c_utils
- commonlibrary_utils_lite: https://gitee.com/openharmony/commonlibrary_utils_lite
- utils_memory: https://gitee.com/openharmony/utils_memory
- third_party_miniz: https://gitee.com/openharmony/third_party_miniz
## SIG组成员
### Leader
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册