llvm-project/llvm/test/CodeGen/SystemZ
Ulrich Weigand daee549b17 [FPEnv][SelectionDAG] Relax chain requirements
This patch implements the following changes:

1) SelectionDAGBuilder::visitConstrainedFPIntrinsic currently treats
each constrained intrinsic like a global barrier (e.g. a function call)
and fully serializes all pending chains. This is actually not required;
it is allowed for constrained intrinsics to be reordered w.r.t one
another or (nonvolatile) memory accesses. The MI-level scheduler already
allows for that flexibility, so it makes sense to allow it at the DAG
level as well.

This patch therefore changes the way chains for constrained intrisincs
are created, and handles them basically like load operations are handled.
This has the effect that constrained intrinsics are no longer serialized
against one another or (nonvolatile) loads. They are still serialized
against stores, but that seems hard to change with the current DAG chain
setup, and it also doesn't seem to be a big problem preventing DAG

2) The OPC_CheckFoldableChainNode check requires that each of the
intermediate nodes in a multi-node pattern match only has a single use.
This check tends to fail if those intermediate nodes are strict operations
as those have a chain output that typically indeed has another use.
However, we don't really need to consider chains here at all, since they
will all be rewritten anyway by UpdateChains later. Other parts of the
matcher therefore already ignore chains, but this hasOneUse check doesn't.

This patch replaces hasOneUse by a custom test that verifies there is no
more than one use of any non-chain output value.

In theory, this change could affect code unrelated to strict FP nodes,
but at least on SystemZ I could not find any single instance of that
happening

3) The SystemZ back-end currently does not allow matching multiply-and-
extend operations (32x32 -> 64bit or 64x64 -> 128bit FP multiply) for
strict FP operations.  This was not possible in the past due to the
problems described under 1) and 2) above.

With those issues fixed, it is now possible to fully support those
instructions in strict mode as well, and this patch does so.

