Skip to content

Commit

Permalink
Integrate LLVM at llvm/llvm-project@fcf680050686
Browse files Browse the repository at this point in the history
Updates LLVM usage to match
[fcf680050686](llvm/llvm-project@fcf680050686)

PiperOrigin-RevId: 366101230
  • Loading branch information
iree-copybara-bot authored and iree-github-actions-bot committed Mar 31, 2021
1 parent 54c8bf5 commit 46aa337
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SUBMODULE_VERSIONS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
b1fbd33c06cdb0024c67733c6fdec2009d17b384 third_party/googletest
88b845dee001723c4a0db1fe5477de735b6d3bb0 third_party/liburing
fad5434701aa52c920404c81532aa3ebf44bc3b7 third_party/llvm-bazel
8396aeb07cddd8ab9a6a154a4ab7ac56fc24bda5 third_party/llvm-project
fcf6800506862586e2d409aaa03a1cff818edfcc third_party/llvm-project
dde739ffd00a6fa99175cf3c0f28e4b763dc6f5f third_party/mlir-emitc
e78c59d9277935f1d4d3b40d08e447be91be832a third_party/mlir-hlo
2b2bd45bbf9be04fd22ece5cc1f54679202e9257 third_party/pffft
Expand Down
2 changes: 1 addition & 1 deletion third_party/llvm-project
Submodule llvm-project updated 90 files
+0 −2 clang/include/clang/Basic/BuiltinsWebAssembly.def
+11 −0 clang/include/clang/Basic/DiagnosticCommonKinds.td
+3 −0 clang/include/clang/Driver/ToolChain.h
+1 −0 clang/include/clang/Lex/LiteralSupport.h
+2 −1 clang/include/clang/Parse/Parser.h
+0 −6 clang/lib/CodeGen/CGBuiltin.cpp
+23 −0 clang/lib/Driver/ToolChain.cpp
+3 −1 clang/lib/Driver/ToolChains/Fuchsia.cpp
+6 −25 clang/lib/Driver/ToolChains/Gnu.cpp
+3 −0 clang/lib/Frontend/InitPreprocessor.cpp
+58 −38 clang/lib/Lex/LiteralSupport.cpp
+8 −0 clang/lib/Lex/PPExpressions.cpp
+26 −2 clang/lib/Parse/ParseDecl.cpp
+4 −2 clang/lib/Parse/ParseDeclCXX.cpp
+39 −6 clang/lib/Sema/SemaExpr.cpp
+1 −10 clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
+0 −67 clang/test/Analysis/pthreadlock_state.c
+0 −6 clang/test/CodeGen/builtins-wasm.c
+2 −0 clang/test/CodeGen/sanitize-coverage-old-pm.c
+0 −0 clang/test/Driver/Inputs/basic_fuchsia_tree/include/c++/v1/.keep
+6 −0 clang/test/Lexer/cxx-features.cpp
+167 −0 clang/test/Lexer/size_t-literal.cpp
+1 −0 clang/test/Parser/cxx0x-attributes.cpp
+1 −1 clang/test/SemaCXX/cxx1y-user-defined-literals.cpp
+99 −0 clang/test/SemaCXX/size_t-literal.cpp
+1 −1 clang/www/cxx_status.html
+5 −6 libcxx/include/thread
+3 −0 libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/convert_copy.pass.cpp
+18 −2 llvm/include/llvm-c/lto.h
+7 −6 llvm/include/llvm/Analysis/TargetTransformInfo.h
+2 −2 llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
+26 −15 llvm/include/llvm/CodeGen/BasicTTIImpl.h
+0 −7 llvm/include/llvm/IR/IntrinsicsWebAssembly.td
+4 −0 llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
+9 −6 llvm/lib/Analysis/ScalarEvolution.cpp
+2 −2 llvm/lib/Analysis/TargetTransformInfo.cpp
+23 −1 llvm/lib/Analysis/ValueTracking.cpp
+7 −4 llvm/lib/LTO/LTOCodeGenerator.cpp
+12 −0 llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+1 −1 llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
+2 −2 llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
+3 −2 llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
+2 −2 llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
+4 −3 llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
+2 −2 llvm/lib/Target/ARM/ARMTargetTransformInfo.h
+1 −1 llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
+2 −2 llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
+7 −9 llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
+3 −2 llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
+2 −2 llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
+51 −0 llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+4 −0 llvm/lib/Target/RISCV/RISCVISelLowering.h
+4 −8 llvm/lib/Target/RISCV/RISCVInstrInfoB.td
+2 −2 llvm/lib/Target/RISCV/RISCVInstrInfoV.td
+23 −0 llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td
+5 −3 llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
+2 −2 llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
+5 −8 llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
+6 −8 llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
+219 −62 llvm/lib/Target/X86/X86ISelLowering.cpp
+24 −11 llvm/lib/Target/X86/X86InstrInfo.cpp
+6 −4 llvm/lib/Target/X86/X86TargetTransformInfo.cpp
+5 −4 llvm/lib/Target/X86/X86TargetTransformInfo.h
+6 −0 llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
+4 −4 llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+36 −2 llvm/test/Analysis/CostModel/AArch64/sve-intrinsics.ll
+3 −3 llvm/test/Analysis/CostModel/AArch64/sve-math.ll
+57 −0 llvm/test/Analysis/ScalarEvolution/shift-recurrences.ll
+1,083 −0 llvm/test/CodeGen/AArch64/sve-fixed-length-int-rem.ll
+436 −443 llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.image.load.1d.ll
+29 −17 llvm/test/CodeGen/PowerPC/licm-tocReg.ll
+16 −24 llvm/test/CodeGen/RISCV/rv64zbb.ll
+576 −0 llvm/test/CodeGen/RISCV/rvv/vsub-rv32.ll
+704 −0 llvm/test/CodeGen/RISCV/rvv/vsub-rv64.ll
+44 −0 llvm/test/CodeGen/WebAssembly/simd-comparisons.ll
+0 −10 llvm/test/CodeGen/WebAssembly/simd-intrinsics.ll
+2 −18 llvm/test/CodeGen/WebAssembly/simd-select.ll
+2 −9 llvm/test/CodeGen/X86/bmi.ll
+16 −31 llvm/test/CodeGen/X86/prefer-avx256-mulo.ll
+0 −18 llvm/test/CodeGen/X86/tbm_patterns.ll
+788 −1,026 llvm/test/CodeGen/X86/vec_smulo.ll
+630 −869 llvm/test/CodeGen/X86/vec_umulo.ll
+3 −3 llvm/test/MC/WebAssembly/event-section-decoding.ll
+12 −6 llvm/test/MC/WebAssembly/simd-encodings.s
+36 −0 llvm/test/Transforms/InstCombine/abs-intrinsic.ll
+1 −2 llvm/test/Transforms/LoopVectorize/AArch64/scalable-call.ll
+2 −7 llvm/tools/llvm-jitlink/llvm-jitlink.cpp
+26 −4 llvm/tools/lto/lto.cpp
+1 −0 llvm/tools/lto/lto.exports
+36 −5 llvm/unittests/Analysis/ValueTrackingTest.cpp

0 comments on commit 46aa337

Please sign in to comment.