| add self check Issue:https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/11979 Signed-off-by: yangliping01 <yangliping30@h-partners.com> | 8 个月前 |
| !13521 merge opt_dateview into master Optimize Dataview get functions Created-by: weihe99 Commit-by: hewei Merged-by: openharmony_ci Description: ### 关联的Issue [[新需求]: Optimize dataview get functions](https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/11858) ### 修改原因(目的、解决的问题等,例如:修复xx场景崩溃问题) 优化 dataview 的 get 接口 ### 修改描述(做了什么,变更了什么,例如:xx函数入口增加判空) 实现 dataview get 接口的 IR 化 ### 自测试项(测试结果截图,直接贴到每一个测试项底下) #### jit-workload 本地执行(compiler/jit/isa/stub/ic/对象布局等修改必须执行) - [x] 已通过 - [ ] 不涉及,无需验证 #### interpreter-js_perf 性能测试(性能优化/性能敏感场景:IR化/ic/hclass/对象布局/isa/builtins等修改必须执行) - [x] 已验证不劣化 - [ ] 不涉及,无需验证 #### aot-js_perf 性能测试(性能优化/性能敏感场景:IR化/ic/hclass/对象布局/isa/builtins等修改必须执行) - [x] 已验证不劣化 - [ ] 不涉及,无需验证 #### interpreter-workload性能测试(性能优化/性能敏感场景:IR化/ic/hclass/对象布局/isa/builtins等修改必须执行) - [x] 已验证不劣化 - [ ] 不涉及,无需验证 #### aot-workload性能测试(性能优化/性能敏感场景:IR化/compiler/aot/isa/stub/ic/对象布局等修改必须执行) - [x] 已验证不劣化 - [ ] 不涉及,无需验证 #### 非StableArray不能采用ElementKind读取元素(修改解释器相关IR代码需要自检) - [x] 已自检 - [ ] 不涉及,无需验证 #### 在IR时添加fastpath时,需要检查是否有分支会改变非字典序模式或者修改数组长度,此时应该走slowpath(修改解释器相关IR代码需要自检) - [x] 已自检 - [ ] 不涉及,无需验证 #### IR化后的逻辑需要与c++实现一致,不一致的地方需要有分支用例看护(修改解释器相关IR代码需要自检) - [x] 已自检 - [ ] 不涉及,无需验证 #### c++代码中检测或抛出异常的地方,IR需要同样实现(修改解释器相关IR代码需要自检) - [x] 已自检 - [ ] 不涉及,无需验证 #### IR中使用默认入参是HeapObject对象的接口时,需要在上下文中保证了参数的正确性(修改解释器相关IR代码需要自检) - [x] 已自检 - [ ] 不涉及,无需验证 #### 修改c解释器,需要同时检查汇编解释器与AOT是否需要修改 - [ ] 已自检 - [x] 不涉及,无需验证 ### 是否已执行L0用例 - [x] 已验证 - [ ] 不涉及。如不涉及,请写明理由 See merge request: openharmony/arkcompiler_ets_runtime!13521 | 8 个月前 |
| !13629 merge 1128 into master Independent built adaptation Created-by: Ascnbio Commit-by: lijunru Merged-by: openharmony_ci Description: ### 关联的Issue [move ark_config from public_configs to configs](https://gitcode.com/openharmony/arkcompiler_runtime_core/issues/8500) ### 修改原因(目的、解决的问题等,例如:修复xx场景崩溃问题) 适配部件独立编译,runtime_core仓ark_config中定义的cflags通过public_configs传递到其他部件,影响其他部件编译,需要整改 ### 修改描述(做了什么,变更了什么,例如:xx函数入口增加判空) 增加"-Wno-invalid-offsetof"编译选项,该选项继承至ark_config,ark_config整改后,需要自行配置 ### 自测试项(测试结果截图,直接贴到每一个测试项底下) #### jit-workload 本地执行(compiler/jit/isa/stub/ic/对象布局等修改必须执行) - [ ] 已通过 - [x] 不涉及,无需验证 #### interpreter-js_perf 性能测试(性能优化/性能敏感场景:IR化/ic/hclass/对象布局/isa/builtins等修改必须执行) - [ ] 已验证不劣化 - [x] 不涉及,无需验证 #### aot-js_perf 性能测试(性能优化/性能敏感场景:IR化/ic/hclass/对象布局/isa/builtins等修改必须执行) - [ ] 已验证不劣化 - [x] 不涉及,无需验证 #### interpreter-workload性能测试(性能优化/性能敏感场景:IR化/ic/hclass/对象布局/isa/builtins等修改必须执行) - [ ] 已验证不劣化 - [x] 不涉及,无需验证 #### aot-workload性能测试(性能优化/性能敏感场景:IR化/compiler/aot/isa/stub/ic/对象布局等修改必须执行) - [ ] 已验证不劣化 - [x] 不涉及,无需验证 #### 非StableArray不能采用ElementKind读取元素(修改解释器相关IR代码需要自检) - [ ] 已自检 - [x] 不涉及,无需验证 #### 在IR时添加fastpath时,需要检查是否有分支会改变非字典序模式或者修改数组长度,此时应该走slowpath(修改解释器相关IR代码需要自检) - [ ] 已自检 - [x] 不涉及,无需验证 #### IR化后的逻辑需要与c++实现一致,不一致的地方需要有分支用例看护(修改解释器相关IR代码需要自检) - [ ] 已自检 - [x] 不涉及,无需验证 #### c++代码中检测或抛出异常的地方,IR需要同样实现(修改解释器相关IR代码需要自检) - [ ] 已自检 - [x] 不涉及,无需验证 #### IR中使用默认入参是HeapObject对象的接口时,需要在上下文中保证了参数的正确性(修改解释器相关IR代码需要自检) - [ ] 已自检 - [x] 不涉及,无需验证 #### 修改c解释器,需要同时检查汇编解释器与AOT是否需要修改 - [ ] 已自检 - [x] 不涉及,无需验证 ### 是否已执行L0用例 - [ ] 已验证 - [x] 不涉及。如不涉及,请写明理由 Change-Id: I1ec3fb592f3336761a74d4ac643a0fea1373ac30 See merge request: openharmony/arkcompiler_ets_runtime!13629 | 8 个月前 |
| | 1 年前 |
| [Bug]: 正则多行匹配时匹配\r作为结尾失败 Issue: https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/12003 Signed-off-by: hecunmao <hecunmao@huawei.com> Change-Id: I3417bb9eb35a6d33463bc4d9ad534aaff9087b39 | 8 个月前 |
| Support open moduleLogger don't have to reboot Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IC24QU?from=project-issue Signed-off-by: yaochaonan <yaochaonan@huawei.com> Change-Id: Ifeba93727a4f46207e70b31830789a8e6c579e2b | 1 年前 |
| !12063 Extend stub timeout Merge pull request !12063 from yangliping/day66 | 1 年前 |
| [Bug]: 正则多行匹配时匹配\r作为结尾失败 Issue: https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/12003 Signed-off-by: hecunmao <hecunmao@huawei.com> Change-Id: I3417bb9eb35a6d33463bc4d9ad534aaff9087b39 | 8 个月前 |
| | 1 年前 |
| [bufix]: fix typedArray map Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IC7B8Q Signed-off-by: luobinghao <luobinghao@huawei.com> Change-Id: I685d2143cc1207067c3eaf9e2c9a7ee691901ddc | 1 年前 |
| Add UT and Fix Review Add ut and fix some comments Issue: https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/11996 Signed-off-by: lukai25 <lukai25@huawei.com> Change-Id: Ifdf1213309d78ea62be79c4e5f9a16777350db5b | 8 个月前 |
| Display codeowners for hidden folders and files Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/IAKBP2 Signed-off-by: Rokashevich Svetlana <rokashevich.svetlana1@huawei-partners.com> | 2 年前 |
| add ark js_runtime Signed-off-by: wanyanglan <wanyanglan1@huawei.com> Change-Id: Iac7851492f10c0ef1303c621febb65e5fdd22e41 | 4 年前 |
| add ap parse code Signed-off-by: yanpeng <yanpeng51@h-partners.com> Change-Id: I9c0c2b23e0bd926efc3350d117d351a7c9732fd7 Signed-off-by: yanpeng <yanpeng51@h-partners.com> | 2 年前 |
| 修改中英文md文档不一致 Issue: https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/11990 Signed-off-by: 杨云飞 <yangyunfei19@h-partners.com> | 8 个月前 |
| 修改中英文md文档不一致 Issue: https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/11990 Signed-off-by: 杨云飞 <yangyunfei19@h-partners.com> | 8 个月前 |
| update reviewers Issue: https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/12006 Signed-off-by: huangshengda <huangshengda2@huawei.com> Change-Id: I0daf7c7bca20efba110858855e6e9d469daaef55 | 8 个月前 |
| 修改version版本 Issue: https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/11662 Signed-off-by: luoweibin <luoweibin8@h-partners.com> | 11 个月前 |
| Builtins日志维测 Issue:https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/ICVKTX Signed-off-by: hecunmao <hecunmao@huawei.com> Change-Id: I16e77d0ef820af04fa0804c17dc2e0e064b3a088 | 11 个月前 |
| support cms gc Issue:https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/11894 Signed-off-by: chentianyu <chentianyu31@huawei.com> Change-Id: Idf119f456e8c6c1490f985c81516b9daff389669 | 9 个月前 |
| Optimize inline strategy add call frequency limit for jit inline add inline depth limit for jit inline add checksafepoint for inline Issue: https://gitcode.com/openharmony/arkcompiler_ets_runtime/issues/11893 Change-Id: I5a5bfa87160bf34dbae0d8033420098dbd572dd5 Signed-off-by: xing-yunhao-huawei <xingyunhao2@huawei.com> | 9 个月前 |