LLVM/project 20ce456llvm/lib/CodeGen/SelectionDAG LegalizeVectorTypes.cpp, llvm/test/CodeGen/RISCV/rvv fixed-vectors-expandload-int.ll fixed-vectors-compressstore-int.ll

[LegalizeTypes][RISCV] Don't widen expandload or compresstore with VP_LOAD/VP_STORE. (#193294)

We don't support expanding/compressing VP_LOAD/VP_STORE yet.

This probably crashes on scalable vectors, but that's better than
a silent miscompile.

Fixes #193277.
DeltaFile
+18-0llvm/test/CodeGen/RISCV/rvv/fixed-vectors-expandload-int.ll
+16-0llvm/test/CodeGen/RISCV/rvv/fixed-vectors-compressstore-int.ll
+2-2llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
+36-23 files

LLVM/project 6688763libc/test lit.site.cfg.py.in, libc/utils/libctest format.py

[libc] Improve lit test discovery and execution (#192993)

Updated LibcTest to support cross-compilation and custom test
directories:

* Passed localConfig to _isTestExecutable to check for emulator.
* Skipped host execution permission check if emulator is set.
* Supported tests in libc.test.shared and libc.test.utils.
* Handled fallback if @BINARY@ is missing in test command template.
* Removed UnitTest from excludes in lit site config.
DeltaFile
+17-4libc/utils/libctest/format.py
+2-2libc/test/lit.site.cfg.py.in
+19-62 files

LLVM/project 27cc833cross-project-tests CMakeLists.txt

[cross-project-tests] Add llvm-modextract as a dependency (#193296)

cross-project-tests/dtlto/multimodule.test uses it

Some precommit tests are failing because of this missing dependency,
e.g. https://github.com/llvm/llvm-project/actions/runs/24729694507
DeltaFile
+1-0cross-project-tests/CMakeLists.txt
+1-01 files

LLVM/project 0bbd61a.github/workflows/containers/github-action-ci Dockerfile, .github/workflows/containers/github-action-ci-windows Dockerfile

[Github] Bump Github Runner Version to 2.334.0 (#193318)

Release notes imply this probably shouldn't impact us. Update the runner
version in the containers so that we do not run past the support
horizon.
DeltaFile
+1-1.github/workflows/containers/github-action-ci-windows/Dockerfile
+1-1.github/workflows/containers/github-action-ci/Dockerfile
+2-22 files

LLVM/project 22c296cllvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, llvm/test/CodeGen/RISCV/rvv vfadd-vp.ll vitofp-sdnode.ll

Merge remote-tracking branch 'origin/main' into users/ziqingluo/PR-172429193-2-split-3

 Conflicts:
        clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.cpp
        clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.h
        clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp
DeltaFile
+4,805-4,811llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+1,871-1,882llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+764-1,425llvm/test/CodeGen/RISCV/rvv/vfadd-vp.ll
+837-855llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.256bit.ll
+1,139-456llvm/test/CodeGen/AMDGPU/llvm.amdgcn.intersect_ray.ll
+878-428llvm/test/CodeGen/RISCV/rvv/vitofp-sdnode.ll
+10,294-9,857744 files not shown
+41,648-20,397750 files

LLVM/project 99e4f6alldb/include/lldb/Target StackFrame.h, lldb/source/API SBFrame.cpp

[lldb] Add synthetic variable support to Get*VariableList. (#181501)


This patch adds a new flag to the lldb_private::StackFrame API to get variable lists: `include_synthetic_vars`.  This allows ScriptedFrame (and other future synthetic frames) to construct 'fake' variables and return them in the VariableList, so that commands like `fr v` and `SBFrame::GetVariables` can show them to the user as requested.

This patch includes all changes necessary to call the API the new way - I tried to use my best judgement on when to include synthetic variables or not and leave comments explaining the decision.

As a consequence of producing synthetic variables, this patch means that ScriptedFrame can produce Variable objects with ValueType that contains a ValueTypeExtendedMask in a high bit. This necessarily complicates some of the switch/case handling in places where we would expect to find such variables, and this patch makes best effort to address all such cases as well. From experience, they tend to show up whenever we're dealing with checking if a Variable is in a specified scope, which means we basically have to check the high bit against some user input saying "yes/no synthetic variables".
DeltaFile
+42-11lldb/source/API/SBFrame.cpp
+44-8lldb/source/Plugins/Process/scripted/ScriptedFrame.cpp
+31-11lldb/source/Commands/CommandObjectFrame.cpp
+27-8lldb/test/API/functionalities/scripted_frame_provider/TestScriptedFrameProvider.py
+16-2lldb/source/Target/StackFrame.cpp
+16-0lldb/include/lldb/Target/StackFrame.h
+176-407 files not shown
+217-5613 files

LLVM/project e7b1037clang/lib/CIR/CodeGen CIRGenBuiltinAArch64.cpp, clang/test/CodeGen/AArch64 neon-misc.c

[CIR] add pairwise-addition-and-widen support (#191845)

Part of https://github.com/llvm/llvm-project/issues/185382
DeltaFile
+355-0clang/test/CodeGen/AArch64/neon/vpaddl.c
+0-308clang/test/CodeGen/AArch64/neon-misc.c
+46-7clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp
+401-3153 files

LLVM/project c417539clang/include/clang/AST ASTContext.h, clang/lib/AST ASTContext.cpp ItaniumMangle.cpp

[clang] implement CWG2064: ignore value dependence for decltype

The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.

This patch also implements what's neceessary to allow overloading
on pure differences in instantiation dependence, making `std::void_t`
usable for SFINAE purposes.

This also readds a few test cases from da98651, which was a previous attempt
at resolving CWG2064.

Fixes #8740
Fixes #61818
Fixes #190388
DeltaFile
+906-175clang/lib/AST/ASTContext.cpp
+326-12clang/test/SemaTemplate/instantiation-dependence.cpp
+176-96clang/lib/AST/ItaniumMangle.cpp
+76-68clang/lib/AST/Type.cpp
+76-48clang/lib/Sema/SemaTemplate.cpp
+93-16clang/include/clang/AST/ASTContext.h
+1,653-41584 files not shown
+2,437-78290 files

LLVM/project b117508clang/include/clang/Analysis/Analyses/LifetimeSafety Loans.h, clang/include/clang/Basic DiagnosticGroups.td

[LifetimeSafety] Add support for `new`/`delete` (#192504)

This PR extends LifetimeSafety to also support heap allocations via
`new`/`delete`.

# Contents


* Adds a new warning that is emitted on use-after-free.

* Renames `reportUseAfterFree` to `reportUseAfterScope` due to the old
name being misleading (warnings are still called `use_after_scope`).

* Adds a new `AccessPath::Kind` value `NewAllocation` that is used for
loans issued from `new` allocations.

* Adds `VisitCXXNewExpr` and `VisitCXXDeleteExpr`, which handle loan
issuance / origin propagation for `new` / `delete`.


    [6 lines not shown]
DeltaFile
+230-0clang/test/Sema/warn-lifetime-safety.cpp
+50-0clang/test/Sema/warn-lifetime-safety-suggestions.cpp
+32-0clang/lib/Analysis/LifetimeSafety/FactsGenerator.cpp
+21-10clang/lib/Sema/SemaLifetimeSafety.h
+12-5clang/include/clang/Analysis/Analyses/LifetimeSafety/Loans.h
+10-2clang/include/clang/Basic/DiagnosticGroups.td
+355-177 files not shown
+375-2313 files

LLVM/project 7318bc7clang/include/clang/Basic BuiltinsAMDGPU.td, clang/test/CodeGenOpenCL builtins-amdgcn-gfx1250-tensor-load-store.cl

[Clang][AMDGPU] Use unsigned for D# (#193310)

The descriptor should be unsigned in the first place. Before we moved to
`_ExtVector`, everything just relied on implicit type conversion, so
this was never caught. CLR's implementation of D# uses unsigned as well.

Fixes ROCM-23449.
DeltaFile
+8-6clang/test/CodeGenOpenCL/builtins-amdgcn-gfx1250-tensor-load-store.cl
+2-2clang/include/clang/Basic/BuiltinsAMDGPU.td
+3-1clang/test/SemaOpenCL/builtins-amdgcn-error-gfx1250-param.cl
+13-93 files

LLVM/project 21dcb13flang/include/flang/Optimizer/OpenACC/Support FIROpenACCOpsInterfaces.h, flang/lib/Optimizer/OpenACC/Support FIROpenACCOpsInterfaces.cpp

[flang][acc] Update fir.convert rematerialization handling (#193301)

As of https://github.com/llvm/llvm-project/pull/184218 fir.convert was
being treated as a rematerialization candidate always. However, the
primary problem intended to be solved were improper classification of
pointers due to being casted to integers. Thus use optionally
implemented interface instead to only handle this scenario.
DeltaFile
+44-0flang/test/Fir/OpenACC/offload-livein-value-canonicalization.fir
+15-0mlir/include/mlir/Dialect/OpenACC/OpenACCOpsInterfaces.td
+11-1flang/include/flang/Optimizer/OpenACC/Support/FIROpenACCOpsInterfaces.h
+11-0flang/lib/Optimizer/OpenACC/Support/FIROpenACCOpsInterfaces.cpp
+2-3mlir/lib/Dialect/OpenACC/Transforms/OffloadLiveInValueCanonicalization.cpp
+83-45 files

LLVM/project 346480ellvm/test/CodeGen/AArch64 hadd-combine-scalar.ll hadd-combine.ll

[AArch64] Add more scalar testing for hadd patterns. NFC (#193313)

These are mostly taken from hadd-combine.ll, testing scalar instead of
vector
and checking a few extra variants.
DeltaFile
+868-0llvm/test/CodeGen/AArch64/hadd-combine-scalar.ll
+0-26llvm/test/CodeGen/AArch64/hadd-combine.ll
+0-13llvm/test/CodeGen/AArch64/arm64-vhadd.ll
+868-393 files

LLVM/project e8131c7clang/lib/ScalableStaticAnalysisFramework/Analyses SSAFAnalysesCommon.cpp

add #include <set>
DeltaFile
+1-0clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.cpp
+1-01 files

LLVM/project 24464f6llvm/lib/Target/RISCV/GISel RISCVLegalizerInfo.cpp, llvm/test/CodeGen/RISCV/GlobalISel memcpy-inline.ll legalizer-info-validation.mir

[RISCV][GlobalISel] Lower G_MEMCPY_INLINE (#192671)

Before this, MIR that contained G_MEMCPY_INLINE has failed in the
lagalization stage.

This patch calls `lower` on G_MEMCPY_INLINE.
DeltaFile
+97-0llvm/test/CodeGen/RISCV/GlobalISel/memcpy-inline.ll
+48-0llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-memcpy-inline.mir
+2-2llvm/test/CodeGen/RISCV/GlobalISel/legalizer-info-validation.mir
+2-0llvm/lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp
+149-24 files

LLVM/project f943777llvm/lib/Transforms/IPO AttributorAttributes.cpp

[Attributor] Use trivial no side effects check in isAssumedSideEffectFree (#193303)

This PR should not change any tests, which is the goal here. To use
`mayHaveSideEffects` is a shortcut to avoid expensive checks by pulling
in different kind of dependences.

That said, this PR doesn't really need a test.
DeltaFile
+3-0llvm/lib/Transforms/IPO/AttributorAttributes.cpp
+3-01 files

LLVM/project 760bc12llvm/lib/Passes PassBuilderPipelines.cpp, llvm/test/Other new-pm-defaults.ll new-pm-thinlto-postlink-defaults.ll

Reapply "[JTS][Passes] Enable JTS By Default" (#193300)

Reverts llvm/llvm-project#192894

Remaining issues should be fixed by
6a9ed459ce228cc0d8982bf1a8cad39f7c020ce4.
DeltaFile
+1-5llvm/test/Other/new-pm-defaults.ll
+2-2llvm/lib/Passes/PassBuilderPipelines.cpp
+1-0llvm/test/Other/new-pm-thinlto-postlink-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-pgo-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-samplepgo-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-prelink-pgo-defaults.ll
+7-72 files not shown
+9-78 files

LLVM/project f1baa17libc/include wchar.yaml, libc/src/wchar wcsxfrm.cpp wcsxfrm.h

[libc] Add wcsxfrm (#191692)

This patch adds wcsxfrm to LLVM libc.

It includes:
- wchar.yaml declaration
- implementation and header
- CMake wiring
- entrypoint registration
- unit tests

The current implementation provides C/POSIX-style behavior and does not
yet add locale-aware collation support.

Tested with:
- ninja libc.test.src.wchar.wcsxfrm_test

Notes:
- local full check-libc was blocked by unrelated pre-existing timeout

    [6 lines not shown]
DeltaFile
+100-0libc/test/src/wchar/wcsxfrm_test.cpp
+54-0libc/src/wchar/wcsxfrm.cpp
+24-0libc/src/wchar/wcsxfrm.h
+13-0libc/src/wchar/CMakeLists.txt
+10-0libc/test/src/wchar/CMakeLists.txt
+8-0libc/include/wchar.yaml
+209-01 files not shown
+210-07 files

LLVM/project a4538a3clang/include/clang/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel EntityPointerLevelFormat.h, clang/lib/ScalableStaticAnalysisFramework/Analyses SSAFAnalysesCommon.h SSAFAnalysesCommon.cpp

[NFC][SSAF] Extract common code in Analyses to a shared file (#191932)

Created SSAFAnalysesCommon.h for the SSAF analyses implementation.

---------

Co-authored-by: Balázs Benics <benicsbalazs at gmail.com>
DeltaFile
+47-0clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.h
+7-25clang/lib/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel/EntityPointerLevel.cpp
+17-0clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.cpp
+2-10clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp
+0-10clang/include/clang/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel/EntityPointerLevelFormat.h
+1-0clang/lib/ScalableStaticAnalysisFramework/Analyses/CMakeLists.txt
+74-451 files not shown
+75-457 files

LLVM/project 8edf404clang/include/clang/Basic BuiltinsAMDGPU.td, clang/test/CodeGenOpenCL builtins-amdgcn-gfx1250-tensor-load-store.cl

[Clang][AMDGPU] Use unsigned for D#

The descriptor should be unsigned in the first place. Before we moved to
`_ExtVector`, everything just relied on implicit type conversion, so this was
never caught. CLR's implementation of D# uses unsigned as well.
DeltaFile
+8-6clang/test/CodeGenOpenCL/builtins-amdgcn-gfx1250-tensor-load-store.cl
+2-2clang/include/clang/Basic/BuiltinsAMDGPU.td
+3-1clang/test/SemaOpenCL/builtins-amdgcn-error-gfx1250-param.cl
+13-93 files

LLVM/project 1151595bolt/lib/Rewrite RewriteInstance.cpp

[BOLT] Fix stream position before appendPadding in writeEHFrameHeader (#193126)

When writeEHFrameHeader needs to allocate new space for .eh_frame_hdr
(because the old section is too small), it calls appendPadding to align
NextAvailableAddress. appendPadding writes zero bytes at the current
stream position, but after the section write loop in rewriteFile the
stream is positioned at the end of the last section written in
BinarySection::operator< order — not at the file offset corresponding to
NextAvailableAddress.

In the common case (single loadObject call) the write order matches file
offset order, so the stream happens to be in the right place. But when a
runtime library adds sections via additional loadObject calls, the
operator< iteration order (code-before-data) can diverge from file
offset order: a runtime library code section may have a higher file
offset than a runtime library data section that comes after it in the
write loop. The stream then ends at a lower offset than expected, and
appendPadding's zeros overwrite the beginning of the code section.

Fix by seeking to the correct file offset before calling appendPadding.
DeltaFile
+1-0bolt/lib/Rewrite/RewriteInstance.cpp
+1-01 files

LLVM/project 7bf48ecllvm/test/CodeGen/AArch64 xtn.ll trunc.ll

[AArch64] Remove xtn.ll test. NFC (#193306)

xtn.ll and trunc.ll share many of the same test functions. This patch
removes
xtn.ll, porting over some i128 variants to trunc.ll to keep what was
present
only in xtn.ll.
DeltaFile
+0-428llvm/test/CodeGen/AArch64/xtn.ll
+95-20llvm/test/CodeGen/AArch64/trunc.ll
+95-4482 files

LLVM/project 197e7f6llvm/lib/Transforms/IPO AttributorAttributes.cpp

[Attributor] Use trivial no side effects check in isAssumedSideEffectFree

This PR should not change any tests, which is the goal here. To use
`mayHaveSideEffects` is a shortcut to avoid expensive checks by pulling in
different kind of dependences.

That said, this PR doesn't really need a test.
DeltaFile
+3-0llvm/lib/Transforms/IPO/AttributorAttributes.cpp
+3-01 files

LLVM/project 2ba0b4bllvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, llvm/test/CodeGen/RISCV/rvv vfadd-vp.ll

rebase

Created using spr 1.3.7
DeltaFile
+4,805-4,811llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+1,871-1,882llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+764-1,229llvm/test/CodeGen/RISCV/rvv/vfadd-vp.ll
+837-855llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.256bit.ll
+1,139-456llvm/test/CodeGen/AMDGPU/llvm.amdgcn.intersect_ray.ll
+664-508llvm/test/Transforms/LoopVectorize/RISCV/strided-accesses.ll
+10,080-9,741552 files not shown
+30,589-17,626558 files

LLVM/project 2d17283llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, llvm/test/CodeGen/RISCV/rvv vfadd-vp.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+4,805-4,811llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+1,871-1,882llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+764-1,229llvm/test/CodeGen/RISCV/rvv/vfadd-vp.ll
+837-855llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.256bit.ll
+1,139-456llvm/test/CodeGen/AMDGPU/llvm.amdgcn.intersect_ray.ll
+664-508llvm/test/Transforms/LoopVectorize/RISCV/strided-accesses.ll
+10,080-9,741551 files not shown
+30,581-17,608557 files

LLVM/project 7be5b0dllvm/include/llvm/ADT Hashing.h

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+20-19llvm/include/llvm/ADT/Hashing.h
+20-191 files

LLVM/project ae9cb64llvm/lib/Transforms/Vectorize VPlan.h VPlanTransforms.cpp, llvm/unittests/Transforms/Vectorize VPlanTest.cpp

[VPlan] Clean up VPWidenPHIRecipe constructor (NFC). (#193297)

Update VPWidenPHIRecipe's constructor to no longer pass the unused
underlying IR PHI and pass all incoming values as ArrayRef. This also
clarifies that the underlying instruction is not used.

Also add VPBuilder::createWidenPhi.
DeltaFile
+6-14llvm/lib/Transforms/Vectorize/VPlan.h
+4-6llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+6-0llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
+2-2llvm/unittests/Transforms/Vectorize/VPlanTest.cpp
+1-2llvm/lib/Transforms/Vectorize/VPlanConstruction.cpp
+19-245 files

LLVM/project bcb1bbellvm/lib/Target/AMDGPU AMDGPURewriteAGPRCopyMFMA.cpp, llvm/lib/Target/PowerPC PPCInstrInfo.td PPCOperands.td

Merge branch 'main' into revert-192894-revert-192884-revert-192737-revert-190674-enable-jtts-by-default
DeltaFile
+459-0llvm/test/CodeGen/AMDGPU/rewrite-vgpr-mfma-to-agpr-spill-multi-store-mir.mir
+148-0llvm/test/CodeGen/AMDGPU/rewrite-vgpr-mfma-to-agpr-spill-multi-store.ll
+19-0llvm/lib/Target/AMDGPU/AMDGPURewriteAGPRCopyMFMA.cpp
+4-4llvm/lib/Target/PowerPC/PPCInstrInfo.td
+4-0llvm/lib/Target/PowerPC/PPCOperands.td
+1-1llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
+635-56 files

LLVM/project f1b65b9llvm/lib/Target/PowerPC PPCInstrInfo.td PPCOperands.td, llvm/lib/Target/PowerPC/MCTargetDesc PPCInstPrinter.cpp

[PowerPC] Fix ADJCALLSTACKUP and ADJCALLSTACKDOWN def (#184696)

ADJCALLSTACKUP and ADJCALLSTACKDOWN can actually take on values greater
then what can be contained in u16imm type. Update to use u32imm instead.
DeltaFile
+4-4llvm/lib/Target/PowerPC/PPCInstrInfo.td
+4-0llvm/lib/Target/PowerPC/PPCOperands.td
+1-1llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
+9-53 files

LLVM/project 50241dcllvm/lib/Target/AMDGPU AMDGPURewriteAGPRCopyMFMA.cpp, llvm/test/CodeGen/AMDGPU rewrite-vgpr-mfma-to-agpr-spill-multi-store-mir.mir rewrite-vgpr-mfma-to-agpr-spill-multi-store.ll

[AMDGPU] Reland "Fixed verifier crash because of multiple live range components." (#190719) (#193286)

PR #190719 was reverted by PR #193135 because a .s file was left behind
by a test. This patch fixes it by adding -filetype=null to the RUN line
of the test rewrite-vgpr-mfma-to-agpr-spill-multi-store.ll.

In Rewrite AGPR-Copy-MFMA pass, after replacing spill instructions, the
replacement register may have multiple live range components when the
spill slot was stored to more than once. The verifier crashes with a bad
machine code error. This patch fixes the problem by splitting a live
range but assigning the same physical register in this scenario. A new
test has been added that verifies the absence of this verifier error.

Assisted-by: Claude Opus
DeltaFile
+459-0llvm/test/CodeGen/AMDGPU/rewrite-vgpr-mfma-to-agpr-spill-multi-store-mir.mir
+148-0llvm/test/CodeGen/AMDGPU/rewrite-vgpr-mfma-to-agpr-spill-multi-store.ll
+19-0llvm/lib/Target/AMDGPU/AMDGPURewriteAGPRCopyMFMA.cpp
+626-03 files

LLVM/project dbcd082llvm/lib/Passes PassBuilderPipelines.cpp, llvm/test/Other new-pm-defaults.ll new-pm-thinlto-prelink-samplepgo-defaults.ll

Revert "Revert "[JTS][Passes] Enable JTS By Default" (#192894)"

This reverts commit 832d6dba668d8ea559dd21d52b264d38f97f0ae6.
DeltaFile
+1-5llvm/test/Other/new-pm-defaults.ll
+2-2llvm/lib/Passes/PassBuilderPipelines.cpp
+1-0llvm/test/Other/new-pm-thinlto-prelink-samplepgo-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-pgo-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-samplepgo-defaults.ll
+7-72 files not shown
+9-78 files