| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
[compiler-rt] NFC: Fix trivial typo Reviewed By: xgupta Differential Revision: https://reviews.llvm.org/D77457 | 4 年前 | |
[LoongArch] Backport LoongArch code from upstream community LLVM16 Issue:https://gitee.com/open_harmony/dashboard?issue_id=I9Q0LP Signed-off-by: caiwei <wei.cai@archermind.com> | 2 年前 | |
[LoongArch] Backport LoongArch code from upstream community LLVM16 Issue:https://gitee.com/open_harmony/dashboard?issue_id=I9Q0LP Signed-off-by: caiwei <wei.cai@archermind.com> | 2 年前 | |
[OHOS][scudo][gwp_asan][CFI][test] Fix compiler-rt testing for OHOS In particular: - disable emulated tls in scudo and gwp_asan; - don't build gwp_asan unit tests under check-gwp_asan target; - make gwp_asan tls slot getter weak, so that it links without errors; - provide gwp_asan backtrace functions from musl; - address some musl-related test limitations; - enable CFI tests on OHOS. Issue: https://gitee.com/openharmony/third_party_llvm-project/issues/IAQMY0 Signed-off-by: Nikolai Kholiavin <kholiavin.nikolai@huawei-partners.com> | 1 年前 | |
[compiler-rt][OHOS] Update crt test Run dlclose_ubsan_standalone test for OHOS only Signed-off-by: Lyupa Anastasia <lyupa.anastasia@huawei.com> | 3 年前 | |
Strengthen -Wint-conversion to default to an error Clang has traditionally allowed C programs to implicitly convert integers to pointers and pointers to integers, despite it not being valid to do so except under special circumstances (like converting the integer 0, which is the null pointer constant, to a pointer). In C89, this would result in undefined behavior per 3.3.4, and in C99 this rule was strengthened to be a constraint violation instead. Constraint violations are most often handled as an error. This patch changes the warning to default to an error in all C modes (it is already an error in C++). This gives us better security posture by calling out potential programmer mistakes in code but still allows users who need this behavior to use -Wno-error=int-conversion to retain the warning behavior, or -Wno-int-conversion to silence the diagnostic entirely. Differential Revision: https://reviews.llvm.org/D129881 | 3 年前 | |
[hwasan] enbale hwasan stack backtrace in ffrt stack Enable hwasan stack backtrace in ffrt stack. Signed-off-by: ziper <louzhipeng@huawei.com> Change-Id: I1693fe3f508c3c3f2436b9059081d5efaa35e03c Signed-off-by: ziper <louzhipeng@huawei.com> | 2 个月前 | |
[libFuzzer] Extend the fuzz target intarface to allow -1 return value. With this change, fuzz targets may choose to return -1 to indicate that the input should not be added to the corpus regardless of the coverage it generated. Reviewed By: morehouse Differential Revision: https://reviews.llvm.org/D128749 | 3 年前 | |
[GWP_ASAN] Enhance GWP_ASAN UT Change-Id: I3f2c7bfe4cf6869b482d27ff257293443a558277 Signed-off-by: rePeek <wangsenyin@huawei.com> | 7 个月前 | |
!948 merge bugfix_ringbuffer into master [HWASAN]bugfix for hwasan ringbufferlink Created-by: ziper Commit-by: ziper Merged-by: openharmony_ci Description: ### 一、内容说明(相关的Issue) 因为ringbuffer 结构改为了ringbufferLink,导致hwasan_dev_note_heap_rb_distance含义变更,现修改和之前保持一致。 ### 二、建议测试周期和提测地址 建议测试完成时间:xxxx.xx.xx 投产上线时间:xxxx.xx.xx 提测地址:CI环境/压测环境 测试账号: ### 三、变更内容 * 3.1 关联PR列表 * 3.2 数据库和部署说明 1. 常规更新 2. 重启unicorn 3. 重启sidekiq 4. 迁移任务:是否有迁移任务,没有写 "无" 5. rake脚本: bundle exec xxx RAILS_ENV = production;没有写 "无" * 3.4 其他技术优化内容(做了什么,变更了什么) - 重构了 xxxx 代码 - xxxx 算法优化 * 3.5 废弃通知(什么字段、方法弃用?) * 3.6 后向不兼容变更(是否有无法向后兼容的变更?) ### 四、研发自测点(自测哪些?冒烟用例全部自测?) 自测测试结论: ### 五、测试关注点(需要提醒QA重点关注的、可能会忽略的地方) 检查点: | 需求名称 | 是否影响xx公共模块 | 是否需要xx功能 | 需求升级是否依赖其他子产品 | |------|------------|----------|---------------| | xxx | 否 | 需要 | 不需要 | | | | | | 接口测试: 性能测试: 并发测试: 其他: See merge request: openharmony/third_party_llvm-project!948 | 1 个月前 | |
[compiler-rt] Rename lit.*.cfg.* -> lit.*.cfg.py.* These lit configuration files are really Python source code. Using the .py file extension helps editors and tools use the correct language mode. LLVM and Clang already use this convention for lit configuration, this change simply applies it to all of compiler-rt. Reviewers: vitalybuka, dberris Differential Revision: https://reviews.llvm.org/D63658 llvm-svn: 364591 | 6 年前 | |
[LoongArch] Backport LoongArch code from upstream community LLVM16 Issue:https://gitee.com/open_harmony/dashboard?issue_id=I9Q0LP Signed-off-by: caiwei <wei.cai@archermind.com> | 2 年前 | |
[asan][test] Additional test requiring weak symbol for dyld64. Extension of D127929 rdar://80997227 Differential Revision: https://reviews.llvm.org/D130499 | 3 年前 | |
[sanitizer] Deduplicate dn_expand test Reviewed By: kstoimenov Differential Revision: https://reviews.llvm.org/D129246 | 3 年前 | |
[ORC][ORC_RT][AArch64] Implement TLS descriptor in ELFNixPlatform. Implements TLS descriptor relocations in JITLink ELF/AARCH64 backend and support the relevant runtime functions in ELFNixPlatform. Unlike traditional TLS model, TLS descriptor model requires linker to return the "offset" from thread pointer via relocaiton not the actual pointer to thread local variable. There is no public libc api for adding new allocations to TLS block dynamically which thread pointer points to. So, we support this by taking delta from thread base pointer to the actual thread local variable in our allocated section. Reviewed By: lhames Differential Revision: https://reviews.llvm.org/D128601 | 3 年前 | |
[InstrProf] Allow CSIRPGO function entry coverage The flag -fcs-profile-generate for enabling CSIRPGO moves the pass pgo-instrumentation after inlining. Function entry coverage works fine with this change, so remove the assert. I had originally left this assert in because I had not tested this at the time. Reviewed By: davidxl, MaskRay Differential Revision: https://reviews.llvm.org/D129407 | 3 年前 | |
Speculatively fix build bot This should fix the issue found by: https://lab.llvm.org/buildbot/#/builders/37/builds/12606 | 4 年前 | |
Add RingBufferLink Signed-off-by: hq <hq87201986@163.com> | 3 个月前 | |
[OHOS][scudo][gwp_asan][CFI][test] Fix compiler-rt testing for OHOS In particular: - disable emulated tls in scudo and gwp_asan; - don't build gwp_asan unit tests under check-gwp_asan target; - make gwp_asan tls slot getter weak, so that it links without errors; - provide gwp_asan backtrace functions from musl; - address some musl-related test limitations; - enable CFI tests on OHOS. Issue: https://gitee.com/openharmony/third_party_llvm-project/issues/IAQMY0 Signed-off-by: Nikolai Kholiavin <kholiavin.nikolai@huawei-partners.com> | 1 年前 | |
compiler-rt: Remove .cc from all lit config files All cc files have been renamed to cpp now. llvm-svn: 367911 | 6 年前 | |
fix compiler_rt testcases of sanitizer Signed-off-by: ziper <louzhipeng@huawei.com> | 1 年前 | |
[ubsan]Disable interactive tests with asan and tsan Isuue: https://gitee.com/openharmony/third_party_llvm-project/issues/IBIJON Signed-off-by: gaohongtao <gaohongtao2@huawei.com> | 1 年前 | |
[OHOS][compiler-rt][test] Enable UBSan testing remotely on OHOS devices Issue: https://gitee.com/openharmony/third_party_llvm-project/issues/I9D4T3 Signed-off-by: DmitrievVadim <dmitriev.vadim@huawei-partners.com> | 2 年前 | |
[compiler-rt][xray] Disable fdr-reinit test on Arm This test is still seemingly randomly segfaulting on Arm: https://lab.llvm.org/buildbot/#/builders/178/builds/1547 Though it seems to fail earlier in the test than on AArch64. Investigation continues. | 4 年前 | |
[tests][sanitizers] Don't reflow comments This lets us to apply ColumnLimit without breaking "RUN:" lines. | 4 年前 | |
[NFC][compiler-rt] Refine .clang-tidy checks Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D87182 | 5 年前 | |
Revert "[compiler-rt] TMP: disable not working tests and runtimes" This reverts commit 1302f071d4be91f9a31544d460d7d741b28a9c80. Signed-off-by: Sukhikh Alexander <sukhikh.alexander@huawei-partners.com> | 2 年前 | |
[OHOS][scudo][gwp_asan][CFI][test] Fix compiler-rt testing for OHOS In particular: - disable emulated tls in scudo and gwp_asan; - don't build gwp_asan unit tests under check-gwp_asan target; - make gwp_asan tls slot getter weak, so that it links without errors; - provide gwp_asan backtrace functions from musl; - address some musl-related test limitations; - enable CFI tests on OHOS. Issue: https://gitee.com/openharmony/third_party_llvm-project/issues/IAQMY0 Signed-off-by: Nikolai Kholiavin <kholiavin.nikolai@huawei-partners.com> | 1 年前 | |
[compiler-rt] Separate remote interfaces from systems Issue: https://gitee.com/openharmony/third_party_llvm-project/issues/IASL5Q Signed-off-by: Sukhikh Alexander <sukhikh.alexander@huawei-partners.com> | 1 年前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 4 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 3 年前 | ||
| 3 年前 | ||
| 2 个月前 | ||
| 3 年前 | ||
| 7 个月前 | ||
| 1 个月前 | ||
| 6 年前 | ||
| 2 年前 | ||
| 3 年前 | ||
| 3 年前 | ||
| 3 年前 | ||
| 3 年前 | ||
| 4 年前 | ||
| 3 个月前 | ||
| 1 年前 | ||
| 6 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 2 年前 | ||
| 4 年前 | ||
| 4 年前 | ||
| 5 年前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 1 年前 |