Revision
366789
by uenoku:
[Attributor][NFC] Re-run clang-format on the Attributor.cpp |
Change Type | Path in Repository | Path in Workspace |
---|
 | /llvm/trunk/lib/Transforms/IPO/Attributor.cpp (diff) | llvm.src/lib/Transforms/IPO/Attributor.cpp |
Revision
366788
by uenoku:
[Attributor] Deduce "dereferenceable" attribute Summary: Deduce dereferenceable attribute in Attributor. These will be added in a later patch. * dereferenceable(_or_null)_globally (D61652) * Deduction based on load instruction (similar to D64258) Reviewers: jdoerfert, sstefan1 Reviewed By: jdoerfert Subscribers: hiraditya, jfb, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D64876 |
Change Type | Path in Repository | Path in Workspace |
---|
 | /llvm/trunk/include/llvm/Transforms/IPO/Attributor.h (diff) | llvm.src/include/llvm/Transforms/IPO/Attributor.h |
 | /llvm/trunk/lib/Transforms/IPO/Attributor.cpp (diff) | llvm.src/lib/Transforms/IPO/Attributor.cpp |
 | /llvm/trunk/test/Transforms/FunctionAttrs/arg_nocapture.ll (diff) | llvm.src/test/Transforms/FunctionAttrs/arg_nocapture.ll |
 | /llvm/trunk/test/Transforms/FunctionAttrs/dereferenceable.ll | llvm.src/test/Transforms/FunctionAttrs/dereferenceable.ll |
 | /llvm/trunk/test/Transforms/FunctionAttrs/noalias_returned.ll (diff) | llvm.src/test/Transforms/FunctionAttrs/noalias_returned.ll |
 | /llvm/trunk/test/Transforms/FunctionAttrs/nonnull.ll (diff) | llvm.src/test/Transforms/FunctionAttrs/nonnull.ll |
Revision
366787
by evgeny777:
[llvm-objcopy] Allow strip symtab in executables and DSOs Re-commit of the patch after addressing -Wl,--emit-relocs case. Differential revision: https://reviews.llvm.org/D61672 |
Change Type | Path in Repository | Path in Workspace |
---|
 | /llvm/trunk/test/tools/llvm-objcopy/ELF/preserve-segment-contents-ehdr-phdrs.test (diff) | llvm.src/test/tools/llvm-objcopy/ELF/preserve-segment-contents-ehdr-phdrs.test |
 | /llvm/trunk/test/tools/llvm-objcopy/ELF/remove-multiple-sections.test (diff) | llvm.src/test/tools/llvm-objcopy/ELF/remove-multiple-sections.test |
 | /llvm/trunk/test/tools/llvm-objcopy/ELF/segment-shift-section-remove.test (diff) | llvm.src/test/tools/llvm-objcopy/ELF/segment-shift-section-remove.test |
 | /llvm/trunk/test/tools/llvm-objcopy/ELF/segment-test-remove-section.test (diff) | llvm.src/test/tools/llvm-objcopy/ELF/segment-test-remove-section.test |
 | /llvm/trunk/test/tools/llvm-objcopy/ELF/strip-unneeded-all-symbols.test | llvm.src/test/tools/llvm-objcopy/ELF/strip-unneeded-all-symbols.test |
 | /llvm/trunk/tools/llvm-objcopy/ELF/ELFObjcopy.cpp (diff) | llvm.src/tools/llvm-objcopy/ELF/ELFObjcopy.cpp |
 | /llvm/trunk/tools/llvm-objcopy/ELF/Object.cpp (diff) | llvm.src/tools/llvm-objcopy/ELF/Object.cpp |
 | /llvm/trunk/tools/llvm-objcopy/ELF/Object.h (diff) | llvm.src/tools/llvm-objcopy/ELF/Object.h |
Revision
366786
by kongyi:
Fix gold-plugin Windows build r365588 missed one instance of integer file descriptor use in gold-plugin.cpp. |
Change Type | Path in Repository | Path in Workspace |
---|
 | /llvm/trunk/tools/gold/gold-plugin.cpp (diff) | llvm.src/tools/gold/gold-plugin.cpp |
Revision
366785
by grimar:
[yaml2elf] - Treat the SHN_UNDEF section as kind of regular section. We have a logic that adds a few sections implicitly. Though the SHT_NULL section with section number 0 is an exception. In D64913 I want to teach yaml2obj to redefine the null section. And in this patch I add it to the sections list, to make it kind of a regular section. Differential revision: https://reviews.llvm.org/D65087 |
Change Type | Path in Repository | Path in Workspace |
---|
 | /llvm/trunk/test/tools/yaml2obj/duplicate-section-names.test (diff) | llvm.src/test/tools/yaml2obj/duplicate-section-names.test |
 | /llvm/trunk/tools/yaml2obj/yaml2elf.cpp (diff) | llvm.src/tools/yaml2obj/yaml2elf.cpp |
Revision
366782
by balazske:
[CrossTU] Added CTU argument to diagnostic consumer create fn. Summary: The PListDiagnosticConsumer needs a new CTU parameter that is passed through the create functions. Reviewers: NoQ, Szelethus, xazax.hun, martong Reviewed By: Szelethus Subscribers: rnkovacs, dkrupp, Szelethus, gamesh411, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D64635 |
Change Type | Path in Repository | Path in Workspace |
---|
 | /cfe/trunk/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h (diff) | clang.src/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h |
 | /cfe/trunk/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp (diff) | clang.src/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp |
 | /cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp (diff) | clang.src/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp |
 | /cfe/trunk/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp (diff) | clang.src/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp |
 | /cfe/trunk/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp (diff) | clang.src/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp |
Revision
366781
by uenoku:
[AMDGPU][NFC] Simplify test file for amdgcn intrinsics Summary: Remove unchecked attribute in the call site and use FileCheck String Substitution for `convergent` check. Reviewers: nhaehnle Reviewed By: nhaehnle Subscribers: kzhuravl, jvesely, wdng, nhaehnle, yaxunl, dstuttard, tpr, t-tye, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D64901 |
Change Type | Path in Repository | Path in Workspace |
---|
 | /llvm/trunk/test/Transforms/InstCombine/AMDGPU/amdgcn-intrinsics.ll (diff) | llvm.src/test/Transforms/InstCombine/AMDGPU/amdgcn-intrinsics.ll |