Differential Revision: https://reviews.llvm.org/D70913
2019-12-06 11:02:11 +01:00
..
Large Remove irrelevant references to legacy git repositories from 2019-01-15 16:18:52 +00:00
DAGCombine_trunc_extract.ll [SystemZ] Check for presence of vector support in SystemZISelLowering 2017-04-07 12:35:11 +00:00
DAGCombiner_illegal_BUILD_VECTOR.ll [SystemZ] Remove fcmp undef from reduced test 2019-03-30 20:24:26 +00:00
DAGCombiner_isAlias.ll [CodeGen] Unify MBB reference format in both MIR and debug output 2017-12-04 17:18:51 +00:00
RAbasic-invalid-LR-update.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
addr-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
addr-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
addr-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
alias-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
alloca-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
alloca-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
alloca-03.ll [DAGCombiner][X86][AArch64][SPARC][SystemZ] y - (x + C) -> (y - x) - C fold. Try 3 2019-05-30 20:37:18 +00:00
alloca-04.ll
and-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
and-02.ll
and-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
and-04.ll
and-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
and-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
and-07.ll
and-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
and-xor-01.ll
anyregcc-novec.ll [SystemZ] Return the right offsets from getCalleeSavedSpillSlots(). 2019-11-25 19:03:05 +01:00
anyregcc-vec.ll [SystemZ] Add support for anyregcc calling convention 2018-03-02 20:40:11 +00:00
anyregcc.ll [SystemZ] Add support for anyregcc calling convention 2018-03-02 20:40:11 +00:00
args-01.ll
args-02.ll
args-03.ll
args-04.ll
args-05.ll
args-06.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
args-07.ll
args-08.ll
args-09.ll
args-10.ll
asm-01.ll
asm-02.ll
asm-03.ll
asm-04.ll
asm-05.ll [SystemZ] Add support for the "o" inline asm constraint 2017-11-09 16:31:57 +00:00
asm-06.ll
asm-07.ll
asm-08.ll
asm-09.ll
asm-10.ll
asm-11.ll
asm-12.ll
asm-13.ll
asm-14.ll
asm-15.ll
asm-16.ll
asm-17.ll
asm-18.ll [SystemZ, RegAlloc] Favor 3-address instructions during instruction selection. 2019-06-08 06:19:15 +00:00
asm-19.ll [SystemZ] Support vector registers in inline asm 2018-03-02 20:36:34 +00:00
asm-20.ll [SystemZ] Recognize INLINEASM_BR in backend 2019-09-05 10:20:05 +00:00
atomic-fence-01.ll
atomic-fence-02.ll
atomic-load-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
atomic-load-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
atomic-load-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
atomic-load-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
atomic-load-05.ll [SystemZ] Add support for 128-bit atomic load/store/cmpxchg 2017-08-04 18:57:58 +00:00
atomic-store-01.ll [SystemZ] Eliminate unnecessary serialization operations 2017-08-04 18:53:35 +00:00
atomic-store-02.ll [SystemZ] Eliminate unnecessary serialization operations 2017-08-04 18:53:35 +00:00
atomic-store-03.ll [SystemZ] Eliminate unnecessary serialization operations 2017-08-04 18:53:35 +00:00
atomic-store-04.ll [SystemZ] Eliminate unnecessary serialization operations 2017-08-04 18:53:35 +00:00
atomic-store-05.ll [SystemZ] Add support for 128-bit atomic load/store/cmpxchg 2017-08-04 18:57:58 +00:00
atomicrmw-add-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-add-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-add-03.ll
atomicrmw-add-04.ll
atomicrmw-add-05.ll
atomicrmw-add-06.ll
atomicrmw-and-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-and-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-and-03.ll
atomicrmw-and-04.ll
atomicrmw-and-05.ll
atomicrmw-and-06.ll
atomicrmw-minmax-01.ll [MBP] Move a latch block with conditional exit and multi predecessors to top of loop 2019-06-14 23:08:59 +00:00
atomicrmw-minmax-02.ll [MBP] Move a latch block with conditional exit and multi predecessors to top of loop 2019-06-14 23:08:59 +00:00
atomicrmw-minmax-03.ll [IfConversion] Maintain the CFG when predicating/merging blocks in IfConvert* 2017-08-11 06:57:08 +00:00
atomicrmw-minmax-04.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-nand-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-nand-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-nand-03.ll
atomicrmw-nand-04.ll
atomicrmw-or-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-or-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-or-03.ll
atomicrmw-or-04.ll
atomicrmw-or-05.ll
atomicrmw-or-06.ll
atomicrmw-sub-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-sub-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-sub-03.ll
atomicrmw-sub-04.ll
atomicrmw-sub-05.ll
atomicrmw-sub-06.ll
atomicrmw-xchg-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-xchg-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-xchg-03.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-xchg-04.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-xor-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-xor-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
atomicrmw-xor-03.ll
atomicrmw-xor-04.ll
atomicrmw-xor-05.ll
atomicrmw-xor-06.ll
backchain.ll [FileCheck] Add -allow-deprecated-dag-overlap to failing llvm tests 2018-07-11 20:25:49 +00:00
branch-01.ll
branch-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
branch-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
branch-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
branch-05.ll
branch-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
branch-07.ll [SystemZ] Rework IPM sequence generation 2018-01-19 20:52:04 +00:00
branch-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
branch-09.ll
branch-10.ll
branch-11.ll [SystemZ] Add support for IBM z14 processor (1/3) 2017-07-17 17:41:11 +00:00
branch-folder-hoist-livein.mir [BranchFolding] Fix live-in's when hoisting code 2018-06-07 07:20:33 +00:00
bswap-01.ll
bswap-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
bswap-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
bswap-04.ll [SystemZ] Fix test cases after r326613 2018-03-02 21:22:42 +00:00
bswap-05.ll [SystemZ] Fix test cases after r326613 2018-03-02 21:22:42 +00:00
bswap-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
bswap-07.ll [SystemZ] Fix test cases after r326613 2018-03-02 21:22:42 +00:00
bswap-08.ll [SystemZ] Fix truncstore + bswap codegen bug 2017-09-19 20:50:05 +00:00
buildvector-00.ll [DAG] Refactor DAGCombiner::ReassociateOps 2019-04-29 17:50:10 +00:00
builtins.ll
call-01.ll
call-02.ll
call-03.ll [Regalloc] Generate and store multiple regalloc hints. 2017-12-05 10:52:24 +00:00
call-04.ll
call-05.ll [BPI] Adjust the probability for floating point unordered comparison 2019-09-10 17:25:11 +00:00
cc-liveness.ll Rename ExpandISelPseudo->FinalizeISel, delay register reservation 2019-06-19 00:25:39 +00:00
clear-liverange-spillreg.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
cmpxchg-01.ll [SystemZ] Directly use CC result of compare-and-swap 2018-01-19 20:54:18 +00:00
cmpxchg-02.ll [SystemZ] Directly use CC result of compare-and-swap 2018-01-19 20:54:18 +00:00
cmpxchg-03.ll [SystemZ] Directly use CC result of compare-and-swap 2018-01-19 20:54:18 +00:00
cmpxchg-04.ll [SystemZ] Directly use CC result of compare-and-swap 2018-01-19 20:54:18 +00:00
cmpxchg-05.ll [SystemZ] Custom-expand ATOMIC_CMP_AND_SWAP_WITH_SUCCESS 2017-09-28 16:22:54 +00:00
cmpxchg-06.ll [SystemZ] Directly use CC result of compare-and-swap 2018-01-19 20:54:18 +00:00
codegenprepare-splitstore.ll [NFC] Update the test to check the endianness after the CodeGenPrepare instead of checking the assembly instructions. 2019-06-04 08:45:07 +00:00
codemodel.ll [Targets] Fixup incorrect targets in codemodel tests 2018-12-10 20:55:34 +00:00
combine_loads_from_build_pair.ll [PPC] Remove Darwin support from POWER backend. 2018-08-28 01:18:29 +00:00
cond-load-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-load-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-load-03.ll [FileCheck] Add -allow-deprecated-dag-overlap to failing llvm tests 2018-07-11 20:25:49 +00:00
cond-move-01.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
cond-move-02.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
cond-move-03.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
cond-move-04.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
cond-move-05.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
cond-move-06.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
cond-move-07.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
cond-move-08.mir [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
cond-move-09.mir [SystemZ] Add SystemZPostRewrite in addPostRegAlloc() instead at -O0. 2019-09-30 07:29:54 +00:00
cond-move-regalloc-hints.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
cond-store-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-store-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-store-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-store-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-store-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-store-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-store-07.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-store-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
cond-store-09.ll
copy-physreg-128.ll [SystemZ] Make copyPhysReg() add impl-use operands of super reg. 2017-05-04 13:33:30 +00:00
ctpop-01.ll [SystemZ, RegAlloc] Favor 3-address instructions during instruction selection. 2019-06-08 06:19:15 +00:00
ctpop-02.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
dag-combine-01.ll [SystemZ, LoopStrengthReduce] 2017-07-21 11:59:37 +00:00
dag-combine-02.ll [SystemZ] Prefer LOCHI over generating IPM sequences 2018-01-19 20:56:04 +00:00
dag-combine-03.ll [SystemZ] Remove icmp undef from reduced tests 2019-03-18 13:55:28 +00:00
dag-combine-04.ll [SystemZ] Bugfix in combineSTORE(). 2018-05-25 09:01:23 +00:00
dag-combine-05.ll [DAGCombiner] Don't allow addcarry if the carry producer is illegal. 2019-03-27 08:41:46 +00:00
debuginstr-00.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
debuginstr-01.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
debuginstr-02.mir [SystemZ] Improve emitSelect() 2019-09-25 14:00:33 +00:00
debuginstr-cgp.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
dyn-alloca-offset.ll
expand-zext-pseudo.ll
extract-vector-elt-zEC12.ll
fentry-insertion.ll [SystemZ] Add support for fentry. 2019-09-03 11:21:12 +00:00
fold-memory-op-impl.ll
fp-abs-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-abs-02.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-abs-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-abs-04.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-add-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-add-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-add-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-add-04.ll [SystemZ] Add support for IBM z14 processor (3/3) 2017-07-17 17:44:20 +00:00
fp-cmp-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-cmp-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-cmp-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-cmp-04.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-cmp-05.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-cmp-06.ll [SystemZ] Add support for IBM z14 processor (3/3) 2017-07-17 17:44:20 +00:00
fp-cmp-07.mir [SystemZ] Model floating-point control register 2019-05-13 09:47:26 +00:00
fp-const-01.ll
fp-const-02.ll
fp-const-03.ll
fp-const-04.ll
fp-const-05.ll
fp-const-06.ll
fp-const-07.ll
fp-const-08.ll
fp-const-09.ll
fp-const-10.ll
fp-const-11.ll [SystemZ] Wait with selection of legal vector/FP constants until Select(). 2019-02-26 16:47:59 +00:00
fp-const-12.ll [SystemZ] Use VGM whenever possible to load FP immediates. 2019-02-12 18:06:06 +00:00
fp-conv-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-conv-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-conv-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-conv-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-conv-05.ll
fp-conv-06.ll
fp-conv-07.ll
fp-conv-08.ll
fp-conv-09.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-conv-10.ll Regenerate FP_TO_INT tests. 2018-10-27 15:00:38 +00:00
fp-conv-11.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-conv-12.ll Regenerate FP_TO_INT tests. 2018-10-27 15:00:38 +00:00
fp-conv-13.ll
fp-conv-14.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-conv-15.ll [SystemZ] Add support for IBM z14 processor (3/3) 2017-07-17 17:44:20 +00:00
fp-conv-16.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-conv-17.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
fp-conv-18.ll Recommit "[SystemZ] Do not emit VEXTEND or VROUND nodes without vector support." 2019-02-15 19:13:55 +00:00
fp-copysign-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-copysign-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
fp-div-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-div-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-div-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-div-04.ll [SystemZ] Add support for IBM z14 processor (3/3) 2017-07-17 17:44:20 +00:00
fp-libcall.ll [SelectionDAG] Expand nnan FMINNUM/FMAXNUM to select sequence 2019-12-04 10:32:35 +01:00
fp-move-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-move-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-move-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-move-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-move-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-move-06.ll
fp-move-07.ll
fp-move-08.ll
fp-move-09.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-move-10.ll
fp-move-11.ll
fp-move-12.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-move-13.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-mul-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-mul-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-mul-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-mul-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-mul-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-mul-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-mul-07.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-mul-08.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-mul-09.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-mul-10.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-mul-11.ll [SystemZ] Add support for IBM z14 processor (3/3) 2017-07-17 17:44:20 +00:00
fp-mul-12.ll [SystemZ] Add support for IBM z14 processor (3/3) 2017-07-17 17:44:20 +00:00
fp-neg-01.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-neg-02.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-round-01.ll [SystemZ] Add a couple of missing tests 2018-11-09 19:16:21 +00:00
fp-round-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-round-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-sincos-01.ll [SelectionDAG] Allow sin/cos -> sincos optimization on GNU triples w/ just -fno-math-errno 2017-06-12 17:15:41 +00:00
fp-sqrt-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-sqrt-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-sqrt-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-sqrt-04.ll [SystemZ] Add support for IBM z14 processor (3/3) 2017-07-17 17:44:20 +00:00
fp-strict-add-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-add-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-add-03.ll [SystemZ] Avoid mixing strict and non-strict FP operations in tests 2019-11-20 19:51:30 +01:00
fp-strict-add-04.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-alias.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-03.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-04.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-09.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-10.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-11.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-12.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-14.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-15.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-conv-16.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-div-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-div-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-div-03.ll [SystemZ] Avoid mixing strict and non-strict FP operations in tests 2019-11-20 19:51:30 +01:00
fp-strict-div-04.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-mul-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-mul-02.ll [FPEnv][SelectionDAG] Relax chain requirements 2019-12-06 11:02:11 +01:00
fp-strict-mul-03.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-mul-04.ll [FPEnv][SelectionDAG] Relax chain requirements 2019-12-06 11:02:11 +01:00
fp-strict-mul-05.ll [SystemZ] Avoid mixing strict and non-strict FP operations in tests 2019-11-20 19:51:30 +01:00
fp-strict-mul-06.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-mul-07.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-mul-08.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-strict-mul-09.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-strict-mul-10.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
fp-strict-mul-11.ll [SystemZ] Avoid mixing strict and non-strict FP operations in tests 2019-11-20 19:51:30 +01:00
fp-strict-round-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-round-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-round-03.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-sqrt-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-sqrt-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-sqrt-03.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-sqrt-04.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-sub-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-sub-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-strict-sub-03.ll [SystemZ] Avoid mixing strict and non-strict FP operations in tests 2019-11-20 19:51:30 +01:00
fp-strict-sub-04.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
fp-sub-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-sub-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-sub-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
fp-sub-04.ll [SystemZ] Add support for IBM z14 processor (3/3) 2017-07-17 17:44:20 +00:00
fpc-intrinsics.ll
frame-01.ll
frame-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
frame-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
frame-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
frame-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
frame-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
frame-07.ll Replace "no-frame-pointer-*" function attributes with "frame-pointer" 2019-01-14 10:55:55 +00:00
frame-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
frame-09.ll Replace "no-frame-pointer-*" function attributes with "frame-pointer" 2019-01-14 10:55:55 +00:00
frame-10.ll
frame-11.ll
frame-13.ll Replace "no-frame-pointer-*" function attributes with "frame-pointer" 2019-01-14 10:55:55 +00:00
frame-14.ll Replace "no-frame-pointer-*" function attributes with "frame-pointer" 2019-01-14 10:55:55 +00:00
frame-15.ll Replace "no-frame-pointer-*" function attributes with "frame-pointer" 2019-01-14 10:55:55 +00:00
frame-16.ll Replace "no-frame-pointer-*" function attributes with "frame-pointer" 2019-01-14 10:55:55 +00:00
frame-17.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
frame-18.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
frame-19.ll [SystemZ] Support vector load/store alignment hints 2019-06-19 14:20:00 +00:00
frame-20.ll
frame-21.ll [SystemZ] Fix missing emergency spill slot corner case 2017-06-26 16:50:32 +00:00
frameaddr-01.ll
ghc-cc-01.ll [SystemZ] Add GHC calling convention 2019-11-04 13:45:51 +01:00
ghc-cc-02.ll [SystemZ] Add GHC calling convention 2019-11-04 13:45:51 +01:00
ghc-cc-03.ll [SystemZ] Add GHC calling convention 2019-11-04 13:45:51 +01:00
ghc-cc-04.ll [SystemZ] Add GHC calling convention 2019-11-04 13:45:51 +01:00
ghc-cc-05.ll [SystemZ] Add GHC calling convention 2019-11-04 13:45:51 +01:00
ghc-cc-06.ll [SystemZ] Add GHC calling convention 2019-11-04 13:45:51 +01:00
ghc-cc-07.ll [SystemZ] Add GHC calling convention 2019-11-04 13:45:51 +01:00
hoist-const-stores.ll [MachineLICM] Re-enable hoisting of constant stores 2018-04-09 14:50:02 +00:00
htm-intrinsics.ll
inline-asm-i-constraint-i1.ll [TargetLowering] Extend bool args to inline-asm according to getBooleanType 2019-05-22 16:16:15 +00:00
inlineasm-output-template.ll [AsmPrinter] refactor to support %c w/ GlobalAddress' 2019-04-26 18:45:04 +00:00
insert-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
insert-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
insert-03.ll
insert-04.ll
insert-05.ll [DAGCombiner] When combining zero_extend of a truncate, only mask before extending for vectors. 2018-03-01 22:32:25 +00:00
insert-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-abs-01.ll
int-add-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-add-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-add-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-add-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-add-05.ll [SystemZ, RegAlloc] Favor 3-address instructions during instruction selection. 2019-06-08 06:19:15 +00:00
int-add-06.ll
int-add-07.ll
int-add-08.ll [DAGCombiner] [CodeGenPrepare] More comprehensive GEP splitting 2019-06-17 10:54:12 +00:00
int-add-09.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-add-10.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-add-11.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-add-12.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-add-13.ll
int-add-14.ll
int-add-15.ll
int-add-16.ll
int-add-17.ll [SystemZ] Add support for IBM z14 processor (1/3) 2017-07-17 17:41:11 +00:00
int-add-18.mir [SystemZ] Fix AHIMuxK pseudo expansion. 2019-06-18 12:10:02 +00:00
int-cmp-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-07.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-09.ll
int-cmp-10.ll
int-cmp-11.ll
int-cmp-12.ll
int-cmp-13.ll
int-cmp-14.ll
int-cmp-15.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-16.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-17.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-18.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-19.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-20.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-21.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-22.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-23.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-24.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-25.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-26.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-27.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-28.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-29.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-30.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-31.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-32.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-33.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-34.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-35.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-36.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-37.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-38.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-39.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-40.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-41.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-42.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-43.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-44.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-45.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-46.ll
int-cmp-47.ll [SystemZ] Validate shifted compare value in adjustForTestUnderMask 2017-12-05 19:42:07 +00:00
int-cmp-48.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-cmp-49.ll
int-cmp-50.ll
int-cmp-51.ll [CodeGen] Unify MBB reference format in both MIR and debug output 2017-12-04 17:18:51 +00:00
int-cmp-52.ll
int-cmp-53.ll
int-cmp-54.ll [SystemZ] Add a check against zero before calling getTestUnderMaskCond() 2017-06-26 13:38:27 +00:00
int-cmp-55.ll [SystemZ] Do not use glue to represent condition code dependencies 2018-04-30 17:52:32 +00:00
int-const-01.ll
int-const-02.ll [SystemZ] Do not crash when selecting an OR of two constants 2017-11-14 20:00:34 +00:00
int-const-03.ll
int-const-04.ll
int-const-05.ll
int-const-06.ll
int-conv-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-07.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-09.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-10.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-11.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-12.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-conv-13.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-div-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-div-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-div-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-div-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-div-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-div-06.ll [CodeGen] Print register names in lowercase in both MIR and debug output 2017-11-28 17:15:09 +00:00
int-move-01.ll
int-move-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-move-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-move-04.ll
int-move-05.ll
int-move-06.ll
int-move-07.ll
int-move-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-move-09.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-mul-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-mul-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-mul-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-mul-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-mul-05.ll
int-mul-06.ll
int-mul-07.ll
int-mul-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-mul-09.ll [SystemZ] Add support for IBM z14 processor (1/3) 2017-07-17 17:41:11 +00:00
int-mul-10.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-mul-11.ll [SystemZ] Add support for IBM z14 processor (1/3) 2017-07-17 17:41:11 +00:00
int-neg-01.ll
int-neg-02.ll
int-sadd-01.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-sadd-02.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-sadd-03.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-sadd-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-sadd-05.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-sadd-06.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-sadd-07.ll [SystemZ] Improve codegen for certain SADDO-immediate cases 2019-04-03 15:09:19 +00:00
int-sadd-08.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-sadd-09.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-ssub-01.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-ssub-02.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-ssub-03.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-ssub-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-ssub-05.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-ssub-06.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-ssub-07.ll [DAGCombiner][X86][SystemZ] Canonicalize SSUBO with immediate RHS to SADDO by negating the immediate. 2019-04-09 18:33:56 +00:00
int-ssub-08.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-ssub-09.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-sub-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-sub-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-sub-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-sub-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-sub-05.ll [DAGCombiner] [CodeGenPrepare] More comprehensive GEP splitting 2019-06-17 10:54:12 +00:00
int-sub-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-sub-07.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
int-sub-08.ll
int-sub-09.ll
int-sub-10.ll [SystemZ] Add support for IBM z14 processor (1/3) 2017-07-17 17:41:11 +00:00
int-sub-11.ll [SystemZ, RegAlloc] Favor 3-address instructions during instruction selection. 2019-06-08 06:19:15 +00:00
int-uadd-01.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-uadd-02.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-uadd-03.ll [X86] Add more add/sub carry tests 2019-11-12 11:36:59 +02:00
int-uadd-04.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-uadd-05.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-uadd-06.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-uadd-07.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-uadd-08.ll [SystemZ] Reimplent SchedModel IssueWidth and WriteRes/ReadAdvance mappings. 2018-07-20 09:40:43 +00:00
int-uadd-09.ll [SystemZ] Reimplent SchedModel IssueWidth and WriteRes/ReadAdvance mappings. 2018-07-20 09:40:43 +00:00
int-uadd-10.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-uadd-11.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-uadd-12.ll [SystemZ] Bugfix in isFusableLoadOpStorePattern() 2019-04-04 12:12:35 +00:00
int-usub-01.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-usub-02.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-usub-03.ll [X86] Add more add/sub carry tests 2019-11-12 11:36:59 +02:00
int-usub-04.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-usub-05.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-usub-06.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-usub-07.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-usub-08.ll [SystemZ] Reimplent SchedModel IssueWidth and WriteRes/ReadAdvance mappings. 2018-07-20 09:40:43 +00:00
int-usub-09.ll [SystemZ] Reimplent SchedModel IssueWidth and WriteRes/ReadAdvance mappings. 2018-07-20 09:40:43 +00:00
int-usub-10.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
int-usub-11.ll [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY 2018-04-30 17:54:28 +00:00
ipra-04.ll [RegUsageInfoCollector] Bugfix for callee saved registers. 2018-05-25 08:42:02 +00:00
ipra.ll [RegUsageInfoCollector] Bugfix for handling of register aliases. 2018-05-04 07:50:05 +00:00
isel-debug.ll [SystemZ] Pass the DAG pointer from SystemZAddressingMode::dump(). 2018-10-26 00:02:33 +00:00
knownbits-intrinsics-binop.ll [SystemZ] computeKnownBitsForTargetNode() / ComputeNumSignBitsForTargetNode() 2018-03-17 08:32:12 +00:00
knownbits-intrinsics-unpack.ll [SystemZ] computeKnownBitsForTargetNode() / ComputeNumSignBitsForTargetNode() 2018-03-17 08:32:12 +00:00
knownbits.ll [SystemZ] Remove icmp undef 2019-03-14 11:56:41 +00:00
la-01.ll
la-02.ll
la-03.ll
la-04.ll
la-05.ll [SystemZ] Improve handling of huge PC relative immediate offsets. 2019-11-04 10:38:18 +01:00
list-ilp-crash.ll [SystemZ] Implement getRepRegClassFor() 2017-05-10 13:03:25 +00:00
lit.local.cfg [lit] Delete empty lines at the end of lit.local.cfg NFC 2019-06-17 09:51:07 +00:00
load-and-test-RA-hints.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
load-and-test.mir Followup on Proposal to move MIR physical register namespace to '$' sigil. 2018-01-31 22:04:26 +00:00
locr-legal-regclass.ll
loop-01.ll [MBP] Move a latch block with conditional exit and multi predecessors to top of loop 2019-06-14 23:08:59 +00:00
loop-02.ll [MBP] Move a latch block with conditional exit and multi predecessors to top of loop 2019-06-14 23:08:59 +00:00
loop-03.ll Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1) 2018-01-19 17:13:12 +00:00
loop-04.ll [SystemZ] Check the bitwidth before calling isInt/isUInt. 2018-01-31 12:41:25 +00:00
lower-copy-undef-src.mir Followup on Proposal to move MIR physical register namespace to '$' sigil. 2018-01-31 22:04:26 +00:00
mature-mc-support.ll Change -march=systemz to triple and fix test 2019-09-27 16:19:15 +00:00
memchr-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
memchr-nobuiltin.ll
memcmp-01.ll [SystemZ] Do not return INT_MIN from strcmp/memcmp 2019-02-06 15:10:13 +00:00
memcmp-02.ll [SystemZ] Add "REQUIRES: asserts" to test case to fix build bots. 2018-03-20 08:29:19 +00:00
memcmp-nobuiltin.ll
memcpy-01.ll Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1) 2018-01-19 17:13:12 +00:00
memcpy-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
memset-01.ll Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1) 2018-01-19 17:13:12 +00:00
memset-02.ll Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1) 2018-01-19 17:13:12 +00:00
memset-03.ll Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1) 2018-01-19 17:13:12 +00:00
memset-04.ll Remove alignment argument from memcpy/memmove/memset in favour of alignment attributes (Step 1) 2018-01-19 17:13:12 +00:00
misched-readadvances.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
mnop-mcount-01.ll [SystemZ] Recognize mnop-mcount in backend 2019-09-26 08:38:07 +00:00
mnop-mcount-02.ll [SystemZ] Recognize mnop-mcount in backend 2019-09-26 08:38:07 +00:00
multiselect.ll [SystemZ] Improve emitSelect() 2019-09-25 14:00:33 +00:00
no-postra-sink.mir [PostRASink]Add register dependency check for implicit operands 2018-04-13 14:23:09 +00:00
not-01.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
or-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
or-02.ll
or-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
or-04.ll
or-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
or-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
or-07.ll
or-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
patchpoint-invoke.ll [SystemZ] Support stackmaps and patchpoints 2018-03-02 20:39:30 +00:00
patchpoint.ll [SystemZ] Support stackmaps and patchpoints 2018-03-02 20:39:30 +00:00
pie.ll
postra-sched-expandedops.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
pr31710.ll
pr32372.ll [DAGCombiner] Add X / X -> 1 & X % X -> 0 folds (test tweaks) 2018-08-29 11:18:14 +00:00
pr32505.ll Followup on Proposal to move MIR physical register namespace to '$' sigil. 2018-01-31 22:04:26 +00:00
pr36164.ll [DAGCombine] Improve alias analysis for chain of independent stores. 2018-11-08 19:14:20 +00:00
pr42512.ll [SystemZ] Fix addcarry of usubo (PR42512) 2019-07-05 20:35:11 +00:00
pr42606.ll [SystemZ] Fix addcarry of addcarry of const carry (PR42606) 2019-07-12 20:03:34 +00:00
prefetch-01.ll
regalloc-GR128-02.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
regalloc-GR128.ll [SystemZ] implement shouldCoalesce() 2017-09-29 14:31:39 +00:00
regalloc-fast-invalid-kill-flag.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
regcoal-subranges-update-remat.mir [RegisterCoalescer] Fix the creation of subranges when rematerialization is used 2019-12-05 16:32:30 -08:00
regcoal-subranges-update.mir [LiveRange] Reset the VNIs when splitting subranges 2019-03-26 21:27:15 +00:00
regcoal-undef-lane-4-rm-cp-commuting-def.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
ret-addr-01.ll
risbg-01.ll [SystemZ] set 'guessInstructionProperties = 0' and set flags as needed. 2017-12-05 11:24:39 +00:00
risbg-02.ll
risbg-03.ll
risbg-04.ll [SystemZ] Fix invalid codegen using RISBMux on out-of-range bits 2017-11-14 19:20:46 +00:00
rnsbg-01.ll
rosbg-01.ll
rosbg-02.ll Relax fast register allocator related test cases; NFC 2018-10-29 20:10:42 +00:00
rot-01.ll
rot-02.ll
rot-shift-64-sub-amt.ll [SystemZ] Improve instruction selection of 64 bit shifts and rotates. 2019-04-02 15:36:30 +00:00
rxsbg-01.ll
scalar-ctlz.ll [SystemZ, RegAlloc] Favor 3-address instructions during instruction selection. 2019-06-08 06:19:15 +00:00
selectcc-01.ll
selectcc-02.ll
selectcc-03.ll
selectcc-04.ll [SystemZ] Fold AHIMux in foldMemoryOperandImpl. 2018-05-18 11:54:04 +00:00
setcc-01.ll
setcc-02.ll
setcc-03.ll [SystemZ] Rework IPM sequence generation 2018-01-19 20:52:04 +00:00
setcc-04.ll [SystemZ] Rework IPM sequence generation 2018-01-19 20:52:04 +00:00
shift-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
shift-02.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
shift-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
shift-04.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
shift-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
shift-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
shift-07.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
shift-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
shift-09.ll
shift-10.ll
shift-11.ll
shift-12.ll [SystemZ, TableGen] Fix shift count handling 2018-08-01 11:57:58 +00:00
signbits-intrinsics-binop.ll [SystemZ] computeKnownBitsForTargetNode() / ComputeNumSignBitsForTargetNode() 2018-03-17 08:32:12 +00:00
signbits-intrinsics-unpack.ll [SystemZ] computeKnownBitsForTargetNode() / ComputeNumSignBitsForTargetNode() 2018-03-17 08:32:12 +00:00
signbits.ll [SystemZ] Add 'REQUIRES: asserts' to test case using debug output. 2018-03-17 09:15:13 +00:00
spill-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
splitMove_undefReg_mverifier.ll
splitMove_undefReg_mverifier_2.ll [SystemZ] Update kill-flag in splitMove(). 2017-04-24 12:40:28 +00:00
stack-guard.ll Add address space mangling to lifetime intrinsics 2017-04-10 20:18:21 +00:00
stack-size-section.ll Recommit r335333 "[MC] - Add .stack_size sections into groups and link them with .text" 2018-06-22 10:53:47 +00:00
stackmap-nops.ll [SystemZ] Support stackmaps and patchpoints 2018-03-02 20:39:30 +00:00
stackmap-shadow-optimization.ll [SystemZ] Support stackmaps and patchpoints 2018-03-02 20:39:30 +00:00
stackmap.ll [SystemZ] Support stackmaps and patchpoints 2018-03-02 20:39:30 +00:00
store_nonbytesized_vecs.ll [SystemZ] Regenerate <8 x i31> store test 2019-07-29 09:49:23 +00:00
strcmp-01.ll [SystemZ] Do not return INT_MIN from strcmp/memcmp 2019-02-06 15:10:13 +00:00
strcmp-nobuiltin.ll
strcpy-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
strcpy-nobuiltin.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
strlen-01.ll [CodeGen] Unify MBB reference format in both MIR and debug output 2017-12-04 17:18:51 +00:00
strlen-nobuiltin.ll
subregliveness-01.ll Remove irrelevant references to legacy git repositories from 2019-01-15 16:18:52 +00:00
subregliveness-02.ll [SystemZ] Remove sitofp(undef) from reduced test case. 2019-06-03 12:58:36 +00:00
subregliveness-03.ll [RegisterCoalescer] Reset VNInfo def when copying segments over 2018-08-15 16:21:53 +00:00
subregliveness-04.ll Revert rL357745: [SelectionDAG] Compute known bits of CopyFromReg 2019-04-10 18:00:41 +00:00
subregliveness-05.ll [SystemZ] make test immune to improvements in undef simplification 2018-11-18 16:50:44 +00:00
subregliveness-06.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
subregliveness-07.mir [Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing 2019-09-11 11:16:48 +00:00
swift-return.ll [FastISel] Skip creating unnecessary vregs for arguments 2019-06-10 16:53:37 +00:00
swifterror.ll [MBP] Move a latch block with conditional exit and multi predecessors to top of loop 2019-06-14 23:08:59 +00:00
swiftself.ll
tail-call-mem-intrinsics.ll Change -march=systemz to triple and fix test 2019-09-27 16:19:15 +00:00
tdc-01.ll
tdc-02.ll
tdc-03.ll
tdc-04.ll
tdc-05.ll
tdc-06.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
tdc-07.ll [SystemZ] Add support for IBM z14 processor (3/3) 2017-07-17 17:44:20 +00:00
tls-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
tls-02.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
tls-03.ll
tls-04.ll
tls-05.ll
tls-06.ll
tls-07.ll
trap-01.ll
trap-02.ll [SystemZ] Fix trap issue and enable expensive checks. 2017-06-23 14:30:46 +00:00
trap-03.ll
trap-04.ll
trap-05.ll
twoaddr-sink.ll [SystemZ] set 'guessInstructionProperties = 0' and set flags as needed. 2017-12-05 11:24:39 +00:00
unaligned-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
undef-flag.ll
vec-abi-align.ll
vec-abs-01.ll
vec-abs-02.ll
vec-abs-03.ll
vec-abs-04.ll
vec-abs-05.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-abs-06.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-add-01.ll
vec-add-02.ll [SystemZ] Add support for IBM z14 processor (2/3) 2017-07-17 17:42:48 +00:00
vec-and-01.ll
vec-and-02.ll
vec-and-03.ll
vec-and-04.ll [SystemZ] Add support for IBM z14 processor (1/3) 2017-07-17 17:41:11 +00:00
vec-args-01.ll
vec-args-02.ll
vec-args-03.ll
vec-args-04.ll
vec-args-05.ll
vec-args-06.ll
vec-args-07.ll
vec-args-error-01.ll
vec-args-error-02.ll
vec-args-error-03.ll
vec-args-error-04.ll
vec-args-error-05.ll
vec-args-error-06.ll
vec-args-error-07.ll
vec-args-error-08.ll
vec-bswap-01.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-bswap-02.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-bswap-03.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-bswap-04.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-bswap-05.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-bswap-06.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-bswap-07.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-cmp-01.ll
vec-cmp-02.ll
vec-cmp-03.ll
vec-cmp-04.ll
vec-cmp-05.ll
vec-cmp-06.ll
vec-cmp-07.ll [SystemZ] Add support for IBM z14 processor (2/3) 2017-07-17 17:42:48 +00:00
vec-cmp-cmp-logic-select.ll [SystemZ] Improve decoding in case of instructions with four register operands. 2018-07-31 13:00:42 +00:00
vec-cmpsel.ll [CodeGen] Unify MBB reference format in both MIR and debug output 2017-12-04 17:18:51 +00:00
vec-combine-01.ll
vec-combine-02.ll [SystemZ, RegAlloc] Favor 3-address instructions during instruction selection. 2019-06-08 06:19:15 +00:00
vec-const-01.ll
vec-const-02.ll
vec-const-03.ll
vec-const-04.ll
vec-const-05.ll [SystemZ] Wait with selection of legal vector/FP constants until Select(). 2019-02-26 16:47:59 +00:00
vec-const-06.ll [SystemZ] Wait with selection of legal vector/FP constants until Select(). 2019-02-26 16:47:59 +00:00
vec-const-07.ll
vec-const-08.ll
vec-const-09.ll
vec-const-10.ll
vec-const-11.ll
vec-const-12.ll
vec-const-13.ll
vec-const-14.ll
vec-const-15.ll
vec-const-16.ll
vec-const-17.ll
vec-const-18.ll
vec-const-19.ll [SystemZ] Wait with selection of legal vector/FP constants until Select(). 2019-02-26 16:47:59 +00:00
vec-conv-01.ll
vec-conv-02.ll [SystemZ] Make better use of VLDEB 2018-12-20 12:59:05 +00:00
vec-conv-03.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-ctlz-01.ll
vec-ctpop-01.ll
vec-ctpop-02.ll [SystemZ] Add support for IBM z14 processor (1/3) 2017-07-17 17:41:11 +00:00
vec-cttz-01.ll
vec-div-01.ll [SystemZ] Enable machine scheduler. 2017-10-06 13:59:28 +00:00
vec-div-02.ll [SystemZ] Add support for IBM z14 processor (2/3) 2017-07-17 17:42:48 +00:00
vec-eswap-01.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-eswap-02.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-extract-01.ll [DAGCombiner][X86][SystemZ][AArch64] Combine some cases of (bitcast (build_vector constants)) between legalize types and legalize dag. 2019-03-04 19:12:16 +00:00
vec-extract-02.ll
vec-intrinsics-01.ll [SystemZ] Also update the CHECK line for VPDI 2018-02-23 13:22:46 +00:00
vec-intrinsics-02.ll [SystemZ] Prefer LOCHI over generating IPM sequences 2018-01-19 20:56:04 +00:00
vec-intrinsics-03.ll [SystemZ] Support z15 processor name 2019-09-20 23:04:45 +00:00
vec-load-element.ll [SelectionDAGBuilder] Chain prefetches less aggressively. 2018-01-10 09:33:00 +00:00
vec-log-01.ll
vec-max-01.ll
vec-max-02.ll
vec-max-03.ll
vec-max-04.ll
vec-max-05.ll [NFC] Rename minnan and maxnan to minimum and maximum 2018-10-24 22:49:55 +00:00
vec-min-01.ll
vec-min-02.ll
vec-min-03.ll
vec-min-04.ll
vec-min-05.ll [NFC] Rename minnan and maxnan to minimum and maximum 2018-10-24 22:49:55 +00:00
vec-move-01.ll
vec-move-02.ll [SystemZ] Support vector load/store alignment hints 2019-06-19 14:20:00 +00:00
vec-move-03.ll [SystemZ] Support vector load/store alignment hints 2019-06-19 14:20:00 +00:00
vec-move-04.ll
vec-move-05.ll
vec-move-06.ll
vec-move-07.ll
vec-move-08.ll [SystemZ] Make better use of VGEF/VGEG 2018-12-20 13:01:20 +00:00
vec-move-09.ll
vec-move-10.ll
vec-move-11.ll
vec-move-12.ll
vec-move-13.ll
vec-move-14.ll [SystemZ] Make better use of VLLEZ 2018-12-20 13:05:03 +00:00
vec-move-15.ll
vec-move-16.ll
vec-move-17.ll [SystemZ] Reimplent SchedModel IssueWidth and WriteRes/ReadAdvance mappings. 2018-07-20 09:40:43 +00:00
vec-move-18.ll [SystemZ] Make better use of VLLEZ 2018-12-20 13:05:03 +00:00
vec-move-19.ll [SystemZ] Avoid inserting same value after replication 2018-11-09 15:44:28 +00:00
vec-move-20.ll [SystemZ] Replicate the load with most uses in buildVector() 2018-11-12 08:12:20 +00:00
vec-move-21.ll [SystemZ] Increase the number of VLREPs 2018-11-13 08:37:09 +00:00
vec-move-22.ll [SystemZ] Increase the number of VLREPs 2018-11-13 08:37:09 +00:00
vec-mul-01.ll
vec-mul-02.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-mul-03.ll [SystemZ] Add support for IBM z14 processor (2/3) 2017-07-17 17:42:48 +00:00
vec-mul-04.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-mul-05.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-neg-01.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-neg-02.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-or-01.ll
vec-or-02.ll
vec-or-03.ll [SystemZ] Add support for IBM z14 processor (1/3) 2017-07-17 17:41:11 +00:00
vec-perm-01.ll
vec-perm-02.ll
vec-perm-03.ll
vec-perm-04.ll
vec-perm-05.ll
vec-perm-06.ll
vec-perm-07.ll
vec-perm-08.ll
vec-perm-09.ll
vec-perm-10.ll
vec-perm-11.ll
vec-perm-12.ll
vec-perm-13.ll
vec-rem.ll [SystemZ] Bugfix in SystemZTargetLowering::combineIntDIVREM() 2019-05-17 00:50:35 +00:00
vec-round-01.ll
vec-round-02.ll [SystemZ] Add support for IBM z14 processor (2/3) 2017-07-17 17:42:48 +00:00
vec-sext.ll
vec-shift-01.ll
vec-shift-02.ll
vec-shift-03.ll
vec-shift-04.ll
vec-shift-05.ll
vec-shift-06.ll
vec-shift-07.ll
vec-sqrt-01.ll
vec-sqrt-02.ll [SystemZ] Add support for IBM z14 processor (2/3) 2017-07-17 17:42:48 +00:00
vec-strict-add-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-add-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-conv-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-conv-03.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-div-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-div-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-max-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-min-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-mul-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-mul-02.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-strict-mul-03.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-mul-04.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-strict-mul-05.ll [SystemZ] Use fneg in test cases 2019-11-20 19:08:27 +01:00
vec-strict-round-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-round-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-sqrt-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-sqrt-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-sub-01.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-strict-sub-02.ll [FPEnv] Strict FP tests should use the requisite function attributes. 2019-10-04 17:03:46 +00:00
vec-sub-01.ll Re-enable "[MachineCopyPropagation] Extend pass to do COPY source forwarding" 2018-02-27 16:59:10 +00:00
vec-sub-02.ll [SystemZ] Add support for IBM z14 processor (2/3) 2017-07-17 17:42:48 +00:00
vec-trunc-to-i1.ll [TargetLowering] Add ISD::AND handling to SimplifyDemandedVectorElts 2018-12-12 13:43:07 +00:00
vec-xor-01.ll
vec-xor-02.ll [SystemZ] Add support for IBM z14 processor (1/3) 2017-07-17 17:41:11 +00:00
vec-zext.ll
vector-constrained-fp-intrinsics.ll [FPEnv][SelectionDAG] Relax chain requirements 2019-12-06 11:02:11 +01:00
vectorizer-output-3xi32.ll
xor-01.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
xor-02.ll
xor-03.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
xor-04.ll
xor-05.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
xor-06.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00
xor-07.ll
xor-08.ll [SystemZ] Test case formatting fixes 2018-07-20 12:12:10 +00:00