summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeLines
...
* [RISCV] Lower riscv_zip/unzip intrinsic to RISCVISD::SHFL/UNSHFL.Craig Topper2022-01-30-9/+15
* [Support][NFC] Fix generic `ChildrenGetterTy` of `IDFCalculatorBase`Markus Böck2022-01-30-50/+3
* [RISCV] Custom lower brev8 intrinsic to RISCVISD::GREV.Craig Topper2022-01-30-6/+30
* [OpenMP] Use nullptr instead of NULL (NFC)Kazu Hirata2022-01-30-3/+3
* [Analysis] Use != to compare strings (NFC)Kazu Hirata2022-01-30-1/+1
* [clang] Remove redundant string initialization (NFC)Kazu Hirata2022-01-30-3/+3
* [lldb] Forward-declare ClangExpressionParser (NFC)Kazu Hirata2022-01-30-1/+2
* [CodeGen] Use default member initialization (NFC)Kazu Hirata2022-01-30-93/+77
* [X86] combineVectorTruncation - use PACKUSDW(BLENDW(X,0),BLENDW(Y,0)) for v8i...Simon Pilgrim2022-01-30-127/+86
* [compiler-rt][builtins] Use c[tl]zsi macro instead of __builtin_c[tl]zAnatoly Trosinenko2022-01-30-8/+8
* [mlir][bufferize] Clean up remaining references to `tensor-constant-bufferize`Matthias Springer2022-01-31-6/+6
* [clang-format] Handle C variables with name that matches c++ access specifierPhilip Sigillito2022-01-30-6/+102
* Apply clang-tidy fixes for llvm-include-order in AttrOrTypeFormatGen.cpp (NFC)Mehdi Amini2022-01-30-1/+1
* Apply clang-tidy fixes for performance-move-const-arg in TestLinalgCodegenStr...Mehdi Amini2022-01-30-4/+3
* Apply clang-tidy fixes for readability-identifier-naming in TosaOps.cpp (NFC)Mehdi Amini2022-01-30-8/+7
* Apply clang-tidy fixes for readability-identifier-naming in PolynomialApproxi...Mehdi Amini2022-01-30-24/+22
* Apply clang-tidy fixes for performance-for-range-copy in SCFInterfaceImpl.cpp...Mehdi Amini2022-01-30-2/+2
* Apply clang-tidy fixes for modernize-use-equals-default in BufferizableOpInte...Mehdi Amini2022-01-30-1/+1
* Apply clang-tidy fixes for readability-identifier-naming in AsyncToLLVM.cpp (...Mehdi Amini2022-01-30-2/+2
* [compiler-rt][builtins] Use explicitly-sized integer types for LibCallsAnatoly Trosinenko2022-01-30-14/+14
* [lld-macho] Add support for -add_empty_sectionKeith Smiley2022-01-30-0/+28
* [X86][AVX] matchUnaryShuffle - avoid creation of on-the-fly nodes (PR45974)Simon Pilgrim2022-01-30-12/+8
* [test][lld-macho] Improve LC_FUNCTION_STARTS test coverageKeith Smiley2022-01-30-0/+27
* [X86] Attempt to fold MOVMSK(CMPEQ(AND(X,C1),0)) -> MOVMSK(NOT(SHL(X,C2)))Simon Pilgrim2022-01-30-23/+39
* [X86] Add tests showing failure to fold MOVMSK(CMPEQ(AND(X,C1),0)) -> MOVMSK(...Simon Pilgrim2022-01-30-0/+74
* [InstCombine] Do not combine atomic and non-atomic loadsRicky Zhou2022-01-30-11/+11
* [InstCombine] Add test reproducing PR51435 (NFC)Ricky Zhou2022-01-30-0/+25
* Revert "[InstCombine] Do not combine atomic and non-atomic loads"Sanjay Patel2022-01-30-25/+0
* [InstCombine] Do not combine atomic and non-atomic loadsRicky Zhou2022-01-30-0/+25
* [InstCombine] Use range for loops (NFC)Ricky Zhou2022-01-30-75/+81
* [InstCombine] Uppercase some variable names (NFC)Ricky Zhou2022-01-30-59/+58
* [mlir][linalg][bufferize] Fix insertion point InitTensorEliminationMatthias Springer2022-01-30-6/+162
* [libc++][format][nfc] Move tests.Mark de Wever2022-01-30-0/+0
* [libc++][doc] Update the release notes.Mark de Wever2022-01-30-10/+23
* [mlir][bufferize][NFC] Move std BufferizableOpInterfaceImpl to std dialectMatthias Springer2022-01-30-121/+47
* [VPlan] Use VPlan to check if only the first lane is used.Florian Hahn2022-01-30-130/+142
* [mlir][bufferize][NFC] Move scf BufferizableOpInterface impl to scf dialectMatthias Springer2022-01-30-106/+69
* Update BUILD.bazel.Matthias Springer2022-01-30-0/+1
* [mlir][bufferize] Merge tensor-constant-bufferize into arith-bufferizeMatthias Springer2022-01-30-269/+210
* [InstCombine] remove incorrect gep(x, undef) -> undef optimizationNuno Lopes2022-01-30-7/+18
* [InstSimplify] fold 'xor X, poison' and 'div/rem X, poison' to poisonNuno Lopes2022-01-30-5/+7
* [NewGVN][NFC] add poison testsNuno Lopes2022-01-30-0/+26
* [ELF] copyShtGroup: replace unordered_set<uint32_t> with DenseSet<uint32_t>. NFCFangrui Song2022-01-30-4/+2
* [ELF] crtbegin/crtend test: replace std::regex with hand-written matcher. NFCFangrui Song2022-01-30-15/+11
* [ELF][test] Test {crtbegin,crtend}{S,T}.oFangrui Song2022-01-30-1/+5
* [ELF] Simplify maybeCompress with lld::split. NFCFangrui Song2022-01-30-6/+3
* [ELF] Optimize MergeInputSection::splitNonStrings with resize_for_overwrite. NFCFangrui Song2022-01-30-1/+2
* [ELF] Add some Mips*Section to InStruct and change make<Mips*Section> to std:...Fangrui Song2022-01-29-15/+21
* [ELF] Remove make<std::unique_ptr<MemoryBuffer>>. NFCFangrui Song2022-01-29-2/+2
* [ELF] De-template getErrorPlace. NFCFangrui Song2022-01-29-16/+1