[opaque pointer type] Add textual IR support for explicit type parameter to load...
authorDavid Blaikie <dblaikie@gmail.com>
Fri, 27 Feb 2015 21:17:42 +0000 (21:17 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Fri, 27 Feb 2015 21:17:42 +0000 (21:17 +0000)
commit7c9c6ed761bf9d28c0c257a045b35781969136e0
tree508cac951011b10e2817eacecc1fa640bbdba51e
parentdc64962c8649964d13cc60b83c8c400d5ae7504a
[opaque pointer type] Add textual IR support for explicit type parameter to load instruction

Essentially the same as the GEP change in r230786.

A similar migration script can be used to update test cases, though a few more
test case improvements/changes were required this time around: (r229269-r229278)

import fileinput
import sys
import re

pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)")

for line in sys.stdin:
  sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line))

Reviewers: rafael, dexonsmith, grosser

Differential Revision: http://reviews.llvm.org/D7649

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
3931 files changed:
lib/AsmParser/LLParser.cpp
lib/IR/AsmWriter.cpp
test/Analysis/BasicAA/2003-02-26-AccessSizeTest.ll
test/Analysis/BasicAA/2003-04-22-GEPProblem.ll
test/Analysis/BasicAA/2003-05-21-GEP-Problem.ll
test/Analysis/BasicAA/2003-06-01-AliasCrash.ll
test/Analysis/BasicAA/2003-09-19-LocalArgument.ll
test/Analysis/BasicAA/2006-03-03-BadArraySubscript.ll
test/Analysis/BasicAA/2007-01-13-BasePointerBadNoAlias.ll
test/Analysis/BasicAA/2007-08-05-GetOverloadedModRef.ll
test/Analysis/BasicAA/2007-10-24-ArgumentsGlobals.ll
test/Analysis/BasicAA/2007-11-05-SizeCrash.ll
test/Analysis/BasicAA/2007-12-08-OutOfBoundsCrash.ll
test/Analysis/BasicAA/2008-06-02-GEPTailCrash.ll
test/Analysis/BasicAA/2008-11-23-NoaliasRet.ll
test/Analysis/BasicAA/2009-03-04-GEPNoalias.ll
test/Analysis/BasicAA/2009-10-13-AtomicModRef.ll
test/Analysis/BasicAA/2009-10-13-GEP-BaseNoAlias.ll
test/Analysis/BasicAA/2010-09-15-GEP-SignedArithmetic.ll
test/Analysis/BasicAA/2014-03-18-Maxlookup-reached.ll
test/Analysis/BasicAA/aligned-overread.ll
test/Analysis/BasicAA/args-rets-allocas-loads.ll
test/Analysis/BasicAA/byval.ll
test/Analysis/BasicAA/cas.ll
test/Analysis/BasicAA/dag.ll
test/Analysis/BasicAA/featuretest.ll
test/Analysis/BasicAA/full-store-partial-alias.ll
test/Analysis/BasicAA/gcsetest.ll
test/Analysis/BasicAA/gep-alias.ll
test/Analysis/BasicAA/global-size.ll
test/Analysis/BasicAA/invariant_load.ll
test/Analysis/BasicAA/memset_pattern.ll
test/Analysis/BasicAA/modref.ll
test/Analysis/BasicAA/must-and-partial.ll
test/Analysis/BasicAA/no-escape-call.ll
test/Analysis/BasicAA/noalias-bugs.ll
test/Analysis/BasicAA/noalias-param.ll
test/Analysis/BasicAA/nocapture.ll
test/Analysis/BasicAA/phi-aa.ll
test/Analysis/BasicAA/phi-spec-order.ll
test/Analysis/BasicAA/phi-speculation.ll
test/Analysis/BasicAA/pr18573.ll
test/Analysis/BasicAA/store-promote.ll
test/Analysis/BasicAA/tailcall-modref.ll
test/Analysis/BasicAA/underlying-value.ll
test/Analysis/BasicAA/zext.ll
test/Analysis/BlockFrequencyInfo/basic.ll
test/Analysis/BranchProbabilityInfo/basic.ll
test/Analysis/BranchProbabilityInfo/loop.ll
test/Analysis/BranchProbabilityInfo/pr18705.ll
test/Analysis/CFLAliasAnalysis/full-store-partial-alias.ll
test/Analysis/CFLAliasAnalysis/gep-signed-arithmetic.ll
test/Analysis/CFLAliasAnalysis/multilevel-combine.ll
test/Analysis/CFLAliasAnalysis/multilevel.ll
test/Analysis/CFLAliasAnalysis/must-and-partial.ll
test/Analysis/CostModel/AArch64/store.ll
test/Analysis/CostModel/ARM/insertelement.ll
test/Analysis/CostModel/PowerPC/load_store.ll
test/Analysis/CostModel/X86/intrinsic-cost.ll
test/Analysis/CostModel/X86/load_store.ll
test/Analysis/CostModel/X86/loop_v2.ll
test/Analysis/CostModel/X86/vectorized-loop.ll
test/Analysis/Delinearization/gcd_multiply_expr.ll
test/Analysis/Delinearization/himeno_1.ll
test/Analysis/Delinearization/himeno_2.ll
test/Analysis/Delinearization/multidim_only_ivs_2d.ll
test/Analysis/Delinearization/undef.ll
test/Analysis/DependenceAnalysis/Banerjee.ll
test/Analysis/DependenceAnalysis/Coupled.ll
test/Analysis/DependenceAnalysis/ExactRDIV.ll
test/Analysis/DependenceAnalysis/ExactSIV.ll
test/Analysis/DependenceAnalysis/GCD.ll
test/Analysis/DependenceAnalysis/Invariant.ll
test/Analysis/DependenceAnalysis/NonCanonicalizedSubscript.ll
test/Analysis/DependenceAnalysis/Preliminary.ll
test/Analysis/DependenceAnalysis/Propagating.ll
test/Analysis/DependenceAnalysis/Separability.ll
test/Analysis/DependenceAnalysis/StrongSIV.ll
test/Analysis/DependenceAnalysis/SymbolicRDIV.ll
test/Analysis/DependenceAnalysis/SymbolicSIV.ll
test/Analysis/DependenceAnalysis/WeakCrossingSIV.ll
test/Analysis/DependenceAnalysis/WeakZeroDstSIV.ll
test/Analysis/DependenceAnalysis/WeakZeroSrcSIV.ll
test/Analysis/DependenceAnalysis/ZIV.ll
test/Analysis/GlobalsModRef/2008-09-03-ReadGlobals.ll
test/Analysis/GlobalsModRef/aliastest.ll
test/Analysis/GlobalsModRef/chaining-analysis.ll
test/Analysis/GlobalsModRef/indirect-global.ll
test/Analysis/GlobalsModRef/modreftest.ll
test/Analysis/GlobalsModRef/pr12351.ll
test/Analysis/GlobalsModRef/volatile-instrs.ll
test/Analysis/LazyCallGraph/basic.ll
test/Analysis/LoopAccessAnalysis/backward-dep-different-types.ll
test/Analysis/LoopAccessAnalysis/unsafe-and-rt-checks-no-dbg.ll
test/Analysis/LoopAccessAnalysis/unsafe-and-rt-checks.ll
test/Analysis/MemoryDependenceAnalysis/memdep_requires_dominator_tree.ll
test/Analysis/ScalarEvolution/2008-07-12-UnneededSelect1.ll
test/Analysis/ScalarEvolution/2008-12-08-FiniteSGE.ll
test/Analysis/ScalarEvolution/2009-01-02-SignedNegativeStride.ll
test/Analysis/ScalarEvolution/2009-07-04-GroupConstantsWidthMismatch.ll
test/Analysis/ScalarEvolution/2012-03-26-LoadConstant.ll
test/Analysis/ScalarEvolution/avoid-infinite-recursion-0.ll
test/Analysis/ScalarEvolution/avoid-smax-0.ll
test/Analysis/ScalarEvolution/avoid-smax-1.ll
test/Analysis/ScalarEvolution/infer-prestart-no-wrap.ll
test/Analysis/ScalarEvolution/load-with-range-metadata.ll
test/Analysis/ScalarEvolution/load.ll
test/Analysis/ScalarEvolution/max-trip-count.ll
test/Analysis/ScalarEvolution/min-max-exprs.ll
test/Analysis/ScalarEvolution/nsw-offset-assume.ll
test/Analysis/ScalarEvolution/nsw-offset.ll
test/Analysis/ScalarEvolution/nsw.ll
test/Analysis/ScalarEvolution/pr22179.ll
test/Analysis/ScalarEvolution/pr22674.ll
test/Analysis/ScalarEvolution/scev-aa.ll
test/Analysis/ScalarEvolution/scev-prestart-nowrap.ll
test/Analysis/ScalarEvolution/sext-iv-0.ll
test/Analysis/ScalarEvolution/sext-iv-1.ll
test/Analysis/ScalarEvolution/sext-iv-2.ll
test/Analysis/ScalarEvolution/sle.ll
test/Analysis/ScalarEvolution/trip-count11.ll
test/Analysis/ScalarEvolution/trip-count12.ll
test/Analysis/ScalarEvolution/trip-count4.ll
test/Analysis/ScalarEvolution/trip-count5.ll
test/Analysis/ScalarEvolution/trip-count6.ll
test/Analysis/ScalarEvolution/trip-count7.ll
test/Analysis/ScalarEvolution/zext-signed-addrec.ll
test/Analysis/ScopedNoAliasAA/basic-domains.ll
test/Analysis/ScopedNoAliasAA/basic.ll
test/Analysis/ScopedNoAliasAA/basic2.ll
test/Analysis/TypeBasedAliasAnalysis/PR17620.ll
test/Analysis/TypeBasedAliasAnalysis/aliastest.ll
test/Analysis/TypeBasedAliasAnalysis/argument-promotion.ll
test/Analysis/TypeBasedAliasAnalysis/dse.ll
test/Analysis/TypeBasedAliasAnalysis/dynamic-indices.ll
test/Analysis/TypeBasedAliasAnalysis/gvn-nonlocal-type-mismatch.ll
test/Analysis/TypeBasedAliasAnalysis/licm.ll
test/Analysis/TypeBasedAliasAnalysis/placement-tbaa.ll
test/Analysis/TypeBasedAliasAnalysis/precedence.ll
test/Analysis/TypeBasedAliasAnalysis/sink.ll
test/Analysis/TypeBasedAliasAnalysis/tbaa-path.ll
test/Analysis/ValueTracking/memory-dereferenceable.ll
test/Assembler/2002-04-29-NameBinding.ll
test/Assembler/2002-08-19-BytecodeReader.ll
test/Assembler/2003-08-20-ConstantExprGEP-Fold.ll
test/Assembler/2004-06-07-VerifierBug.ll
test/Assembler/2007-01-05-Cmp-ConstExpr.ll
test/Assembler/2007-04-20-AlignedLoad.ll
test/Assembler/2007-12-11-AddressSpaces.ll
test/Assembler/2010-02-05-FunctionLocalMetadataBecomesNull.ll
test/Assembler/align-inst-load.ll
test/Assembler/align-inst.ll
test/Assembler/atomic.ll
test/Assembler/fast-math-flags.ll
test/Assembler/half-constprop.ll
test/Assembler/half-conv.ll
test/Assembler/insertextractvalue.ll
test/Assembler/invalid-load-mismatched-explicit-type.ll [new file with mode: 0644]
test/Assembler/invalid-load-missing-explicit-type.ll [new file with mode: 0644]
test/Assembler/numbered-values.ll
test/Assembler/unnamed.ll
test/Assembler/upgrade-loop-metadata.ll
test/Assembler/uselistorder.ll
test/Bitcode/arm32_neon_vcnt_upgrade.ll
test/Bitcode/case-ranges-3.3.ll
test/Bitcode/function-encoding-rel-operands.ll
test/Bitcode/memInstructions.3.2.ll
test/Bitcode/metadata-2.ll
test/Bitcode/upgrade-loop-metadata.ll
test/Bitcode/use-list-order.ll
test/CodeGen/AArch64/128bit_load_store.ll
test/CodeGen/AArch64/PBQP-chain.ll
test/CodeGen/AArch64/PBQP-coalesce-benefit.ll
test/CodeGen/AArch64/PBQP-csr.ll
test/CodeGen/AArch64/Redundantstore.ll
test/CodeGen/AArch64/a57-csel.ll
test/CodeGen/AArch64/aarch64-2014-08-11-MachineCombinerCrash.ll
test/CodeGen/AArch64/aarch64-2014-12-02-combine-soften.ll
test/CodeGen/AArch64/aarch64-a57-fp-load-balancing.ll
test/CodeGen/AArch64/aarch64-address-type-promotion-assertion.ll
test/CodeGen/AArch64/aarch64-address-type-promotion.ll
test/CodeGen/AArch64/aarch64-be-bv.ll
test/CodeGen/AArch64/aarch64-fix-cortex-a53-835769.ll
test/CodeGen/AArch64/aarch64-gep-opt.ll
test/CodeGen/AArch64/aarch64-smull.ll
test/CodeGen/AArch64/addsub-shifted.ll
test/CodeGen/AArch64/addsub.ll
test/CodeGen/AArch64/addsub_ext.ll
test/CodeGen/AArch64/alloca.ll
test/CodeGen/AArch64/and-mask-removal.ll
test/CodeGen/AArch64/arm64-2011-04-21-CPSRBug.ll
test/CodeGen/AArch64/arm64-2011-10-18-LdStOptBug.ll
test/CodeGen/AArch64/arm64-2012-01-11-ComparisonDAGCrash.ll
test/CodeGen/AArch64/arm64-2012-05-22-LdStOptBug.ll
test/CodeGen/AArch64/arm64-2012-06-06-FPToUI.ll
test/CodeGen/AArch64/arm64-abi-varargs.ll
test/CodeGen/AArch64/arm64-abi.ll
test/CodeGen/AArch64/arm64-abi_align.ll
test/CodeGen/AArch64/arm64-addr-mode-folding.ll
test/CodeGen/AArch64/arm64-addr-type-promotion.ll
test/CodeGen/AArch64/arm64-addrmode.ll
test/CodeGen/AArch64/arm64-alloc-no-stack-realign.ll
test/CodeGen/AArch64/arm64-alloca-frame-pointer-offset.ll
test/CodeGen/AArch64/arm64-andCmpBrToTBZ.ll
test/CodeGen/AArch64/arm64-atomic-128.ll
test/CodeGen/AArch64/arm64-atomic.ll
test/CodeGen/AArch64/arm64-basic-pic.ll
test/CodeGen/AArch64/arm64-bcc.ll
test/CodeGen/AArch64/arm64-big-endian-bitconverts.ll
test/CodeGen/AArch64/arm64-big-endian-varargs.ll
test/CodeGen/AArch64/arm64-big-endian-vector-caller.ll
test/CodeGen/AArch64/arm64-bitfield-extract.ll
test/CodeGen/AArch64/arm64-blockaddress.ll
test/CodeGen/AArch64/arm64-call-tailcalls.ll
test/CodeGen/AArch64/arm64-cast-opt.ll
test/CodeGen/AArch64/arm64-ccmp-heuristics.ll
test/CodeGen/AArch64/arm64-ccmp.ll
test/CodeGen/AArch64/arm64-code-model-large-abs.ll
test/CodeGen/AArch64/arm64-collect-loh-garbage-crash.ll
test/CodeGen/AArch64/arm64-collect-loh.ll
test/CodeGen/AArch64/arm64-complex-copy-noneon.ll
test/CodeGen/AArch64/arm64-const-addr.ll
test/CodeGen/AArch64/arm64-convert-v4f64.ll
test/CodeGen/AArch64/arm64-cse.ll
test/CodeGen/AArch64/arm64-dagcombiner-dead-indexed-load.ll
test/CodeGen/AArch64/arm64-dagcombiner-load-slicing.ll
test/CodeGen/AArch64/arm64-dup.ll
test/CodeGen/AArch64/arm64-early-ifcvt.ll
test/CodeGen/AArch64/arm64-elf-globals.ll
test/CodeGen/AArch64/arm64-ext.ll
test/CodeGen/AArch64/arm64-extend.ll
test/CodeGen/AArch64/arm64-extload-knownzero.ll
test/CodeGen/AArch64/arm64-fast-isel-addr-offset.ll
test/CodeGen/AArch64/arm64-fast-isel-br.ll
test/CodeGen/AArch64/arm64-fast-isel-call.ll
test/CodeGen/AArch64/arm64-fast-isel-conversion.ll
test/CodeGen/AArch64/arm64-fast-isel-gv.ll
test/CodeGen/AArch64/arm64-fast-isel-indirectbr.ll
test/CodeGen/AArch64/arm64-fast-isel-ret.ll
test/CodeGen/AArch64/arm64-fast-isel.ll
test/CodeGen/AArch64/arm64-fastisel-gep-promote-before-add.ll
test/CodeGen/AArch64/arm64-fmuladd.ll
test/CodeGen/AArch64/arm64-fold-address.ll
test/CodeGen/AArch64/arm64-fold-lsl.ll
test/CodeGen/AArch64/arm64-fp128-folding.ll
test/CodeGen/AArch64/arm64-fp128.ll
test/CodeGen/AArch64/arm64-i16-subreg-extract.ll
test/CodeGen/AArch64/arm64-indexed-memory.ll
test/CodeGen/AArch64/arm64-indexed-vector-ldst-2.ll
test/CodeGen/AArch64/arm64-indexed-vector-ldst.ll
test/CodeGen/AArch64/arm64-inline-asm.ll
test/CodeGen/AArch64/arm64-ld1.ll
test/CodeGen/AArch64/arm64-ldp.ll
test/CodeGen/AArch64/arm64-ldur.ll
test/CodeGen/AArch64/arm64-misched-basic-A53.ll
test/CodeGen/AArch64/arm64-misched-basic-A57.ll
test/CodeGen/AArch64/arm64-neon-simd-ldst-one.ll
test/CodeGen/AArch64/arm64-patchpoint-scratch-regs.ll
test/CodeGen/AArch64/arm64-patchpoint.ll
test/CodeGen/AArch64/arm64-pic-local-symbol.ll
test/CodeGen/AArch64/arm64-platform-reg.ll
test/CodeGen/AArch64/arm64-prefetch.ll
test/CodeGen/AArch64/arm64-redzone.ll
test/CodeGen/AArch64/arm64-register-offset-addressing.ll
test/CodeGen/AArch64/arm64-regress-interphase-shift.ll
test/CodeGen/AArch64/arm64-return-vector.ll
test/CodeGen/AArch64/arm64-rev.ll
test/CodeGen/AArch64/arm64-scaled_iv.ll
test/CodeGen/AArch64/arm64-scvt.ll
test/CodeGen/AArch64/arm64-sitofp-combine-chains.ll
test/CodeGen/AArch64/arm64-spill-lr.ll
test/CodeGen/AArch64/arm64-spill.ll
test/CodeGen/AArch64/arm64-stack-no-frame.ll
test/CodeGen/AArch64/arm64-strict-align.ll
test/CodeGen/AArch64/arm64-tls-darwin.ll
test/CodeGen/AArch64/arm64-tls-dynamic-together.ll
test/CodeGen/AArch64/arm64-tls-dynamics.ll
test/CodeGen/AArch64/arm64-tls-execs.ll
test/CodeGen/AArch64/arm64-triv-disjoint-mem-access.ll
test/CodeGen/AArch64/arm64-trn.ll
test/CodeGen/AArch64/arm64-trunc-store.ll
test/CodeGen/AArch64/arm64-unaligned_ldst.ll
test/CodeGen/AArch64/arm64-uzp.ll
test/CodeGen/AArch64/arm64-vabs.ll
test/CodeGen/AArch64/arm64-vadd.ll
test/CodeGen/AArch64/arm64-vbitwise.ll
test/CodeGen/AArch64/arm64-vcmp.ll
test/CodeGen/AArch64/arm64-vcnt.ll
test/CodeGen/AArch64/arm64-vcvt.ll
test/CodeGen/AArch64/arm64-vector-imm.ll
test/CodeGen/AArch64/arm64-vector-ldst.ll
test/CodeGen/AArch64/arm64-vext.ll
test/CodeGen/AArch64/arm64-vhadd.ll
test/CodeGen/AArch64/arm64-vhsub.ll
test/CodeGen/AArch64/arm64-vmax.ll
test/CodeGen/AArch64/arm64-vmul.ll
test/CodeGen/AArch64/arm64-volatile.ll
test/CodeGen/AArch64/arm64-vqadd.ll
test/CodeGen/AArch64/arm64-vqsub.ll
test/CodeGen/AArch64/arm64-vshift.ll
test/CodeGen/AArch64/arm64-vshr.ll
test/CodeGen/AArch64/arm64-vsqrt.ll
test/CodeGen/AArch64/arm64-vsra.ll
test/CodeGen/AArch64/arm64-vsub.ll
test/CodeGen/AArch64/arm64-weak-reference.ll
test/CodeGen/AArch64/arm64-zextload-unscaled.ll
test/CodeGen/AArch64/arm64-zip.ll
test/CodeGen/AArch64/assertion-rc-mismatch.ll
test/CodeGen/AArch64/atomic-ops-not-barriers.ll
test/CodeGen/AArch64/atomic-ops.ll
test/CodeGen/AArch64/basic-pic.ll
test/CodeGen/AArch64/bitfield-insert-0.ll
test/CodeGen/AArch64/bitfield-insert.ll
test/CodeGen/AArch64/bitfield.ll
test/CodeGen/AArch64/blockaddress.ll
test/CodeGen/AArch64/bool-loads.ll
test/CodeGen/AArch64/breg.ll
test/CodeGen/AArch64/callee-save.ll
test/CodeGen/AArch64/cmpwithshort.ll
test/CodeGen/AArch64/code-model-large-abs.ll
test/CodeGen/AArch64/combine-comparisons-by-cse.ll
test/CodeGen/AArch64/compare-branch.ll
test/CodeGen/AArch64/complex-copy-noneon.ll
test/CodeGen/AArch64/complex-int-to-fp.ll
test/CodeGen/AArch64/dag-combine-invaraints.ll
test/CodeGen/AArch64/dp-3source.ll
test/CodeGen/AArch64/dp1.ll
test/CodeGen/AArch64/dp2.ll
test/CodeGen/AArch64/eliminate-trunc.ll
test/CodeGen/AArch64/f16-convert.ll
test/CodeGen/AArch64/fast-isel-addressing-modes.ll
test/CodeGen/AArch64/fast-isel-int-ext.ll
test/CodeGen/AArch64/fast-isel-int-ext2.ll
test/CodeGen/AArch64/fast-isel-int-ext3.ll
test/CodeGen/AArch64/floatdp_1source.ll
test/CodeGen/AArch64/floatdp_2source.ll
test/CodeGen/AArch64/fp128-folding.ll
test/CodeGen/AArch64/fp16-instructions.ll
test/CodeGen/AArch64/fp16-v4-instructions.ll
test/CodeGen/AArch64/fp16-v8-instructions.ll
test/CodeGen/AArch64/fp16-vector-load-store.ll
test/CodeGen/AArch64/fpimm.ll
test/CodeGen/AArch64/free-zext.ll
test/CodeGen/AArch64/func-argpassing.ll
test/CodeGen/AArch64/func-calls.ll
test/CodeGen/AArch64/funcptr_cast.ll
test/CodeGen/AArch64/ghc-cc.ll
test/CodeGen/AArch64/global-alignment.ll
test/CodeGen/AArch64/global-merge-4.ll
test/CodeGen/AArch64/half.ll
test/CodeGen/AArch64/i1-contents.ll
test/CodeGen/AArch64/ldst-opt.ll
test/CodeGen/AArch64/ldst-regoffset.ll
test/CodeGen/AArch64/ldst-unscaledimm.ll
test/CodeGen/AArch64/ldst-unsignedimm.ll
test/CodeGen/AArch64/literal_pools_float.ll
test/CodeGen/AArch64/local_vars.ll
test/CodeGen/AArch64/logical_shifted_reg.ll
test/CodeGen/AArch64/machine_cse.ll
test/CodeGen/AArch64/neon-fpround_f128.ll
test/CodeGen/AArch64/neon-truncStore-extLoad.ll
test/CodeGen/AArch64/nzcv-save.ll
test/CodeGen/AArch64/paired-load.ll
test/CodeGen/AArch64/pic-eh-stubs.ll
test/CodeGen/AArch64/ragreedy-csr.ll
test/CodeGen/AArch64/regress-tail-livereg.ll
test/CodeGen/AArch64/regress-tblgen-chains.ll
test/CodeGen/AArch64/regress-w29-reserved-with-fp.ll
test/CodeGen/AArch64/rm_redundant_cmp.ll
test/CodeGen/AArch64/sibling-call.ll
test/CodeGen/AArch64/stack-guard-remat-bitcast.ll
test/CodeGen/AArch64/tbz-tbnz.ll
test/CodeGen/AArch64/tst-br.ll
test/CodeGen/ARM/2006-11-10-CycleInDAG.ll
test/CodeGen/ARM/2007-01-19-InfiniteLoop.ll
test/CodeGen/ARM/2007-03-07-CombinerCrash.ll
test/CodeGen/ARM/2007-03-13-InstrSched.ll
test/CodeGen/ARM/2007-03-21-JoinIntervalsCrash.ll
test/CodeGen/ARM/2007-03-27-RegScavengerAssert.ll
test/CodeGen/ARM/2007-04-02-RegScavengerAssert.ll
test/CodeGen/ARM/2007-04-03-UndefinedSymbol.ll
test/CodeGen/ARM/2007-04-30-CombinerCrash.ll
test/CodeGen/ARM/2007-05-03-BadPostIndexedLd.ll
test/CodeGen/ARM/2007-05-07-tailmerge-1.ll
test/CodeGen/ARM/2007-05-09-tailmerge-2.ll
test/CodeGen/ARM/2007-05-22-tailmerge-3.ll
test/CodeGen/ARM/2007-08-15-ReuseBug.ll
test/CodeGen/ARM/2008-02-04-LocalRegAllocBug.ll
test/CodeGen/ARM/2008-03-05-SxtInRegBug.ll
test/CodeGen/ARM/2008-03-07-RegScavengerAssert.ll
test/CodeGen/ARM/2008-04-10-ScavengerAssert.ll
test/CodeGen/ARM/2008-05-19-LiveIntervalsBug.ll
test/CodeGen/ARM/2008-07-24-CodeGenPrepCrash.ll
test/CodeGen/ARM/2008-08-07-AsmPrintBug.ll
test/CodeGen/ARM/2009-02-16-SpillerBug.ll
test/CodeGen/ARM/2009-02-22-SoftenFloatVaArg.ll
test/CodeGen/ARM/2009-02-27-SpillerBug.ll
test/CodeGen/ARM/2009-03-07-SpillerBug.ll
test/CodeGen/ARM/2009-04-06-AsmModifier.ll
test/CodeGen/ARM/2009-04-08-AggregateAddr.ll
test/CodeGen/ARM/2009-04-08-FloatUndef.ll
test/CodeGen/ARM/2009-04-09-RegScavengerAsm.ll
test/CodeGen/ARM/2009-05-11-CodePlacementCrash.ll
test/CodeGen/ARM/2009-06-04-MissingLiveIn.ll
test/CodeGen/ARM/2009-06-22-CoalescerBug.ll
test/CodeGen/ARM/2009-06-30-RegScavengerAssert.ll
test/CodeGen/ARM/2009-06-30-RegScavengerAssert2.ll
test/CodeGen/ARM/2009-06-30-RegScavengerAssert3.ll
test/CodeGen/ARM/2009-06-30-RegScavengerAssert4.ll
test/CodeGen/ARM/2009-06-30-RegScavengerAssert5.ll
test/CodeGen/ARM/2009-07-01-CommuteBug.ll
test/CodeGen/ARM/2009-07-18-RewriterBug.ll
test/CodeGen/ARM/2009-07-22-ScavengerAssert.ll
test/CodeGen/ARM/2009-07-22-SchedulerAssert.ll
test/CodeGen/ARM/2009-07-29-VFP3Registers.ll
test/CodeGen/ARM/2009-08-02-RegScavengerAssert-Neon.ll
test/CodeGen/ARM/2009-08-15-RegScavenger-EarlyClobber.ll
test/CodeGen/ARM/2009-08-21-PostRAKill.ll
test/CodeGen/ARM/2009-08-31-LSDA-Name.ll
test/CodeGen/ARM/2009-08-31-TwoRegShuffle.ll
test/CodeGen/ARM/2009-09-09-fpcmp-ole.ll
test/CodeGen/ARM/2009-09-13-InvalidSubreg.ll
test/CodeGen/ARM/2009-09-13-InvalidSuperReg.ll
test/CodeGen/ARM/2009-09-23-LiveVariablesBug.ll
test/CodeGen/ARM/2009-09-24-spill-align.ll
test/CodeGen/ARM/2009-10-02-NEONSubregsBug.ll
test/CodeGen/ARM/2009-11-02-NegativeLane.ll
test/CodeGen/ARM/2009-11-07-SubRegAsmPrinting.ll
test/CodeGen/ARM/2009-11-13-ScavengerAssert.ll
test/CodeGen/ARM/2009-11-13-ScavengerAssert2.ll
test/CodeGen/ARM/2009-11-13-VRRewriterCrash.ll
test/CodeGen/ARM/2010-03-04-eabi-fp-spill.ll
test/CodeGen/ARM/2010-03-04-stm-undef-addr.ll
test/CodeGen/ARM/2010-05-17-FastAllocCrash.ll
test/CodeGen/ARM/2010-05-18-LocalAllocCrash.ll
test/CodeGen/ARM/2010-05-18-PostIndexBug.ll
test/CodeGen/ARM/2010-05-19-Shuffles.ll
test/CodeGen/ARM/2010-05-21-BuildVector.ll
test/CodeGen/ARM/2010-06-11-vmovdrr-bitcast.ll
test/CodeGen/ARM/2010-06-21-LdStMultipleBug.ll
test/CodeGen/ARM/2010-06-21-nondarwin-tc.ll
test/CodeGen/ARM/2010-06-25-Thumb2ITInvalidIterator.ll
test/CodeGen/ARM/2010-06-29-SubregImpDefs.ll
test/CodeGen/ARM/2010-07-26-GlobalMerge.ll
test/CodeGen/ARM/2010-08-04-EHCrash.ll
test/CodeGen/ARM/2010-08-04-StackVariable.ll
test/CodeGen/ARM/2010-11-15-SpillEarlyClobber.ll
test/CodeGen/ARM/2010-12-08-tpsoft.ll
test/CodeGen/ARM/2010-12-15-elf-lcomm.ll
test/CodeGen/ARM/2011-01-19-MergedGlobalDbg.ll
test/CodeGen/ARM/2011-02-07-AntidepClobber.ll
test/CodeGen/ARM/2011-03-10-DAGCombineCrash.ll
test/CodeGen/ARM/2011-03-15-LdStMultipleBug.ll
test/CodeGen/ARM/2011-04-07-schediv.ll
test/CodeGen/ARM/2011-04-11-MachineLICMBug.ll
test/CodeGen/ARM/2011-04-12-FastRegAlloc.ll
test/CodeGen/ARM/2011-04-26-SchedTweak.ll
test/CodeGen/ARM/2011-08-02-MergedGlobalDbg.ll
test/CodeGen/ARM/2011-08-29-SchedCycle.ll
test/CodeGen/ARM/2011-08-29-ldr_pre_imm.ll
test/CodeGen/ARM/2011-09-09-OddVectorDivision.ll
test/CodeGen/ARM/2011-09-28-CMovCombineBug.ll
test/CodeGen/ARM/2011-10-26-ExpandUnalignedLoadCrash.ll
test/CodeGen/ARM/2011-11-07-PromoteVectorLoadStore.ll
test/CodeGen/ARM/2011-11-09-BitcastVectorDouble.ll
test/CodeGen/ARM/2011-11-09-IllegalVectorFPIntConvert.ll
test/CodeGen/ARM/2011-11-14-EarlyClobber.ll
test/CodeGen/ARM/2011-11-28-DAGCombineBug.ll
test/CodeGen/ARM/2011-11-29-128bitArithmetics.ll
test/CodeGen/ARM/2011-11-30-MergeAlignment.ll
test/CodeGen/ARM/2011-12-14-machine-sink.ll
test/CodeGen/ARM/2011-12-19-sjlj-clobber.ll
test/CodeGen/ARM/2012-01-23-PostRA-LICM.ll
test/CodeGen/ARM/2012-01-24-RegSequenceLiveRange.ll
test/CodeGen/ARM/2012-01-26-CopyPropKills.ll
test/CodeGen/ARM/2012-02-01-CoalescerBug.ll
test/CodeGen/ARM/2012-03-13-DAGCombineBug.ll
test/CodeGen/ARM/2012-06-12-SchedMemLatency.ll
test/CodeGen/ARM/2012-08-04-DtripleSpillReload.ll
test/CodeGen/ARM/2012-08-08-legalize-unaligned.ll
test/CodeGen/ARM/2012-08-09-neon-extload.ll
test/CodeGen/ARM/2012-08-23-legalize-vmull.ll
test/CodeGen/ARM/2012-10-04-AAPCS-byval-align8.ll
test/CodeGen/ARM/2012-10-04-FixedFrame-vs-byval.ll
test/CodeGen/ARM/2013-01-21-PR14992.ll
test/CodeGen/ARM/2013-04-18-load-overlap-PR14824.ll
test/CodeGen/ARM/2013-05-07-ByteLoadSameAddress.ll
test/CodeGen/ARM/2013-05-31-char-shift-crash.ll
test/CodeGen/ARM/2013-07-29-vector-or-combine.ll
test/CodeGen/ARM/2014-01-09-pseudo_expand_implicit_reg.ll
test/CodeGen/ARM/2015-01-21-thumbv4t-ldstr-opt.ll
test/CodeGen/ARM/MergeConsecutiveStores.ll
test/CodeGen/ARM/Windows/chkstk-movw-movt-isel.ll
test/CodeGen/ARM/Windows/dllimport.ll
test/CodeGen/ARM/Windows/frame-register.ll
test/CodeGen/ARM/Windows/movw-movt-relocations.ll
test/CodeGen/ARM/Windows/pic.ll
test/CodeGen/ARM/Windows/stack-probe-non-default.ll
test/CodeGen/ARM/Windows/vla.ll
test/CodeGen/ARM/a15-partial-update.ll
test/CodeGen/ARM/addrmode.ll
test/CodeGen/ARM/aliases.ll
test/CodeGen/ARM/alloc-no-stack-realign.ll
test/CodeGen/ARM/arm-and-tst-peephole.ll
test/CodeGen/ARM/arm-modifier.ll
test/CodeGen/ARM/atomic-64bit.ll
test/CodeGen/ARM/atomic-load-store.ll
test/CodeGen/ARM/atomic-op.ll
test/CodeGen/ARM/atomic-ops-v8.ll
test/CodeGen/ARM/available_externally.ll
test/CodeGen/ARM/avoid-cpsr-rmw.ll
test/CodeGen/ARM/bfi.ll
test/CodeGen/ARM/bfx.ll
test/CodeGen/ARM/big-endian-neon-bitconv.ll
test/CodeGen/ARM/big-endian-neon-extend.ll
test/CodeGen/ARM/big-endian-neon-trunc-store.ll
test/CodeGen/ARM/big-endian-ret-f64.ll
test/CodeGen/ARM/big-endian-vector-caller.ll
test/CodeGen/ARM/bswap16.ll
test/CodeGen/ARM/call-tc.ll
test/CodeGen/ARM/call.ll
test/CodeGen/ARM/call_nolink.ll
test/CodeGen/ARM/coalesce-dbgvalue.ll
test/CodeGen/ARM/coalesce-subregs.ll
test/CodeGen/ARM/code-placement.ll
test/CodeGen/ARM/commute-movcc.ll
test/CodeGen/ARM/compare-call.ll
test/CodeGen/ARM/copy-paired-reg.ll
test/CodeGen/ARM/crash-greedy-v6.ll
test/CodeGen/ARM/crash.ll
test/CodeGen/ARM/cse-ldrlit.ll
test/CodeGen/ARM/cse-libcalls.ll
test/CodeGen/ARM/dagcombine-anyexttozeroext.ll
test/CodeGen/ARM/debug-frame-large-stack.ll
test/CodeGen/ARM/debug-frame-vararg.ll
test/CodeGen/ARM/debug-info-blocks.ll
test/CodeGen/ARM/divmod.ll
test/CodeGen/ARM/dwarf-eh.ll
test/CodeGen/ARM/dyn-stackalloc.ll
test/CodeGen/ARM/emit-big-cst.ll
test/CodeGen/ARM/extload-knownzero.ll
test/CodeGen/ARM/extloadi1.ll
test/CodeGen/ARM/fast-isel-GEP-coalesce.ll
test/CodeGen/ARM/fast-isel-align.ll
test/CodeGen/ARM/fast-isel-call.ll
test/CodeGen/ARM/fast-isel-fold.ll
test/CodeGen/ARM/fast-isel-ldr-str-arm.ll
test/CodeGen/ARM/fast-isel-ldr-str-thumb-neg-index.ll
test/CodeGen/ARM/fast-isel-ldrh-strh-arm.ll
test/CodeGen/ARM/fast-isel-load-store-verify.ll
test/CodeGen/ARM/fast-isel-pic.ll
test/CodeGen/ARM/fast-isel-pred.ll
test/CodeGen/ARM/fast-isel-redefinition.ll
test/CodeGen/ARM/fast-isel-static.ll
test/CodeGen/ARM/fast-isel-vararg.ll
test/CodeGen/ARM/fast-isel.ll
test/CodeGen/ARM/fastisel-gep-promote-before-add.ll
test/CodeGen/ARM/flag-crash.ll
test/CodeGen/ARM/fnegs.ll
test/CodeGen/ARM/fold-stack-adjust.ll
test/CodeGen/ARM/fp.ll
test/CodeGen/ARM/fp16.ll
test/CodeGen/ARM/fpcmp-opt.ll
test/CodeGen/ARM/fpmem.ll
test/CodeGen/ARM/fptoint.ll
test/CodeGen/ARM/frame-register.ll
test/CodeGen/ARM/fusedMAC.ll
test/CodeGen/ARM/ghc-tcreturn-lowered.ll
test/CodeGen/ARM/global-merge-1.ll
test/CodeGen/ARM/globals.ll
test/CodeGen/ARM/gv-stubs-crash.ll
test/CodeGen/ARM/half.ll
test/CodeGen/ARM/hidden-vis-2.ll
test/CodeGen/ARM/hidden-vis-3.ll
test/CodeGen/ARM/ifconv-kills.ll
test/CodeGen/ARM/ifconv-regmask.ll
test/CodeGen/ARM/ifcvt-branch-weight.ll
test/CodeGen/ARM/ifcvt11.ll
test/CodeGen/ARM/ifcvt5.ll
test/CodeGen/ARM/ifcvt7.ll
test/CodeGen/ARM/illegal-vector-bitcast.ll
test/CodeGen/ARM/indirectbr-2.ll
test/CodeGen/ARM/indirectbr.ll
test/CodeGen/ARM/inline-diagnostics.ll
test/CodeGen/ARM/interrupt-attr.ll
test/CodeGen/ARM/intrinsics-crypto.ll
test/CodeGen/ARM/invoke-donothing-assert.ll
test/CodeGen/ARM/isel-v8i32-crash.ll
test/CodeGen/ARM/krait-cpu-div-attribute.ll
test/CodeGen/ARM/large-stack.ll
test/CodeGen/ARM/ldm.ll
test/CodeGen/ARM/ldr.ll
test/CodeGen/ARM/ldr_ext.ll
test/CodeGen/ARM/ldr_frame.ll
test/CodeGen/ARM/ldr_post.ll
test/CodeGen/ARM/ldr_pre.ll
test/CodeGen/ARM/ldrd-memoper.ll
test/CodeGen/ARM/ldrd.ll
test/CodeGen/ARM/ldst-f32-2-i32.ll
test/CodeGen/ARM/ldstrex-m.ll
test/CodeGen/ARM/ldstrex.ll
test/CodeGen/ARM/load-global.ll
test/CodeGen/ARM/load.ll
test/CodeGen/ARM/load_i1_select.ll
test/CodeGen/ARM/long.ll
test/CodeGen/ARM/lsr-code-insertion.ll
test/CodeGen/ARM/lsr-icmp-imm.ll
test/CodeGen/ARM/lsr-unfolded-offset.ll
test/CodeGen/ARM/machine-cse-cmp.ll
test/CodeGen/ARM/machine-licm.ll
test/CodeGen/ARM/minsize-litpools.ll
test/CodeGen/ARM/misched-copy-arm.ll
test/CodeGen/ARM/mult-alt-generic-arm.ll
test/CodeGen/ARM/negative-offset.ll
test/CodeGen/ARM/neon_cmp.ll
test/CodeGen/ARM/neon_div.ll
test/CodeGen/ARM/neon_fpconv.ll
test/CodeGen/ARM/neon_ld1.ll
test/CodeGen/ARM/neon_ld2.ll
test/CodeGen/ARM/neon_spill.ll
test/CodeGen/ARM/no-fpu.ll
test/CodeGen/ARM/no-tail-call.ll
test/CodeGen/ARM/none-macho.ll
test/CodeGen/ARM/nop_concat_vectors.ll
test/CodeGen/ARM/optselect-regclass.ll
test/CodeGen/ARM/phi.ll
test/CodeGen/ARM/popcnt.ll
test/CodeGen/ARM/pr13249.ll
test/CodeGen/ARM/pr18364-movw.ll
test/CodeGen/ARM/pr3502.ll
test/CodeGen/ARM/private.ll
test/CodeGen/ARM/reg_sequence.ll
test/CodeGen/ARM/saxpy10-a9.ll
test/CodeGen/ARM/segmented-stacks.ll
test/CodeGen/ARM/select_xform.ll
test/CodeGen/ARM/shifter_operand.ll
test/CodeGen/ARM/smul.ll
test/CodeGen/ARM/space-directive.ll
test/CodeGen/ARM/spill-q.ll
test/CodeGen/ARM/ssp-data-layout.ll
test/CodeGen/ARM/stack-alignment.ll
test/CodeGen/ARM/str_post.ll
test/CodeGen/ARM/str_pre-2.ll
test/CodeGen/ARM/str_pre.ll
test/CodeGen/ARM/struct-byval-frame-index.ll
test/CodeGen/ARM/sub-cmp-peephole.ll
test/CodeGen/ARM/swift-atomics.ll
test/CodeGen/ARM/swift-vldm.ll
test/CodeGen/ARM/tail-dup.ll
test/CodeGen/ARM/test-sharedidx.ll
test/CodeGen/ARM/thumb1-varalloc.ll
test/CodeGen/ARM/thumb1_return_sequence.ll
test/CodeGen/ARM/thumb_indirect_calls.ll
test/CodeGen/ARM/tls1.ll
test/CodeGen/ARM/tls2.ll
test/CodeGen/ARM/tls3.ll
test/CodeGen/ARM/trunc_ldr.ll
test/CodeGen/ARM/truncstore-dag-combine.ll
test/CodeGen/ARM/twoaddrinstr.ll
test/CodeGen/ARM/uint64tof64.ll
test/CodeGen/ARM/umulo-32.ll
test/CodeGen/ARM/unaligned_load_store.ll
test/CodeGen/ARM/unaligned_load_store_vector.ll
test/CodeGen/ARM/undef-sext.ll
test/CodeGen/ARM/vaba.ll
test/CodeGen/ARM/vabd.ll
test/CodeGen/ARM/vabs.ll
test/CodeGen/ARM/vadd.ll
test/CodeGen/ARM/vargs_align.ll
test/CodeGen/ARM/vbits.ll
test/CodeGen/ARM/vbsl-constant.ll
test/CodeGen/ARM/vbsl.ll
test/CodeGen/ARM/vceq.ll
test/CodeGen/ARM/vcge.ll
test/CodeGen/ARM/vcgt.ll
test/CodeGen/ARM/vcnt.ll
test/CodeGen/ARM/vcombine.ll
test/CodeGen/ARM/vcvt-cost.ll
test/CodeGen/ARM/vcvt-v8.ll
test/CodeGen/ARM/vcvt.ll
test/CodeGen/ARM/vcvt_combine.ll
test/CodeGen/ARM/vdiv_combine.ll
test/CodeGen/ARM/vdup.ll
test/CodeGen/ARM/vector-DAGCombine.ll
test/CodeGen/ARM/vector-extend-narrow.ll
test/CodeGen/ARM/vector-load.ll
test/CodeGen/ARM/vector-promotion.ll
test/CodeGen/ARM/vector-spilling.ll
test/CodeGen/ARM/vector-store.ll
test/CodeGen/ARM/vext.ll
test/CodeGen/ARM/vfcmp.ll
test/CodeGen/ARM/vfp.ll
test/CodeGen/ARM/vget_lane.ll
test/CodeGen/ARM/vhadd.ll
test/CodeGen/ARM/vhsub.ll
test/CodeGen/ARM/vicmp.ll
test/CodeGen/ARM/vld1.ll
test/CodeGen/ARM/vld2.ll
test/CodeGen/ARM/vld3.ll
test/CodeGen/ARM/vld4.ll
test/CodeGen/ARM/vlddup.ll
test/CodeGen/ARM/vldlane.ll
test/CodeGen/ARM/vldm-liveness.ll
test/CodeGen/ARM/vldm-sched-a9.ll
test/CodeGen/ARM/vminmax.ll
test/CodeGen/ARM/vminmaxnm.ll
test/CodeGen/ARM/vmla.ll
test/CodeGen/ARM/vmls.ll
test/CodeGen/ARM/vmov.ll
test/CodeGen/ARM/vmul.ll
test/CodeGen/ARM/vneg.ll
test/CodeGen/ARM/vpadal.ll
test/CodeGen/ARM/vpadd.ll
test/CodeGen/ARM/vpminmax.ll
test/CodeGen/ARM/vqadd.ll
test/CodeGen/ARM/vqdmul.ll
test/CodeGen/ARM/vqshl.ll
test/CodeGen/ARM/vqshrn.ll
test/CodeGen/ARM/vqsub.ll
test/CodeGen/ARM/vrec.ll
test/CodeGen/ARM/vrev.ll
test/CodeGen/ARM/vselect_imax.ll
test/CodeGen/ARM/vshift.ll
test/CodeGen/ARM/vshiftins.ll
test/CodeGen/ARM/vshl.ll
test/CodeGen/ARM/vshll.ll
test/CodeGen/ARM/vshrn.ll
test/CodeGen/ARM/vsra.ll
test/CodeGen/ARM/vst1.ll
test/CodeGen/ARM/vst2.ll
test/CodeGen/ARM/vst3.ll
test/CodeGen/ARM/vst4.ll
test/CodeGen/ARM/vstlane.ll
test/CodeGen/ARM/vsub.ll
test/CodeGen/ARM/vtbl.ll
test/CodeGen/ARM/vtrn.ll
test/CodeGen/ARM/vuzp.ll
test/CodeGen/ARM/vzip.ll
test/CodeGen/ARM/zextload_demandedbits.ll
test/CodeGen/BPF/basictest.ll
test/CodeGen/BPF/ex1.ll
test/CodeGen/BPF/intrinsics.ll
test/CodeGen/BPF/load.ll
test/CodeGen/BPF/loops.ll
test/CodeGen/BPF/struct_ret1.ll
test/CodeGen/CPP/2009-05-01-Long-Double.ll
test/CodeGen/CPP/2009-05-04-CondBr.ll
test/CodeGen/Generic/2003-05-28-ManyArgs.ll
test/CodeGen/Generic/2003-05-30-BadFoldGEP.ll
test/CodeGen/Generic/2003-07-29-BadConstSbyte.ll
test/CodeGen/Generic/2004-05-09-LiveVarPartialRegister.ll
test/CodeGen/Generic/2006-02-12-InsertLibcall.ll
test/CodeGen/Generic/2006-03-01-dagcombineinfloop.ll
test/CodeGen/Generic/2006-04-26-SetCCAnd.ll
test/CodeGen/Generic/2006-06-13-ComputeMaskedBitsCrash.ll
test/CodeGen/Generic/2006-06-28-SimplifySetCCCrash.ll
test/CodeGen/Generic/2006-09-02-LocalAllocCrash.ll
test/CodeGen/Generic/2006-11-20-DAGCombineCrash.ll
test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll
test/CodeGen/Generic/2008-01-25-dag-combine-mul.ll
test/CodeGen/Generic/2008-01-30-LoadCrash.ll
test/CodeGen/Generic/2008-02-25-NegateZero.ll
test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll
test/CodeGen/Generic/2009-04-28-i128-cmp-crash.ll
test/CodeGen/Generic/2011-07-07-ScheduleDAGCrash.ll
test/CodeGen/Generic/2012-06-08-APIntCrash.ll
test/CodeGen/Generic/2014-02-05-OpaqueConstants.ll
test/CodeGen/Generic/APIntLoadStore.ll
test/CodeGen/Generic/badFoldGEP.ll
test/CodeGen/Generic/builtin-expect.ll
test/CodeGen/Generic/cast-fp.ll
test/CodeGen/Generic/constindices.ll
test/CodeGen/Generic/crash.ll
test/CodeGen/Generic/dag-combine-crash.ll
test/CodeGen/Generic/empty-load-store.ll
test/CodeGen/Generic/empty-phi.ll
test/CodeGen/Generic/fp-to-int-invalid.ll
test/CodeGen/Generic/fwdtwice.ll
test/CodeGen/Generic/global-ret0.ll
test/CodeGen/Generic/inline-asm-mem-clobber.ll
test/CodeGen/Generic/pr2625.ll
test/CodeGen/Generic/print-arith-fp.ll
test/CodeGen/Generic/print-arith-int.ll
test/CodeGen/Generic/print-mul-exp.ll
test/CodeGen/Generic/print-mul.ll
test/CodeGen/Generic/print-shift.ll
test/CodeGen/Generic/select.ll
test/CodeGen/Generic/undef-phi.ll
test/CodeGen/Generic/v-split.ll
test/CodeGen/Generic/vector-casts.ll
test/CodeGen/Generic/vector-identity-shuffle.ll
test/CodeGen/Generic/vector.ll
test/CodeGen/Hexagon/BranchPredict.ll
test/CodeGen/Hexagon/absaddr-store.ll
test/CodeGen/Hexagon/absimm.ll
test/CodeGen/Hexagon/always-ext.ll
test/CodeGen/Hexagon/block-addr.ll
test/CodeGen/Hexagon/cext-check.ll
test/CodeGen/Hexagon/cext-valid-packet2.ll
test/CodeGen/Hexagon/cmp_pred2.ll
test/CodeGen/Hexagon/cmpb_pred.ll
test/CodeGen/Hexagon/combine.ll
test/CodeGen/Hexagon/combine_ir.ll
test/CodeGen/Hexagon/convertdptoint.ll
test/CodeGen/Hexagon/convertdptoll.ll
test/CodeGen/Hexagon/convertsptoint.ll
test/CodeGen/Hexagon/convertsptoll.ll
test/CodeGen/Hexagon/dadd.ll
test/CodeGen/Hexagon/dmul.ll
test/CodeGen/Hexagon/double.ll
test/CodeGen/Hexagon/doubleconvert-ieee-rnd-near.ll
test/CodeGen/Hexagon/dsub.ll
test/CodeGen/Hexagon/extload-combine.ll
test/CodeGen/Hexagon/fadd.ll
test/CodeGen/Hexagon/fcmp.ll
test/CodeGen/Hexagon/float.ll
test/CodeGen/Hexagon/floatconvert-ieee-rnd-near.ll
test/CodeGen/Hexagon/fmul.ll
test/CodeGen/Hexagon/frame.ll
test/CodeGen/Hexagon/fsub.ll
test/CodeGen/Hexagon/fusedandshift.ll
test/CodeGen/Hexagon/gp-plus-offset-load.ll
test/CodeGen/Hexagon/gp-rel.ll
test/CodeGen/Hexagon/hwloop-cleanup.ll
test/CodeGen/Hexagon/hwloop-dbg.ll
test/CodeGen/Hexagon/hwloop-le.ll
test/CodeGen/Hexagon/hwloop-lt.ll
test/CodeGen/Hexagon/hwloop-ne.ll
test/CodeGen/Hexagon/i16_VarArg.ll
test/CodeGen/Hexagon/i1_VarArg.ll
test/CodeGen/Hexagon/i8_VarArg.ll
test/CodeGen/Hexagon/idxload-with-zero-offset.ll
test/CodeGen/Hexagon/macint.ll
test/CodeGen/Hexagon/memops.ll
test/CodeGen/Hexagon/memops1.ll
test/CodeGen/Hexagon/memops2.ll
test/CodeGen/Hexagon/memops3.ll
test/CodeGen/Hexagon/misaligned-access.ll
test/CodeGen/Hexagon/mpy.ll
test/CodeGen/Hexagon/newvaluejump.ll
test/CodeGen/Hexagon/newvaluejump2.ll
test/CodeGen/Hexagon/newvaluestore.ll
test/CodeGen/Hexagon/opt-fabs.ll
test/CodeGen/Hexagon/opt-fneg.ll
test/CodeGen/Hexagon/postinc-load.ll
test/CodeGen/Hexagon/postinc-store.ll
test/CodeGen/Hexagon/pred-gp.ll
test/CodeGen/Hexagon/pred-instrs.ll
test/CodeGen/Hexagon/remove_lsr.ll
test/CodeGen/Hexagon/static.ll
test/CodeGen/Hexagon/struct_args.ll
test/CodeGen/Hexagon/tfr-to-combine.ll
test/CodeGen/Hexagon/union-1.ll
test/CodeGen/Hexagon/vaddh.ll
test/CodeGen/Hexagon/validate-offset.ll
test/CodeGen/Hexagon/zextloadi1.ll
test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll
test/CodeGen/MSP430/2009-05-17-Rot.ll
test/CodeGen/MSP430/2009-05-17-Shift.ll
test/CodeGen/MSP430/2009-08-25-DynamicStackAlloc.ll
test/CodeGen/MSP430/2009-09-18-AbsoluteAddr.ll
test/CodeGen/MSP430/2009-10-10-OrImpDef.ll
test/CodeGen/MSP430/2009-11-08-InvalidResNo.ll
test/CodeGen/MSP430/2010-05-01-CombinerAnd.ll
test/CodeGen/MSP430/AddrMode-bis-rx.ll
test/CodeGen/MSP430/AddrMode-bis-xr.ll
test/CodeGen/MSP430/AddrMode-mov-rx.ll
test/CodeGen/MSP430/Inst16mi.ll
test/CodeGen/MSP430/Inst16mm.ll
test/CodeGen/MSP430/Inst16mr.ll
test/CodeGen/MSP430/Inst16rm.ll
test/CodeGen/MSP430/Inst8mi.ll
test/CodeGen/MSP430/Inst8mm.ll
test/CodeGen/MSP430/Inst8mr.ll
test/CodeGen/MSP430/Inst8rm.ll
test/CodeGen/MSP430/bit.ll
test/CodeGen/MSP430/byval.ll
test/CodeGen/MSP430/indirectbr.ll
test/CodeGen/MSP430/indirectbr2.ll
test/CodeGen/MSP430/inline-asm.ll
test/CodeGen/MSP430/jumptable.ll
test/CodeGen/MSP430/memset.ll
test/CodeGen/MSP430/misched-msp430.ll
test/CodeGen/MSP430/mult-alt-generic-msp430.ll
test/CodeGen/MSP430/postinc.ll
test/CodeGen/Mips/2008-07-15-SmallSection.ll
test/CodeGen/Mips/2008-08-01-AsmInline.ll
test/CodeGen/Mips/2008-08-03-ReturnDouble.ll
test/CodeGen/Mips/2008-10-13-LegalizerBug.ll
test/CodeGen/Mips/2008-11-10-xint_to_fp.ll
test/CodeGen/Mips/2010-07-20-Switch.ll
test/CodeGen/Mips/Fast-ISel/br1.ll
test/CodeGen/Mips/Fast-ISel/callabi.ll
test/CodeGen/Mips/Fast-ISel/fpcmpa.ll
test/CodeGen/Mips/Fast-ISel/fpext.ll
test/CodeGen/Mips/Fast-ISel/fpintconv.ll
test/CodeGen/Mips/Fast-ISel/fptrunc.ll
test/CodeGen/Mips/Fast-ISel/icmpa.ll
test/CodeGen/Mips/Fast-ISel/loadstore2.ll
test/CodeGen/Mips/Fast-ISel/loadstoreconv.ll
test/CodeGen/Mips/Fast-ISel/overflt.ll
test/CodeGen/Mips/Fast-ISel/retabi.ll
test/CodeGen/Mips/Fast-ISel/shift.ll
test/CodeGen/Mips/addi.ll
test/CodeGen/Mips/addressing-mode.ll
test/CodeGen/Mips/align16.ll
test/CodeGen/Mips/alloca.ll
test/CodeGen/Mips/alloca16.ll
test/CodeGen/Mips/and1.ll
test/CodeGen/Mips/atomic.ll
test/CodeGen/Mips/atomicops.ll
test/CodeGen/Mips/beqzc.ll
test/CodeGen/Mips/beqzc1.ll
test/CodeGen/Mips/biggot.ll
test/CodeGen/Mips/brconeq.ll
test/CodeGen/Mips/brconeqk.ll
test/CodeGen/Mips/brconeqz.ll
test/CodeGen/Mips/brconge.ll
test/CodeGen/Mips/brcongt.ll
test/CodeGen/Mips/brconle.ll
test/CodeGen/Mips/brconlt.ll
test/CodeGen/Mips/brconne.ll
test/CodeGen/Mips/brconnek.ll
test/CodeGen/Mips/brconnez.ll
test/CodeGen/Mips/brdelayslot.ll
test/CodeGen/Mips/brind.ll
test/CodeGen/Mips/cconv/arguments-varargs-small-structs-byte.ll
test/CodeGen/Mips/cconv/arguments-varargs-small-structs-combinations.ll
test/CodeGen/Mips/cconv/arguments-varargs-small-structs-multiple-args.ll
test/CodeGen/Mips/cconv/return-float.ll
test/CodeGen/Mips/cconv/return-hard-float.ll
test/CodeGen/Mips/cconv/return-hard-fp128.ll
test/CodeGen/Mips/cconv/return-hard-struct-f128.ll
test/CodeGen/Mips/cconv/return-struct.ll
test/CodeGen/Mips/cconv/return.ll
test/CodeGen/Mips/cfi_offset.ll
test/CodeGen/Mips/ci2.ll
test/CodeGen/Mips/cmov.ll
test/CodeGen/Mips/cmplarge.ll
test/CodeGen/Mips/const4a.ll
test/CodeGen/Mips/ctlz.ll
test/CodeGen/Mips/disable-tail-merge.ll
test/CodeGen/Mips/div.ll
test/CodeGen/Mips/div_rem.ll
test/CodeGen/Mips/divrem.ll
test/CodeGen/Mips/divu.ll
test/CodeGen/Mips/divu_remu.ll
test/CodeGen/Mips/dsp-patterns.ll
test/CodeGen/Mips/dsp-vec-load-store.ll
test/CodeGen/Mips/eh.ll
test/CodeGen/Mips/emit-big-cst.ll
test/CodeGen/Mips/ex2.ll
test/CodeGen/Mips/extins.ll
test/CodeGen/Mips/f16abs.ll
test/CodeGen/Mips/fastcc.ll
test/CodeGen/Mips/fixdfsf.ll
test/CodeGen/Mips/fp-indexed-ls.ll
test/CodeGen/Mips/fp-spill-reload.ll
test/CodeGen/Mips/fp16instrinsmc.ll
test/CodeGen/Mips/fp16static.ll
test/CodeGen/Mips/fpneeded.ll
test/CodeGen/Mips/fpnotneeded.ll
test/CodeGen/Mips/global-address.ll
test/CodeGen/Mips/gpreg-lazy-binding.ll
test/CodeGen/Mips/gprestore.ll
test/CodeGen/Mips/hf16_1.ll
test/CodeGen/Mips/hf16call32.ll
test/CodeGen/Mips/hf16call32_body.ll
test/CodeGen/Mips/hf1_body.ll
test/CodeGen/Mips/hfptrcall.ll
test/CodeGen/Mips/inlineasm-assembler-directives.ll
test/CodeGen/Mips/inlineasm-operand-code.ll
test/CodeGen/Mips/inlineasm64.ll
test/CodeGen/Mips/internalfunc.ll
test/CodeGen/Mips/jtstat.ll
test/CodeGen/Mips/l3mc.ll
test/CodeGen/Mips/lb1.ll
test/CodeGen/Mips/lbu1.ll
test/CodeGen/Mips/lcb2.ll
test/CodeGen/Mips/lcb3c.ll
test/CodeGen/Mips/lcb4a.ll
test/CodeGen/Mips/lcb5.ll
test/CodeGen/Mips/lh1.ll
test/CodeGen/Mips/lhu1.ll
test/CodeGen/Mips/llcarry.ll
test/CodeGen/Mips/load-store-left-right.ll
test/CodeGen/Mips/machineverifier.ll
test/CodeGen/Mips/mbrsize4a.ll
test/CodeGen/Mips/micromips-addiu.ll
test/CodeGen/Mips/micromips-and16.ll
test/CodeGen/Mips/micromips-andi.ll
test/CodeGen/Mips/micromips-compact-branches.ll
test/CodeGen/Mips/micromips-delay-slot-jr.ll
test/CodeGen/Mips/micromips-delay-slot.ll
test/CodeGen/Mips/micromips-gp-rc.ll
test/CodeGen/Mips/micromips-jal.ll
test/CodeGen/Mips/micromips-load-effective-address.ll
test/CodeGen/Mips/micromips-or16.ll
test/CodeGen/Mips/micromips-rdhwr-directives.ll
test/CodeGen/Mips/micromips-shift.ll
test/CodeGen/Mips/micromips-sw-lw-16.ll
test/CodeGen/Mips/micromips-xor16.ll
test/CodeGen/Mips/mips16_32_8.ll
test/CodeGen/Mips/mips16_fpret.ll
test/CodeGen/Mips/mips16ex.ll
test/CodeGen/Mips/mips16fpe.ll
test/CodeGen/Mips/mips64-f128-call.ll
test/CodeGen/Mips/mips64-f128.ll
test/CodeGen/Mips/mips64directive.ll
test/CodeGen/Mips/mips64fpldst.ll
test/CodeGen/Mips/mips64instrs.ll
test/CodeGen/Mips/mips64intldst.ll
test/CodeGen/Mips/mips64sinttofpsf.ll
test/CodeGen/Mips/mipslopat.ll
test/CodeGen/Mips/misha.ll
test/CodeGen/Mips/mno-ldc1-sdc1.ll
test/CodeGen/Mips/msa/2r.ll
test/CodeGen/Mips/msa/2r_vector_scalar.ll
test/CodeGen/Mips/msa/2rf.ll
test/CodeGen/Mips/msa/2rf_exup.ll
test/CodeGen/Mips/msa/2rf_float_int.ll
test/CodeGen/Mips/msa/2rf_fq.ll
test/CodeGen/Mips/msa/2rf_int_float.ll
test/CodeGen/Mips/msa/2rf_tq.ll
test/CodeGen/Mips/msa/3r-a.ll
test/CodeGen/Mips/msa/3r-b.ll
test/CodeGen/Mips/msa/3r-c.ll
test/CodeGen/Mips/msa/3r-d.ll
test/CodeGen/Mips/msa/3r-i.ll
test/CodeGen/Mips/msa/3r-m.ll
test/CodeGen/Mips/msa/3r-p.ll
test/CodeGen/Mips/msa/3r-s.ll
test/CodeGen/Mips/msa/3r-v.ll
test/CodeGen/Mips/msa/3r_4r.ll
test/CodeGen/Mips/msa/3r_4r_widen.ll
test/CodeGen/Mips/msa/3r_splat.ll
test/CodeGen/Mips/msa/3rf.ll
test/CodeGen/Mips/msa/3rf_4rf.ll
test/CodeGen/Mips/msa/3rf_4rf_q.ll
test/CodeGen/Mips/msa/3rf_exdo.ll
test/CodeGen/Mips/msa/3rf_float_int.ll
test/CodeGen/Mips/msa/3rf_int_float.ll
test/CodeGen/Mips/msa/3rf_q.ll
test/CodeGen/Mips/msa/arithmetic.ll
test/CodeGen/Mips/msa/arithmetic_float.ll
test/CodeGen/Mips/msa/basic_operations.ll
test/CodeGen/Mips/msa/basic_operations_float.ll
test/CodeGen/Mips/msa/bit.ll
test/CodeGen/Mips/msa/bitcast.ll
test/CodeGen/Mips/msa/bitwise.ll
test/CodeGen/Mips/msa/compare.ll
test/CodeGen/Mips/msa/compare_float.ll
test/CodeGen/Mips/msa/elm_copy.ll
test/CodeGen/Mips/msa/elm_insv.ll
test/CodeGen/Mips/msa/elm_move.ll
test/CodeGen/Mips/msa/elm_shift_slide.ll
test/CodeGen/Mips/msa/frameindex.ll
test/CodeGen/Mips/msa/i10.ll
test/CodeGen/Mips/msa/i5-a.ll
test/CodeGen/Mips/msa/i5-b.ll
test/CodeGen/Mips/msa/i5-c.ll
test/CodeGen/Mips/msa/i5-m.ll
test/CodeGen/Mips/msa/i5-s.ll
test/CodeGen/Mips/msa/i5_ld_st.ll
test/CodeGen/Mips/msa/i8.ll
test/CodeGen/Mips/msa/inline-asm.ll
test/CodeGen/Mips/msa/llvm-stress-s1704963983.ll
test/CodeGen/Mips/msa/llvm-stress-s1935737938.ll
test/CodeGen/Mips/msa/llvm-stress-s2704903805.ll
test/CodeGen/Mips/msa/llvm-stress-s3861334421.ll
test/CodeGen/Mips/msa/llvm-stress-s3926023935.ll
test/CodeGen/Mips/msa/llvm-stress-s3997499501.ll
test/CodeGen/Mips/msa/llvm-stress-s525530439.ll
test/CodeGen/Mips/msa/llvm-stress-s997348632.ll
test/CodeGen/Mips/msa/shuffle.ll
test/CodeGen/Mips/msa/spill.ll
test/CodeGen/Mips/msa/vec.ll
test/CodeGen/Mips/msa/vecs10.ll
test/CodeGen/Mips/mul.ll
test/CodeGen/Mips/mulll.ll
test/CodeGen/Mips/mulull.ll
test/CodeGen/Mips/nacl-align.ll
test/CodeGen/Mips/nacl-branch-delay.ll
test/CodeGen/Mips/nacl-reserved-regs.ll
test/CodeGen/Mips/neg1.ll
test/CodeGen/Mips/no-odd-spreg-msa.ll
test/CodeGen/Mips/nomips16.ll
test/CodeGen/Mips/not1.ll
test/CodeGen/Mips/o32_cc_byval.ll
test/CodeGen/Mips/o32_cc_vararg.ll
test/CodeGen/Mips/optimize-pic-o0.ll
test/CodeGen/Mips/or1.ll
test/CodeGen/Mips/prevent-hoisting.ll
test/CodeGen/Mips/private.ll
test/CodeGen/Mips/ra-allocatable.ll
test/CodeGen/Mips/rdhwr-directives.ll
test/CodeGen/Mips/rem.ll
test/CodeGen/Mips/remu.ll
test/CodeGen/Mips/s2rem.ll
test/CodeGen/Mips/sb1.ll
test/CodeGen/Mips/sel1c.ll
test/CodeGen/Mips/sel2c.ll
test/CodeGen/Mips/selTBteqzCmpi.ll
test/CodeGen/Mips/selTBtnezCmpi.ll
test/CodeGen/Mips/selTBtnezSlti.ll
test/CodeGen/Mips/select.ll
test/CodeGen/Mips/seleq.ll
test/CodeGen/Mips/seleqk.ll
test/CodeGen/Mips/selgek.ll
test/CodeGen/Mips/selgt.ll
test/CodeGen/Mips/selle.ll
test/CodeGen/Mips/selltk.ll
test/CodeGen/Mips/selne.ll
test/CodeGen/Mips/selnek.ll
test/CodeGen/Mips/selpat.ll
test/CodeGen/Mips/seteq.ll
test/CodeGen/Mips/seteqz.ll
test/CodeGen/Mips/setge.ll
test/CodeGen/Mips/setgek.ll
test/CodeGen/Mips/setle.ll
test/CodeGen/Mips/setlt.ll
test/CodeGen/Mips/setltk.ll
test/CodeGen/Mips/setne.ll
test/CodeGen/Mips/setuge.ll
test/CodeGen/Mips/setugt.ll
test/CodeGen/Mips/setule.ll
test/CodeGen/Mips/setult.ll
test/CodeGen/Mips/setultk.ll
test/CodeGen/Mips/sh1.ll
test/CodeGen/Mips/simplebr.ll
test/CodeGen/Mips/sitofp-selectcc-opt.ll
test/CodeGen/Mips/sll1.ll
test/CodeGen/Mips/sll2.ll
test/CodeGen/Mips/small-section-reserve-gp.ll
test/CodeGen/Mips/spill-copy-acreg.ll
test/CodeGen/Mips/sra1.ll
test/CodeGen/Mips/sra2.ll
test/CodeGen/Mips/srl1.ll
test/CodeGen/Mips/srl2.ll
test/CodeGen/Mips/stackcoloring.ll
test/CodeGen/Mips/stchar.ll
test/CodeGen/Mips/stldst.ll
test/CodeGen/Mips/sub1.ll
test/CodeGen/Mips/sub2.ll
test/CodeGen/Mips/tailcall.ll
test/CodeGen/Mips/tls.ll
test/CodeGen/Mips/tls16.ll
test/CodeGen/Mips/tls16_2.ll
test/CodeGen/Mips/uitofp.ll
test/CodeGen/Mips/vector-load-store.ll
test/CodeGen/Mips/vector-setcc.ll
test/CodeGen/Mips/xor1.ll
test/CodeGen/Mips/zeroreg.ll
test/CodeGen/NVPTX/access-non-generic.ll
test/CodeGen/NVPTX/addrspacecast.ll
test/CodeGen/NVPTX/bug21465.ll
test/CodeGen/NVPTX/bug22322.ll
test/CodeGen/NVPTX/call-with-alloca-buffer.ll
test/CodeGen/NVPTX/fp16.ll
test/CodeGen/NVPTX/generic-to-nvvm.ll
test/CodeGen/NVPTX/half.ll
test/CodeGen/NVPTX/i1-global.ll
test/CodeGen/NVPTX/i8-param.ll
test/CodeGen/NVPTX/ld-addrspace.ll
test/CodeGen/NVPTX/ld-generic.ll
test/CodeGen/NVPTX/load-sext-i1.ll
test/CodeGen/NVPTX/machine-sink.ll
test/CodeGen/NVPTX/misaligned-vector-ldst.ll
test/CodeGen/NVPTX/noduplicate-syncthreads.ll
test/CodeGen/NVPTX/nounroll.ll
test/CodeGen/NVPTX/pr13291-i1-store.ll
test/CodeGen/NVPTX/pr16278.ll
test/CodeGen/NVPTX/refl1.ll
test/CodeGen/NVPTX/sched1.ll
test/CodeGen/NVPTX/sched2.ll
test/CodeGen/NVPTX/shift-parts.ll
test/CodeGen/NVPTX/simple-call.ll
test/CodeGen/NVPTX/vector-compare.ll
test/CodeGen/NVPTX/vector-loads.ll
test/CodeGen/NVPTX/vector-select.ll
test/CodeGen/NVPTX/weak-global.ll
test/CodeGen/PowerPC/2005-11-30-vastart-crash.ll
test/CodeGen/PowerPC/2006-01-20-ShiftPartsCrash.ll
test/CodeGen/PowerPC/2006-04-05-splat-ish.ll
test/CodeGen/PowerPC/2006-05-12-rlwimi-crash.ll
test/CodeGen/PowerPC/2006-07-07-ComputeMaskedBits.ll
test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll
test/CodeGen/PowerPC/2006-08-15-SelectionCrash.ll
test/CodeGen/PowerPC/2006-12-07-SelectCrash.ll
test/CodeGen/PowerPC/2007-01-15-AsmDialect.ll
test/CodeGen/PowerPC/2007-03-24-cntlzd.ll
test/CodeGen/PowerPC/2007-03-30-SpillerCrash.ll
test/CodeGen/PowerPC/2007-04-30-InlineAsmEarlyClobber.ll
test/CodeGen/PowerPC/2007-05-22-tailmerge-3.ll
test/CodeGen/PowerPC/2007-09-07-LoadStoreIdxForms.ll
test/CodeGen/PowerPC/2007-09-08-unaligned.ll
test/CodeGen/PowerPC/2007-10-18-PtrArithmetic.ll
test/CodeGen/PowerPC/2007-10-21-LocalRegAllocAssert.ll
test/CodeGen/PowerPC/2007-10-21-LocalRegAllocAssert2.ll
test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll
test/CodeGen/PowerPC/2007-11-19-VectorSplitting.ll
test/CodeGen/PowerPC/2008-02-09-LocalRegAllocAssert.ll
test/CodeGen/PowerPC/2008-03-05-RegScavengerAssert.ll
test/CodeGen/PowerPC/2008-03-17-RegScavengerCrash.ll
test/CodeGen/PowerPC/2008-03-24-AddressRegImm.ll
test/CodeGen/PowerPC/2008-03-26-CoalescerBug.ll
test/CodeGen/PowerPC/2008-04-23-CoalescerCrash.ll
test/CodeGen/PowerPC/2008-06-21-F128LoadStore.ll
test/CodeGen/PowerPC/2008-06-23-LiveVariablesCrash.ll
test/CodeGen/PowerPC/2008-07-15-Bswap.ll
test/CodeGen/PowerPC/2008-07-15-SignExtendInreg.ll
test/CodeGen/PowerPC/2008-09-12-CoalescerBug.ll
test/CodeGen/PowerPC/2008-10-28-UnprocessedNode.ll
test/CodeGen/PowerPC/2008-10-31-PPCF128Libcalls.ll
test/CodeGen/PowerPC/2009-08-17-inline-asm-addr-mode-breakage.ll
test/CodeGen/PowerPC/2010-03-09-indirect-call.ll
test/CodeGen/PowerPC/2010-12-18-PPCStackRefs.ll
test/CodeGen/PowerPC/2011-12-05-NoSpillDupCR.ll
test/CodeGen/PowerPC/2011-12-06-SpillAndRestoreCR.ll
test/CodeGen/PowerPC/2011-12-08-DemandedBitsMiscompile.ll
test/CodeGen/PowerPC/Atomics-64.ll
test/CodeGen/PowerPC/a2-fp-basic.ll
test/CodeGen/PowerPC/addi-licm.ll
test/CodeGen/PowerPC/addi-reassoc.ll
test/CodeGen/PowerPC/alias.ll
test/CodeGen/PowerPC/and-elim.ll
test/CodeGen/PowerPC/anon_aggr.ll
test/CodeGen/PowerPC/asm-constraints.ll
test/CodeGen/PowerPC/atomic-2.ll
test/CodeGen/PowerPC/atomics-indexed.ll
test/CodeGen/PowerPC/atomics.ll
test/CodeGen/PowerPC/bdzlr.ll
test/CodeGen/PowerPC/bswap-load-store.ll
test/CodeGen/PowerPC/buildvec_canonicalize.ll
test/CodeGen/PowerPC/byval-aliased.ll
test/CodeGen/PowerPC/code-align.ll
test/CodeGen/PowerPC/complex-return.ll
test/CodeGen/PowerPC/cr-spills.ll
test/CodeGen/PowerPC/crbits.ll
test/CodeGen/PowerPC/crsave.ll
test/CodeGen/PowerPC/ctrloop-cpsgn.ll
test/CodeGen/PowerPC/ctrloop-fp64.ll
test/CodeGen/PowerPC/ctrloop-i64.ll
test/CodeGen/PowerPC/ctrloop-le.ll
test/CodeGen/PowerPC/ctrloop-lt.ll
test/CodeGen/PowerPC/ctrloop-ne.ll
test/CodeGen/PowerPC/ctrloop-s000.ll
test/CodeGen/PowerPC/ctrloop-sh.ll
test/CodeGen/PowerPC/ctrloop-sums.ll
test/CodeGen/PowerPC/ctrloops.ll
test/CodeGen/PowerPC/dcbt-sched.ll
test/CodeGen/PowerPC/delete-node.ll
test/CodeGen/PowerPC/dyn-alloca-aligned.ll
test/CodeGen/PowerPC/emptystruct.ll
test/CodeGen/PowerPC/eqv-andc-orc-nor.ll
test/CodeGen/PowerPC/fast-isel-GEP-coalesce.ll
test/CodeGen/PowerPC/fast-isel-call.ll
test/CodeGen/PowerPC/fast-isel-fold.ll
test/CodeGen/PowerPC/fast-isel-load-store.ll
test/CodeGen/PowerPC/fast-isel-redefinition.ll
test/CodeGen/PowerPC/fastisel-gep-promote-before-add.ll
test/CodeGen/PowerPC/floatPSA.ll
test/CodeGen/PowerPC/flt-preinc.ll
test/CodeGen/PowerPC/fp-to-int-ext.ll
test/CodeGen/PowerPC/frounds.ll
test/CodeGen/PowerPC/glob-comp-aa-crash.ll
test/CodeGen/PowerPC/hidden-vis-2.ll
test/CodeGen/PowerPC/hidden-vis.ll
test/CodeGen/PowerPC/ia-mem-r0.ll
test/CodeGen/PowerPC/indexed-load.ll
test/CodeGen/PowerPC/indirectbr.ll
test/CodeGen/PowerPC/inlineasm-i64-reg.ll
test/CodeGen/PowerPC/isel-rc-nox0.ll
test/CodeGen/PowerPC/lbz-from-ld-shift.ll
test/CodeGen/PowerPC/lbzux.ll
test/CodeGen/PowerPC/ld-st-upd.ll
test/CodeGen/PowerPC/ldtoc-inv.ll
test/CodeGen/PowerPC/lha.ll
test/CodeGen/PowerPC/load-constant-addr.ll
test/CodeGen/PowerPC/load-shift-combine.ll
test/CodeGen/PowerPC/loop-data-prefetch.ll
test/CodeGen/PowerPC/lsa.ll
test/CodeGen/PowerPC/lsr-postinc-pos.ll
test/CodeGen/PowerPC/mask64.ll
test/CodeGen/PowerPC/mcm-1.ll
test/CodeGen/PowerPC/mcm-10.ll
test/CodeGen/PowerPC/mcm-11.ll
test/CodeGen/PowerPC/mcm-2.ll
test/CodeGen/PowerPC/mcm-3.ll
test/CodeGen/PowerPC/mcm-5.ll
test/CodeGen/PowerPC/mcm-6.ll
test/CodeGen/PowerPC/mcm-7.ll
test/CodeGen/PowerPC/mcm-8.ll
test/CodeGen/PowerPC/mcm-9.ll
test/CodeGen/PowerPC/mcm-default.ll
test/CodeGen/PowerPC/mcm-obj-2.ll
test/CodeGen/PowerPC/mcm-obj.ll
test/CodeGen/PowerPC/mem-rr-addr-mode.ll
test/CodeGen/PowerPC/mem_update.ll
test/CodeGen/PowerPC/misched-inorder-latency.ll
test/CodeGen/PowerPC/mult-alt-generic-powerpc.ll
test/CodeGen/PowerPC/mult-alt-generic-powerpc64.ll
test/CodeGen/PowerPC/no-extra-fp-conv-ldst.ll
test/CodeGen/PowerPC/novrsave.ll
test/CodeGen/PowerPC/or-addressing-mode.ll
test/CodeGen/PowerPC/post-ra-ec.ll
test/CodeGen/PowerPC/ppc-prologue.ll
test/CodeGen/PowerPC/ppc32-lshrti3.ll
test/CodeGen/PowerPC/ppc32-pic-large.ll
test/CodeGen/PowerPC/ppc32-pic.ll
test/CodeGen/PowerPC/ppc440-fp-basic.ll
test/CodeGen/PowerPC/ppc64-abi-extend.ll
test/CodeGen/PowerPC/ppc64-align-long-double.ll
test/CodeGen/PowerPC/ppc64-byval-align.ll
test/CodeGen/PowerPC/ppc64-calls.ll
test/CodeGen/PowerPC/ppc64-gep-opt.ll
test/CodeGen/PowerPC/ppc64-patchpoint.ll
test/CodeGen/PowerPC/ppc64-smallarg.ll
test/CodeGen/PowerPC/ppc64-toc.ll
test/CodeGen/PowerPC/ppc64le-aggregates.ll
test/CodeGen/PowerPC/ppc64le-localentry.ll
test/CodeGen/PowerPC/ppc64le-smallarg.ll
test/CodeGen/PowerPC/ppcf128-1.ll
test/CodeGen/PowerPC/ppcf128-endian.ll
test/CodeGen/PowerPC/pr13891.ll
test/CodeGen/PowerPC/pr15031.ll
test/CodeGen/PowerPC/pr15630.ll
test/CodeGen/PowerPC/pr16556-2.ll
test/CodeGen/PowerPC/pr17168.ll
test/CodeGen/PowerPC/pr18663.ll
test/CodeGen/PowerPC/pr20442.ll
test/CodeGen/PowerPC/preincprep-invoke.ll
test/CodeGen/PowerPC/private.ll
test/CodeGen/PowerPC/pwr7-gt-nop.ll
test/CodeGen/PowerPC/qpx-load.ll
test/CodeGen/PowerPC/qpx-s-load.ll
test/CodeGen/PowerPC/qpx-s-sel.ll
test/CodeGen/PowerPC/qpx-sel.ll
test/CodeGen/PowerPC/qpx-unalperm.ll
test/CodeGen/PowerPC/quadint-return.ll
test/CodeGen/PowerPC/reg-coalesce-simple.ll
test/CodeGen/PowerPC/reloc-align.ll
test/CodeGen/PowerPC/resolvefi-basereg.ll
test/CodeGen/PowerPC/resolvefi-disp.ll
test/CodeGen/PowerPC/return-val-i128.ll
test/CodeGen/PowerPC/rlwimi-and.ll
test/CodeGen/PowerPC/rlwimi-commute.ll
test/CodeGen/PowerPC/rlwimi-dyn-and.ll
test/CodeGen/PowerPC/rm-zext.ll
test/CodeGen/PowerPC/rs-undef-use.ll
test/CodeGen/PowerPC/s000-alias-misched.ll
test/CodeGen/PowerPC/sjlj.ll
test/CodeGen/PowerPC/small-arguments.ll
test/CodeGen/PowerPC/split-index-tc.ll
test/CodeGen/PowerPC/stack-protector.ll
test/CodeGen/PowerPC/stack-realign.ll
test/CodeGen/PowerPC/std-unal-fi.ll
test/CodeGen/PowerPC/store-load-fwd.ll
test/CodeGen/PowerPC/structsinmem.ll
test/CodeGen/PowerPC/structsinregs.ll
test/CodeGen/PowerPC/subreg-postra-2.ll
test/CodeGen/PowerPC/subreg-postra.ll
test/CodeGen/PowerPC/subsumes-pred-regs.ll
test/CodeGen/PowerPC/tls-cse.ll
test/CodeGen/PowerPC/tls-pic.ll
test/CodeGen/PowerPC/tls.ll
test/CodeGen/PowerPC/toc-load-sched-bug.ll
test/CodeGen/PowerPC/trampoline.ll
test/CodeGen/PowerPC/unal-altivec-wint.ll
test/CodeGen/PowerPC/unal-altivec.ll
test/CodeGen/PowerPC/unal-altivec2.ll
test/CodeGen/PowerPC/unaligned.ll
test/CodeGen/PowerPC/vaddsplat.ll
test/CodeGen/PowerPC/varargs-struct-float.ll
test/CodeGen/PowerPC/vcmp-fold.ll
test/CodeGen/PowerPC/vec-abi-align.ll
test/CodeGen/PowerPC/vec_auto_constant.ll
test/CodeGen/PowerPC/vec_br_cmp.ll
test/CodeGen/PowerPC/vec_buildvector_loadstore.ll
test/CodeGen/PowerPC/vec_constants.ll
test/CodeGen/PowerPC/vec_conv.ll
test/CodeGen/PowerPC/vec_fneg.ll
test/CodeGen/PowerPC/vec_misaligned.ll
test/CodeGen/PowerPC/vec_mul.ll
test/CodeGen/PowerPC/vec_perf_shuffle.ll
test/CodeGen/PowerPC/vec_shuffle.ll
test/CodeGen/PowerPC/vec_shuffle_le.ll
test/CodeGen/PowerPC/vec_splat.ll
test/CodeGen/PowerPC/vec_splat_constant.ll
test/CodeGen/PowerPC/vec_zero.ll
test/CodeGen/PowerPC/vector-identity-shuffle.ll
test/CodeGen/PowerPC/vector.ll
test/CodeGen/PowerPC/vsx-div.ll
test/CodeGen/PowerPC/vsx-infl-copy1.ll
test/CodeGen/PowerPC/vsx-infl-copy2.ll
test/CodeGen/PowerPC/vsx-ldst-builtin-le.ll
test/CodeGen/PowerPC/vsx-ldst.ll
test/CodeGen/PowerPC/vsx-minmax.ll
test/CodeGen/PowerPC/vsx-p8.ll
test/CodeGen/PowerPC/vsx.ll
test/CodeGen/PowerPC/vsx_insert_extract_le.ll
test/CodeGen/PowerPC/vsx_shuffle_le.ll
test/CodeGen/PowerPC/weak_def_can_be_hidden.ll
test/CodeGen/PowerPC/zero-not-run.ll
test/CodeGen/PowerPC/zext-free.ll
test/CodeGen/R600/32-bit-local-address-space.ll
test/CodeGen/R600/add-debug.ll
test/CodeGen/R600/add.ll
test/CodeGen/R600/add_i64.ll
test/CodeGen/R600/address-space.ll
test/CodeGen/R600/and.ll
test/CodeGen/R600/array-ptr-calc-i32.ll
test/CodeGen/R600/array-ptr-calc-i64.ll
test/CodeGen/R600/big_alu.ll
test/CodeGen/R600/bitcast.ll
test/CodeGen/R600/bswap.ll
test/CodeGen/R600/call.ll
test/CodeGen/R600/combine_vloads.ll
test/CodeGen/R600/commute_modifiers.ll
test/CodeGen/R600/copy-illegal-type.ll
test/CodeGen/R600/copy-to-reg.ll
test/CodeGen/R600/ctlz_zero_undef.ll
test/CodeGen/R600/ctpop.ll
test/CodeGen/R600/ctpop64.ll
test/CodeGen/R600/cttz_zero_undef.ll
test/CodeGen/R600/cvt_f32_ubyte.ll
test/CodeGen/R600/dagcombiner-bug-illegal-vec4-int-to-fp.ll
test/CodeGen/R600/dot4-folding.ll
test/CodeGen/R600/ds-negative-offset-addressing-mode-loop.ll
test/CodeGen/R600/ds_read2.ll
test/CodeGen/R600/ds_read2_offset_order.ll
test/CodeGen/R600/ds_read2st64.ll
test/CodeGen/R600/ds_write2.ll
test/CodeGen/R600/ds_write2st64.ll
test/CodeGen/R600/extload-private.ll
test/CodeGen/R600/extload.ll
test/CodeGen/R600/fabs.f64.ll
test/CodeGen/R600/fadd.ll
test/CodeGen/R600/fadd64.ll
test/CodeGen/R600/fcmp-cnd.ll
test/CodeGen/R600/fcmp-cnde-int-args.ll
test/CodeGen/R600/fcmp.ll
test/CodeGen/R600/fcmp64.ll
test/CodeGen/R600/fconst64.ll
test/CodeGen/R600/fdiv.f64.ll
test/CodeGen/R600/fdiv.ll
test/CodeGen/R600/fetch-limits.r600.ll
test/CodeGen/R600/fetch-limits.r700+.ll
test/CodeGen/R600/flat-address-space.ll
test/CodeGen/R600/fma-combine.ll
test/CodeGen/R600/fma.f64.ll
test/CodeGen/R600/fma.ll
test/CodeGen/R600/fmax3.ll
test/CodeGen/R600/fmax_legacy.f64.ll
test/CodeGen/R600/fmax_legacy.ll
test/CodeGen/R600/fmin3.ll
test/CodeGen/R600/fmin_legacy.f64.ll
test/CodeGen/R600/fmin_legacy.ll
test/CodeGen/R600/fmul.ll
test/CodeGen/R600/fmul64.ll
test/CodeGen/R600/fmuladd.ll
test/CodeGen/R600/fneg-fabs.f64.ll
test/CodeGen/R600/fneg-fabs.ll
test/CodeGen/R600/fp16_to_fp.ll
test/CodeGen/R600/fp32_to_fp16.ll
test/CodeGen/R600/fp_to_sint.f64.ll
test/CodeGen/R600/fp_to_sint.ll
test/CodeGen/R600/fp_to_uint.f64.ll
test/CodeGen/R600/fp_to_uint.ll
test/CodeGen/R600/frem.ll
test/CodeGen/R600/fsqrt.ll
test/CodeGen/R600/fsub.ll
test/CodeGen/R600/fsub64.ll
test/CodeGen/R600/ftrunc.f64.ll
test/CodeGen/R600/global-directive.ll
test/CodeGen/R600/global-extload-i1.ll
test/CodeGen/R600/global-extload-i16.ll
test/CodeGen/R600/global-extload-i32.ll
test/CodeGen/R600/global-extload-i8.ll
test/CodeGen/R600/global-zero-initializer.ll
test/CodeGen/R600/gv-const-addrspace-fail.ll
test/CodeGen/R600/gv-const-addrspace.ll
test/CodeGen/R600/half.ll
test/CodeGen/R600/i8-to-double-to-float.ll
test/CodeGen/R600/icmp-select-sete-reverse-args.ll
test/CodeGen/R600/imm.ll
test/CodeGen/R600/indirect-private-64.ll
test/CodeGen/R600/insert_vector_elt.ll
test/CodeGen/R600/jump-address.ll
test/CodeGen/R600/kcache-fold.ll
test/CodeGen/R600/large-alloca.ll
test/CodeGen/R600/large-constant-initializer.ll
test/CodeGen/R600/lds-initializer.ll
test/CodeGen/R600/lds-oqap-crash.ll
test/CodeGen/R600/lds-output-queue.ll
test/CodeGen/R600/lds-zero-initializer.ll
test/CodeGen/R600/llvm.AMDGPU.abs.ll
test/CodeGen/R600/llvm.AMDGPU.barrier.global.ll
test/CodeGen/R600/llvm.AMDGPU.barrier.local.ll
test/CodeGen/R600/llvm.AMDGPU.bfe.i32.ll
test/CodeGen/R600/llvm.AMDGPU.bfe.u32.ll
test/CodeGen/R600/llvm.AMDGPU.brev.ll
test/CodeGen/R600/llvm.AMDGPU.class.ll
test/CodeGen/R600/llvm.AMDGPU.cube.ll
test/CodeGen/R600/llvm.AMDGPU.cvt_f32_ubyte.ll
test/CodeGen/R600/llvm.AMDGPU.div_fmas.ll
test/CodeGen/R600/llvm.AMDGPU.div_scale.ll
test/CodeGen/R600/llvm.AMDGPU.fract.ll
test/CodeGen/R600/llvm.AMDGPU.imax.ll
test/CodeGen/R600/llvm.AMDGPU.imin.ll
test/CodeGen/R600/llvm.AMDGPU.tex.ll
test/CodeGen/R600/llvm.AMDGPU.trig_preop.ll
test/CodeGen/R600/llvm.AMDGPU.umad24.ll
test/CodeGen/R600/llvm.AMDGPU.umax.ll
test/CodeGen/R600/llvm.AMDGPU.umin.ll
test/CodeGen/R600/llvm.SI.imageload.ll
test/CodeGen/R600/llvm.SI.load.dword.ll
test/CodeGen/R600/llvm.amdgpu.dp4.ll
test/CodeGen/R600/llvm.round.f64.ll
test/CodeGen/R600/load-i1.ll
test/CodeGen/R600/load-input-fold.ll
test/CodeGen/R600/load.ll
test/CodeGen/R600/load.vec.ll
test/CodeGen/R600/load64.ll
test/CodeGen/R600/local-64.ll
test/CodeGen/R600/local-memory-two-objects.ll
test/CodeGen/R600/local-memory.ll
test/CodeGen/R600/loop-idiom.ll
test/CodeGen/R600/m0-spill.ll
test/CodeGen/R600/mad-combine.ll
test/CodeGen/R600/mad-sub.ll
test/CodeGen/R600/madak.ll
test/CodeGen/R600/madmk.ll
test/CodeGen/R600/max.ll
test/CodeGen/R600/max3.ll
test/CodeGen/R600/min.ll
test/CodeGen/R600/min3.ll
test/CodeGen/R600/missing-store.ll
test/CodeGen/R600/mubuf.ll
test/CodeGen/R600/mul.ll
test/CodeGen/R600/no-initializer-constant-addrspace.ll
test/CodeGen/R600/no-shrink-extloads.ll
test/CodeGen/R600/or.ll
test/CodeGen/R600/parallelandifcollapse.ll
test/CodeGen/R600/parallelorifcollapse.ll
test/CodeGen/R600/private-memory.ll
test/CodeGen/R600/pv-packing.ll
test/CodeGen/R600/pv.ll
test/CodeGen/R600/r600-export-fix.ll
test/CodeGen/R600/r600cfg.ll
test/CodeGen/R600/register-count-comments.ll
test/CodeGen/R600/reorder-stores.ll
test/CodeGen/R600/rotl.i64.ll
test/CodeGen/R600/rotr.i64.ll
test/CodeGen/R600/rsq.ll
test/CodeGen/R600/s_movk_i32.ll
test/CodeGen/R600/saddo.ll
test/CodeGen/R600/salu-to-valu.ll
test/CodeGen/R600/scalar_to_vector.ll
test/CodeGen/R600/schedule-fs-loop-nested.ll
test/CodeGen/R600/schedule-fs-loop.ll
test/CodeGen/R600/schedule-global-loads.ll
test/CodeGen/R600/schedule-if-2.ll
test/CodeGen/R600/schedule-if.ll
test/CodeGen/R600/schedule-vs-if-nested-loop-failure.ll
test/CodeGen/R600/schedule-vs-if-nested-loop.ll
test/CodeGen/R600/scratch-buffer.ll
test/CodeGen/R600/sdiv.ll
test/CodeGen/R600/sdivrem24.ll
test/CodeGen/R600/select64.ll
test/CodeGen/R600/selectcc-cnd.ll
test/CodeGen/R600/selectcc-cnde-int.ll
test/CodeGen/R600/selectcc-icmp-select-float.ll
test/CodeGen/R600/setcc-opt.ll
test/CodeGen/R600/setcc.ll
test/CodeGen/R600/sext-in-reg.ll
test/CodeGen/R600/sgpr-control-flow.ll
test/CodeGen/R600/sgpr-copy-duplicate-operand.ll
test/CodeGen/R600/sgpr-copy.ll
test/CodeGen/R600/shl.ll
test/CodeGen/R600/shl_add_constant.ll
test/CodeGen/R600/shl_add_ptr.ll
test/CodeGen/R600/si-lod-bias.ll
test/CodeGen/R600/si-sgpr-spill.ll
test/CodeGen/R600/si-triv-disjoint-mem-access.ll
test/CodeGen/R600/si-vector-hang.ll
test/CodeGen/R600/sign_extend.ll
test/CodeGen/R600/simplify-demanded-bits-build-pair.ll
test/CodeGen/R600/sint_to_fp.f64.ll
test/CodeGen/R600/sint_to_fp.ll
test/CodeGen/R600/smrd.ll
test/CodeGen/R600/split-scalar-i64-add.ll
test/CodeGen/R600/sra.ll
test/CodeGen/R600/srem.ll
test/CodeGen/R600/srl.ll
test/CodeGen/R600/ssubo.ll
test/CodeGen/R600/store-barrier.ll
test/CodeGen/R600/store.ll
test/CodeGen/R600/store.r600.ll
test/CodeGen/R600/sub.ll
test/CodeGen/R600/swizzle-export.ll
test/CodeGen/R600/trunc-cmp-constant.ll
test/CodeGen/R600/trunc.ll
test/CodeGen/R600/uaddo.ll
test/CodeGen/R600/udiv.ll
test/CodeGen/R600/udivrem24.ll
test/CodeGen/R600/uint_to_fp.f64.ll
test/CodeGen/R600/uint_to_fp.ll
test/CodeGen/R600/unaligned-load-store.ll
test/CodeGen/R600/unhandled-loop-condition-assertion.ll
test/CodeGen/R600/unroll.ll
test/CodeGen/R600/urem.ll
test/CodeGen/R600/usubo.ll
test/CodeGen/R600/v_cndmask.ll
test/CodeGen/R600/valu-i1.ll
test/CodeGen/R600/vector-alloca.ll
test/CodeGen/R600/vertex-fetch-encoding.ll
test/CodeGen/R600/vselect.ll
test/CodeGen/R600/vtx-fetch-branch.ll
test/CodeGen/R600/vtx-schedule.ll
test/CodeGen/R600/wait.ll
test/CodeGen/R600/xor.ll
test/CodeGen/SPARC/2008-10-10-InlineAsmMemoryOperand.ll
test/CodeGen/SPARC/2009-08-28-PIC.ll
test/CodeGen/SPARC/2011-01-11-CC.ll
test/CodeGen/SPARC/2011-01-22-SRet.ll
test/CodeGen/SPARC/64abi.ll
test/CodeGen/SPARC/64bit.ll
test/CodeGen/SPARC/atomics.ll
test/CodeGen/SPARC/fp128.ll
test/CodeGen/SPARC/globals.ll
test/CodeGen/SPARC/leafproc.ll
test/CodeGen/SPARC/mult-alt-generic-sparc.ll
test/CodeGen/SPARC/obj-relocs.ll
test/CodeGen/SPARC/private.ll
test/CodeGen/SPARC/setjmp.ll
test/CodeGen/SPARC/spillsize.ll
test/CodeGen/SPARC/tls.ll
test/CodeGen/SPARC/varargs.ll
test/CodeGen/SystemZ/addr-01.ll
test/CodeGen/SystemZ/addr-02.ll
test/CodeGen/SystemZ/addr-03.ll
test/CodeGen/SystemZ/alias-01.ll
test/CodeGen/SystemZ/and-01.ll
test/CodeGen/SystemZ/and-03.ll
test/CodeGen/SystemZ/and-05.ll
test/CodeGen/SystemZ/and-06.ll
test/CodeGen/SystemZ/and-08.ll
test/CodeGen/SystemZ/asm-18.ll
test/CodeGen/SystemZ/atomic-load-01.ll
test/CodeGen/SystemZ/atomic-load-02.ll
test/CodeGen/SystemZ/atomic-load-03.ll
test/CodeGen/SystemZ/atomic-load-04.ll
test/CodeGen/SystemZ/branch-02.ll
test/CodeGen/SystemZ/branch-03.ll
test/CodeGen/SystemZ/branch-04.ll
test/CodeGen/SystemZ/branch-06.ll
test/CodeGen/SystemZ/branch-08.ll
test/CodeGen/SystemZ/bswap-02.ll
test/CodeGen/SystemZ/bswap-03.ll
test/CodeGen/SystemZ/cond-load-01.ll
test/CodeGen/SystemZ/cond-load-02.ll
test/CodeGen/SystemZ/cond-store-01.ll
test/CodeGen/SystemZ/cond-store-02.ll
test/CodeGen/SystemZ/cond-store-03.ll
test/CodeGen/SystemZ/cond-store-04.ll
test/CodeGen/SystemZ/cond-store-05.ll
test/CodeGen/SystemZ/cond-store-06.ll
test/CodeGen/SystemZ/cond-store-07.ll
test/CodeGen/SystemZ/cond-store-08.ll
test/CodeGen/SystemZ/fp-abs-01.ll
test/CodeGen/SystemZ/fp-abs-02.ll
test/CodeGen/SystemZ/fp-add-01.ll
test/CodeGen/SystemZ/fp-add-02.ll
test/CodeGen/SystemZ/fp-add-03.ll
test/CodeGen/SystemZ/fp-cmp-01.ll
test/CodeGen/SystemZ/fp-cmp-02.ll
test/CodeGen/SystemZ/fp-cmp-03.ll
test/CodeGen/SystemZ/fp-cmp-04.ll
test/CodeGen/SystemZ/fp-conv-01.ll
test/CodeGen/SystemZ/fp-conv-02.ll
test/CodeGen/SystemZ/fp-conv-03.ll
test/CodeGen/SystemZ/fp-conv-04.ll
test/CodeGen/SystemZ/fp-conv-09.ll
test/CodeGen/SystemZ/fp-conv-10.ll
test/CodeGen/SystemZ/fp-conv-11.ll
test/CodeGen/SystemZ/fp-conv-12.ll
test/CodeGen/SystemZ/fp-conv-14.ll
test/CodeGen/SystemZ/fp-copysign-01.ll
test/CodeGen/SystemZ/fp-div-01.ll
test/CodeGen/SystemZ/fp-div-02.ll
test/CodeGen/SystemZ/fp-div-03.ll
test/CodeGen/SystemZ/fp-move-01.ll
test/CodeGen/SystemZ/fp-move-02.ll
test/CodeGen/SystemZ/fp-move-03.ll
test/CodeGen/SystemZ/fp-move-04.ll
test/CodeGen/SystemZ/fp-move-05.ll
test/CodeGen/SystemZ/fp-move-09.ll
test/CodeGen/SystemZ/fp-mul-01.ll
test/CodeGen/SystemZ/fp-mul-02.ll
test/CodeGen/SystemZ/fp-mul-03.ll
test/CodeGen/SystemZ/fp-mul-04.ll
test/CodeGen/SystemZ/fp-mul-05.ll
test/CodeGen/SystemZ/fp-mul-06.ll
test/CodeGen/SystemZ/fp-mul-07.ll
test/CodeGen/SystemZ/fp-mul-08.ll
test/CodeGen/SystemZ/fp-mul-09.ll
test/CodeGen/SystemZ/fp-neg-01.ll
test/CodeGen/SystemZ/fp-round-01.ll
test/CodeGen/SystemZ/fp-round-02.ll
test/CodeGen/SystemZ/fp-sqrt-01.ll
test/CodeGen/SystemZ/fp-sqrt-02.ll
test/CodeGen/SystemZ/fp-sqrt-03.ll
test/CodeGen/SystemZ/fp-sub-01.ll
test/CodeGen/SystemZ/fp-sub-02.ll
test/CodeGen/SystemZ/fp-sub-03.ll
test/CodeGen/SystemZ/frame-02.ll
test/CodeGen/SystemZ/frame-03.ll
test/CodeGen/SystemZ/frame-04.ll
test/CodeGen/SystemZ/frame-05.ll
test/CodeGen/SystemZ/frame-06.ll
test/CodeGen/SystemZ/frame-07.ll
test/CodeGen/SystemZ/frame-08.ll
test/CodeGen/SystemZ/frame-09.ll
test/CodeGen/SystemZ/frame-13.ll
test/CodeGen/SystemZ/frame-14.ll
test/CodeGen/SystemZ/frame-15.ll
test/CodeGen/SystemZ/frame-16.ll
test/CodeGen/SystemZ/frame-17.ll
test/CodeGen/SystemZ/frame-18.ll
test/CodeGen/SystemZ/insert-01.ll
test/CodeGen/SystemZ/insert-02.ll
test/CodeGen/SystemZ/insert-06.ll
test/CodeGen/SystemZ/int-add-01.ll
test/CodeGen/SystemZ/int-add-02.ll
test/CodeGen/SystemZ/int-add-03.ll
test/CodeGen/SystemZ/int-add-04.ll
test/CodeGen/SystemZ/int-add-05.ll
test/CodeGen/SystemZ/int-add-08.ll
test/CodeGen/SystemZ/int-add-09.ll
test/CodeGen/SystemZ/int-add-10.ll
test/CodeGen/SystemZ/int-add-11.ll
test/CodeGen/SystemZ/int-add-12.ll
test/CodeGen/SystemZ/int-cmp-01.ll
test/CodeGen/SystemZ/int-cmp-02.ll
test/CodeGen/SystemZ/int-cmp-03.ll
test/CodeGen/SystemZ/int-cmp-04.ll
test/CodeGen/SystemZ/int-cmp-05.ll
test/CodeGen/SystemZ/int-cmp-06.ll
test/CodeGen/SystemZ/int-cmp-07.ll
test/CodeGen/SystemZ/int-cmp-08.ll
test/CodeGen/SystemZ/int-cmp-15.ll
test/CodeGen/SystemZ/int-cmp-16.ll
test/CodeGen/SystemZ/int-cmp-17.ll
test/CodeGen/SystemZ/int-cmp-18.ll
test/CodeGen/SystemZ/int-cmp-19.ll
test/CodeGen/SystemZ/int-cmp-20.ll
test/CodeGen/SystemZ/int-cmp-21.ll
test/CodeGen/SystemZ/int-cmp-22.ll
test/CodeGen/SystemZ/int-cmp-23.ll
test/CodeGen/SystemZ/int-cmp-24.ll
test/CodeGen/SystemZ/int-cmp-25.ll
test/CodeGen/SystemZ/int-cmp-26.ll
test/CodeGen/SystemZ/int-cmp-27.ll
test/CodeGen/SystemZ/int-cmp-28.ll
test/CodeGen/SystemZ/int-cmp-29.ll
test/CodeGen/SystemZ/int-cmp-30.ll
test/CodeGen/SystemZ/int-cmp-31.ll
test/CodeGen/SystemZ/int-cmp-32.ll
test/CodeGen/SystemZ/int-cmp-33.ll
test/CodeGen/SystemZ/int-cmp-34.ll
test/CodeGen/SystemZ/int-cmp-35.ll
test/CodeGen/SystemZ/int-cmp-36.ll
test/CodeGen/SystemZ/int-cmp-37.ll
test/CodeGen/SystemZ/int-cmp-38.ll
test/CodeGen/SystemZ/int-cmp-39.ll
test/CodeGen/SystemZ/int-cmp-40.ll
test/CodeGen/SystemZ/int-cmp-41.ll
test/CodeGen/SystemZ/int-cmp-42.ll
test/CodeGen/SystemZ/int-cmp-43.ll
test/CodeGen/SystemZ/int-cmp-44.ll
test/CodeGen/SystemZ/int-cmp-45.ll
test/CodeGen/SystemZ/int-cmp-48.ll
test/CodeGen/SystemZ/int-conv-01.ll
test/CodeGen/SystemZ/int-conv-02.ll
test/CodeGen/SystemZ/int-conv-03.ll
test/CodeGen/SystemZ/int-conv-04.ll
test/CodeGen/SystemZ/int-conv-05.ll
test/CodeGen/SystemZ/int-conv-06.ll
test/CodeGen/SystemZ/int-conv-07.ll
test/CodeGen/SystemZ/int-conv-08.ll
test/CodeGen/SystemZ/int-conv-09.ll
test/CodeGen/SystemZ/int-conv-10.ll
test/CodeGen/SystemZ/int-conv-11.ll
test/CodeGen/SystemZ/int-div-01.ll
test/CodeGen/SystemZ/int-div-02.ll
test/CodeGen/SystemZ/int-div-03.ll
test/CodeGen/SystemZ/int-div-04.ll
test/CodeGen/SystemZ/int-div-05.ll
test/CodeGen/SystemZ/int-move-02.ll
test/CodeGen/SystemZ/int-move-03.ll
test/CodeGen/SystemZ/int-move-08.ll
test/CodeGen/SystemZ/int-move-09.ll
test/CodeGen/SystemZ/int-mul-01.ll
test/CodeGen/SystemZ/int-mul-02.ll
test/CodeGen/SystemZ/int-mul-03.ll
test/CodeGen/SystemZ/int-mul-04.ll
test/CodeGen/SystemZ/int-mul-08.ll
test/CodeGen/SystemZ/int-sub-01.ll
test/CodeGen/SystemZ/int-sub-02.ll
test/CodeGen/SystemZ/int-sub-03.ll
test/CodeGen/SystemZ/int-sub-04.ll
test/CodeGen/SystemZ/int-sub-05.ll
test/CodeGen/SystemZ/int-sub-06.ll
test/CodeGen/SystemZ/int-sub-07.ll
test/CodeGen/SystemZ/loop-01.ll
test/CodeGen/SystemZ/memchr-02.ll
test/CodeGen/SystemZ/memcpy-02.ll
test/CodeGen/SystemZ/or-01.ll
test/CodeGen/SystemZ/or-03.ll
test/CodeGen/SystemZ/or-05.ll
test/CodeGen/SystemZ/or-06.ll
test/CodeGen/SystemZ/or-08.ll
test/CodeGen/SystemZ/serialize-01.ll
test/CodeGen/SystemZ/shift-01.ll
test/CodeGen/SystemZ/shift-02.ll
test/CodeGen/SystemZ/shift-03.ll
test/CodeGen/SystemZ/shift-04.ll
test/CodeGen/SystemZ/shift-05.ll
test/CodeGen/SystemZ/shift-06.ll
test/CodeGen/SystemZ/shift-07.ll
test/CodeGen/SystemZ/shift-08.ll
test/CodeGen/SystemZ/spill-01.ll
test/CodeGen/SystemZ/strcpy-01.ll
test/CodeGen/SystemZ/tls-05.ll
test/CodeGen/SystemZ/tls-06.ll
test/CodeGen/SystemZ/tls-07.ll
test/CodeGen/SystemZ/unaligned-01.ll
test/CodeGen/SystemZ/xor-01.ll
test/CodeGen/SystemZ/xor-03.ll
test/CodeGen/SystemZ/xor-05.ll
test/CodeGen/SystemZ/xor-06.ll
test/CodeGen/SystemZ/xor-08.ll
test/CodeGen/Thumb/2007-01-31-RegInfoAssert.ll
test/CodeGen/Thumb/2007-05-05-InvalidPushPop.ll
test/CodeGen/Thumb/2009-07-20-TwoAddrBug.ll
test/CodeGen/Thumb/2009-08-12-ConstIslandAssert.ll
test/CodeGen/Thumb/2009-08-12-RegInfoAssert.ll
test/CodeGen/Thumb/2009-08-20-ISelBug.ll
test/CodeGen/Thumb/2009-12-17-pre-regalloc-taildup.ll
test/CodeGen/Thumb/2011-05-11-DAGLegalizer.ll
test/CodeGen/Thumb/2011-EpilogueBug.ll
test/CodeGen/Thumb/2014-06-10-thumb1-ldst-opt-bug.ll
test/CodeGen/Thumb/asmprinter-bug.ll
test/CodeGen/Thumb/cortex-m0-unaligned-access.ll
test/CodeGen/Thumb/dyn-stackalloc.ll
test/CodeGen/Thumb/large-stack.ll
test/CodeGen/Thumb/ldm-merge-call.ll
test/CodeGen/Thumb/ldm-merge-struct.ll
test/CodeGen/Thumb/ldm-stm-base-materialization.ll
test/CodeGen/Thumb/ldr_ext.ll
test/CodeGen/Thumb/ldr_frame.ll
test/CodeGen/Thumb/long.ll
test/CodeGen/Thumb/segmented-stacks.ll
test/CodeGen/Thumb/stack-access.ll
test/CodeGen/Thumb/stm-merge.ll
test/CodeGen/Thumb/thumb-ldm.ll
test/CodeGen/Thumb/vargs.ll
test/CodeGen/Thumb2/2009-07-17-CrossRegClassCopy.ll
test/CodeGen/Thumb2/2009-07-21-ISelBug.ll
test/CodeGen/Thumb2/2009-07-30-PEICrash.ll
test/CodeGen/Thumb2/2009-08-01-WrongLDRBOpc.ll
test/CodeGen/Thumb2/2009-08-02-CoalescerBug.ll
test/CodeGen/Thumb2/2009-08-04-CoalescerBug.ll
test/CodeGen/Thumb2/2009-08-04-ScavengerAssert.ll
test/CodeGen/Thumb2/2009-08-04-SubregLoweringBug3.ll
test/CodeGen/Thumb2/2009-08-07-NeonFPBug.ll
test/CodeGen/Thumb2/2009-08-10-ISelBug.ll
test/CodeGen/Thumb2/2009-09-01-PostRAProlog.ll
test/CodeGen/Thumb2/2009-09-28-ITBlockBug.ll
test/CodeGen/Thumb2/2009-11-11-ScavengerAssert.ll
test/CodeGen/Thumb2/2009-12-01-LoopIVUsers.ll
test/CodeGen/Thumb2/2010-01-06-TailDuplicateLabels.ll
test/CodeGen/Thumb2/2010-03-08-addi12-ccout.ll
test/CodeGen/Thumb2/2010-03-15-AsmCCClobber.ll
test/CodeGen/Thumb2/2010-06-19-ITBlockCrash.ll
test/CodeGen/Thumb2/2010-06-21-TailMergeBug.ll
test/CodeGen/Thumb2/2010-08-10-VarSizedAllocaBug.ll
test/CodeGen/Thumb2/2011-06-07-TwoAddrEarlyClobber.ll
test/CodeGen/Thumb2/2011-12-16-T2SizeReduceAssert.ll
test/CodeGen/Thumb2/2012-01-13-CBNZBug.ll
test/CodeGen/Thumb2/2013-02-19-tail-call-register-hint.ll
test/CodeGen/Thumb2/aligned-constants.ll
test/CodeGen/Thumb2/aligned-spill.ll
test/CodeGen/Thumb2/bfi.ll
test/CodeGen/Thumb2/constant-islands-new-island-padding.ll
test/CodeGen/Thumb2/constant-islands.ll
test/CodeGen/Thumb2/crash.ll
test/CodeGen/Thumb2/cross-rc-coalescing-2.ll
test/CodeGen/Thumb2/float-ops.ll
test/CodeGen/Thumb2/frameless2.ll
test/CodeGen/Thumb2/ifcvt-neon.ll
test/CodeGen/Thumb2/inflate-regs.ll
test/CodeGen/Thumb2/large-call.ll
test/CodeGen/Thumb2/large-stack.ll
test/CodeGen/Thumb2/lsr-deficiency.ll
test/CodeGen/Thumb2/machine-licm.ll
test/CodeGen/Thumb2/tail-call-r9.ll
test/CodeGen/Thumb2/thumb2-call-tc.ll
test/CodeGen/Thumb2/thumb2-call.ll
test/CodeGen/Thumb2/thumb2-ifcvt1-tc.ll
test/CodeGen/Thumb2/thumb2-ifcvt1.ll
test/CodeGen/Thumb2/thumb2-ifcvt2.ll
test/CodeGen/Thumb2/thumb2-ifcvt3.ll
test/CodeGen/Thumb2/thumb2-ldm.ll
test/CodeGen/Thumb2/thumb2-ldr.ll
test/CodeGen/Thumb2/thumb2-ldr_ext.ll
test/CodeGen/Thumb2/thumb2-ldr_post.ll
test/CodeGen/Thumb2/thumb2-ldr_pre.ll
test/CodeGen/Thumb2/thumb2-ldrb.ll
test/CodeGen/Thumb2/thumb2-ldrd.ll
test/CodeGen/Thumb2/thumb2-ldrh.ll
test/CodeGen/Thumb2/thumb2-smul.ll
test/CodeGen/Thumb2/thumb2-spill-q.ll
test/CodeGen/Thumb2/thumb2-str_post.ll
test/CodeGen/Thumb2/thumb2-str_pre.ll
test/CodeGen/Thumb2/thumb2-tbh.ll
test/CodeGen/Thumb2/tls1.ll
test/CodeGen/Thumb2/tls2.ll
test/CodeGen/Thumb2/tpsoft.ll
test/CodeGen/Thumb2/v8_IT_2.ll
test/CodeGen/Thumb2/v8_IT_3.ll
test/CodeGen/X86/2005-01-17-CycleInDAG.ll
test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll
test/CodeGen/X86/2006-04-27-ISelFoldingBug.ll
test/CodeGen/X86/2006-05-01-SchedCausingSpills.ll
test/CodeGen/X86/2006-05-02-InstrSched1.ll
test/CodeGen/X86/2006-05-02-InstrSched2.ll
test/CodeGen/X86/2006-05-08-CoalesceSubRegClass.ll
test/CodeGen/X86/2006-05-08-InstrSched.ll
test/CodeGen/X86/2006-05-11-InstrSched.ll
test/CodeGen/X86/2006-05-25-CycleInDAG.ll
test/CodeGen/X86/2006-07-20-InlineAsm.ll
test/CodeGen/X86/2006-08-07-CycleInDAG.ll
test/CodeGen/X86/2006-08-16-CycleInDAG.ll
test/CodeGen/X86/2006-09-01-CycleInDAG.ll
test/CodeGen/X86/2006-10-09-CycleInDAG.ll
test/CodeGen/X86/2006-10-10-FindModifiedNodeSlotBug.ll
test/CodeGen/X86/2006-10-12-CycleInDAG.ll
test/CodeGen/X86/2006-10-13-CycleInDAG.ll
test/CodeGen/X86/2006-11-12-CSRetCC.ll
test/CodeGen/X86/2006-11-17-IllegalMove.ll
test/CodeGen/X86/2006-12-16-InlineAsmCrash.ll
test/CodeGen/X86/2007-01-13-StackPtrIndex.ll
test/CodeGen/X86/2007-02-04-OrAddrMode.ll
test/CodeGen/X86/2007-02-16-BranchFold.ll
test/CodeGen/X86/2007-02-19-LiveIntervalAssert.ll
test/CodeGen/X86/2007-03-01-SpillerCrash.ll
test/CodeGen/X86/2007-03-15-GEP-Idx-Sink.ll
test/CodeGen/X86/2007-03-16-InlineAsm.ll
test/CodeGen/X86/2007-03-26-CoalescerBug.ll
test/CodeGen/X86/2007-04-17-LiveIntervalAssert.ll
test/CodeGen/X86/2007-05-05-VecCastExpand.ll
test/CodeGen/X86/2007-06-29-VecFPConstantCSEBug.ll
test/CodeGen/X86/2007-07-10-StackerAssert.ll
test/CodeGen/X86/2007-07-18-Vector-Extract.ll
test/CodeGen/X86/2007-08-09-IllegalX86-64Asm.ll
test/CodeGen/X86/2007-09-05-InvalidAsm.ll
test/CodeGen/X86/2007-10-04-AvoidEFLAGSCopy.ll
test/CodeGen/X86/2007-10-12-CoalesceExtSubReg.ll
test/CodeGen/X86/2007-10-12-SpillerUnfold1.ll
test/CodeGen/X86/2007-10-12-SpillerUnfold2.ll
test/CodeGen/X86/2007-10-14-CoalescerCrash.ll
test/CodeGen/X86/2007-10-19-SpillerUnfold.ll
test/CodeGen/X86/2007-10-29-ExtendSetCC.ll
test/CodeGen/X86/2007-10-31-extractelement-i64.ll
test/CodeGen/X86/2007-11-04-LiveIntervalCrash.ll
test/CodeGen/X86/2007-11-06-InstrSched.ll
test/CodeGen/X86/2007-11-07-MulBy4.ll
test/CodeGen/X86/2007-12-16-BURRSchedCrash.ll
test/CodeGen/X86/2007-12-18-LoadCSEBug.ll
test/CodeGen/X86/2008-01-08-SchedulerCrash.ll
test/CodeGen/X86/2008-01-16-FPStackifierAssert.ll
test/CodeGen/X86/2008-01-16-InvalidDAGCombineXform.ll
test/CodeGen/X86/2008-02-05-ISelCrash.ll
test/CodeGen/X86/2008-02-06-LoadFoldingBug.ll
test/CodeGen/X86/2008-02-18-TailMergingBug.ll
test/CodeGen/X86/2008-02-20-InlineAsmClobber.ll
test/CodeGen/X86/2008-02-22-LocalRegAllocBug.ll
test/CodeGen/X86/2008-02-25-X86-64-CoalescerBug.ll
test/CodeGen/X86/2008-02-27-DeadSlotElimBug.ll
test/CodeGen/X86/2008-03-07-APIntBug.ll
test/CodeGen/X86/2008-03-10-RegAllocInfLoop.ll
test/CodeGen/X86/2008-03-12-ThreadLocalAlias.ll
test/CodeGen/X86/2008-03-14-SpillerCrash.ll
test/CodeGen/X86/2008-03-23-DarwinAsmComments.ll
test/CodeGen/X86/2008-03-31-SpillerFoldingBug.ll
test/CodeGen/X86/2008-04-09-BranchFolding.ll
test/CodeGen/X86/2008-04-15-LiveVariableBug.ll
test/CodeGen/X86/2008-04-16-CoalescerBug.ll
test/CodeGen/X86/2008-04-17-CoalescerBug.ll
test/CodeGen/X86/2008-04-24-pblendw-fold-crash.ll
test/CodeGen/X86/2008-04-28-CoalescerBug.ll
test/CodeGen/X86/2008-05-09-ShuffleLoweringBug.ll
test/CodeGen/X86/2008-05-12-tailmerge-5.ll
test/CodeGen/X86/2008-05-21-CoalescerBug.ll
test/CodeGen/X86/2008-05-22-FoldUnalignedLoad.ll
test/CodeGen/X86/2008-06-13-NotVolatileLoadStore.ll
test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll
test/CodeGen/X86/2008-06-16-SubregsBug.ll
test/CodeGen/X86/2008-07-07-DanglingDeadInsts.ll
test/CodeGen/X86/2008-07-19-movups-spills.ll
test/CodeGen/X86/2008-07-22-CombinerCrash.ll
test/CodeGen/X86/2008-08-06-RewriterBug.ll
test/CodeGen/X86/2008-08-31-EH_RETURN64.ll
test/CodeGen/X86/2008-09-09-LinearScanBug.ll
test/CodeGen/X86/2008-09-11-CoalescerBug.ll
test/CodeGen/X86/2008-09-11-CoalescerBug2.ll
test/CodeGen/X86/2008-09-17-inline-asm-1.ll
test/CodeGen/X86/2008-09-18-inline-asm-2.ll
test/CodeGen/X86/2008-09-19-RegAllocBug.ll
test/CodeGen/X86/2008-09-29-ReMatBug.ll
test/CodeGen/X86/2008-09-29-VolatileBug.ll
test/CodeGen/X86/2008-10-06-x87ld-nan-2.ll
test/CodeGen/X86/2008-10-07-SSEISelBug.ll
test/CodeGen/X86/2008-10-11-CallCrash.ll
test/CodeGen/X86/2008-10-16-VecUnaryOp.ll
test/CodeGen/X86/2008-10-27-CoalescerBug.ll
test/CodeGen/X86/2008-11-06-testb.ll
test/CodeGen/X86/2008-12-01-loop-iv-used-outside-loop.ll
test/CodeGen/X86/2008-12-02-IllegalResultType.ll
test/CodeGen/X86/2009-01-16-SchedulerBug.ll
test/CodeGen/X86/2009-01-18-ConstantExprCrash.ll
test/CodeGen/X86/2009-01-31-BigShift2.ll
test/CodeGen/X86/2009-02-01-LargeMask.ll
test/CodeGen/X86/2009-02-03-AnalyzedTwice.ll
test/CodeGen/X86/2009-02-11-codegenprepare-reuse.ll
test/CodeGen/X86/2009-02-12-DebugInfoVLA.ll
test/CodeGen/X86/2009-02-26-MachineLICMBug.ll
test/CodeGen/X86/2009-03-03-BTHang.ll
test/CodeGen/X86/2009-03-05-burr-list-crash.ll
test/CodeGen/X86/2009-03-09-APIntCrash.ll
test/CodeGen/X86/2009-03-10-CoalescerBug.ll
test/CodeGen/X86/2009-03-23-LinearScanBug.ll
test/CodeGen/X86/2009-03-23-MultiUseSched.ll
test/CodeGen/X86/2009-03-25-TestBug.ll
test/CodeGen/X86/2009-04-14-IllegalRegs.ll
test/CodeGen/X86/2009-04-16-SpillerUnfold.ll
test/CodeGen/X86/2009-04-24.ll
test/CodeGen/X86/2009-04-25-CoalescerBug.ll
test/CodeGen/X86/2009-04-27-CoalescerAssert.ll
test/CodeGen/X86/2009-04-29-IndirectDestOperands.ll
test/CodeGen/X86/2009-04-29-LinearScanBug.ll
test/CodeGen/X86/2009-04-29-RegAllocAssert.ll
test/CodeGen/X86/2009-04-scale.ll
test/CodeGen/X86/2009-05-11-tailmerge-crash.ll
test/CodeGen/X86/2009-05-28-DAGCombineCrash.ll
test/CodeGen/X86/2009-05-30-ISelBug.ll
test/CodeGen/X86/2009-06-02-RewriterBug.ll
test/CodeGen/X86/2009-06-04-VirtualLiveIn.ll
test/CodeGen/X86/2009-06-05-VZextByteShort.ll
test/CodeGen/X86/2009-07-15-CoalescerBug.ll
test/CodeGen/X86/2009-07-20-DAGCombineBug.ll
test/CodeGen/X86/2009-08-06-branchfolder-crash.ll
test/CodeGen/X86/2009-08-14-Win64MemoryIndirectArg.ll
test/CodeGen/X86/2009-08-19-LoadNarrowingMiscompile.ll
test/CodeGen/X86/2009-08-23-SubRegReuseUndo.ll
test/CodeGen/X86/2009-09-10-LoadFoldingBug.ll
test/CodeGen/X86/2009-09-10-SpillComments.ll
test/CodeGen/X86/2009-09-16-CoalescerBug.ll
test/CodeGen/X86/2009-09-21-NoSpillLoopCount.ll
test/CodeGen/X86/2009-09-22-CoalescerBug.ll
test/CodeGen/X86/2009-10-19-EmergencySpill.ll
test/CodeGen/X86/2009-10-19-atomic-cmp-eflags.ll
test/CodeGen/X86/2009-10-25-RewriterBug.ll
test/CodeGen/X86/2009-11-16-MachineLICM.ll
test/CodeGen/X86/2009-11-25-ImpDefBug.ll
test/CodeGen/X86/2009-12-01-EarlyClobberBug.ll
test/CodeGen/X86/2009-12-11-TLSNoRedZone.ll
test/CodeGen/X86/20090313-signext.ll
test/CodeGen/X86/2010-01-13-OptExtBug.ll
test/CodeGen/X86/2010-01-15-SelectionDAGCycle.ll
test/CodeGen/X86/2010-01-18-DbgValue.ll
test/CodeGen/X86/2010-01-19-OptExtBug.ll
test/CodeGen/X86/2010-02-04-SchedulerBug.ll
test/CodeGen/X86/2010-02-11-NonTemporal.ll
test/CodeGen/X86/2010-02-12-CoalescerBug-Impdef.ll
test/CodeGen/X86/2010-02-19-TailCallRetAddrBug.ll
test/CodeGen/X86/2010-02-23-RematImplicitSubreg.ll
test/CodeGen/X86/2010-03-17-ISelBug.ll
test/CodeGen/X86/2010-04-06-SSEDomainFixCrash.ll
test/CodeGen/X86/2010-04-08-CoalescerBug.ll
test/CodeGen/X86/2010-04-13-AnalyzeBranchCrash.ll
test/CodeGen/X86/2010-04-30-LocalAlloc-LandingPad.ll
test/CodeGen/X86/2010-05-05-LocalAllocEarlyClobber.ll
test/CodeGen/X86/2010-05-07-ldconvert.ll
test/CodeGen/X86/2010-05-10-DAGCombinerBug.ll
test/CodeGen/X86/2010-05-16-nosseconversion.ll
test/CodeGen/X86/2010-05-26-DotDebugLoc.ll
test/CodeGen/X86/2010-05-26-FP_TO_INT-crash.ll
test/CodeGen/X86/2010-06-14-fast-isel-fs-load.ll
test/CodeGen/X86/2010-06-15-FastAllocEarlyCLobber.ll
test/CodeGen/X86/2010-06-25-CoalescerSubRegDefDead.ll
test/CodeGen/X86/2010-06-25-asm-RA-crash.ll
test/CodeGen/X86/2010-06-28-matched-g-constraint.ll
test/CodeGen/X86/2010-07-02-UnfoldBug.ll
test/CodeGen/X86/2010-07-11-FPStackLoneUse.ll
test/CodeGen/X86/2010-08-04-MaskedSignedCompare.ll
test/CodeGen/X86/2010-08-04-StackVariable.ll
test/CodeGen/X86/2010-09-01-RemoveCopyByCommutingDef.ll
test/CodeGen/X86/2010-09-17-SideEffectsInChain.ll
test/CodeGen/X86/2010-11-09-MOVLPS.ll
test/CodeGen/X86/2010-11-18-SelectOfExtload.ll
test/CodeGen/X86/2011-02-12-shuffle.ll
test/CodeGen/X86/2011-03-02-DAGCombiner.ll
test/CodeGen/X86/2011-03-09-Physreg-Coalescing.ll
test/CodeGen/X86/2011-04-13-SchedCmpJmp.ll
test/CodeGen/X86/2011-05-09-loaduse.ll
test/CodeGen/X86/2011-05-26-UnreachableBlockElim.ll
test/CodeGen/X86/2011-05-27-CrossClassCoalescing.ll
test/CodeGen/X86/2011-06-01-fildll.ll
test/CodeGen/X86/2011-06-03-x87chain.ll
test/CodeGen/X86/2011-06-12-FastAllocSpill.ll
test/CodeGen/X86/2011-07-13-BadFrameIndexDisplacement.ll
test/CodeGen/X86/2011-09-14-valcoalesce.ll
test/CodeGen/X86/2011-09-21-setcc-bug.ll
test/CodeGen/X86/2011-10-11-srl.ll
test/CodeGen/X86/2011-10-12-MachineCSE.ll
test/CodeGen/X86/2011-10-18-FastISel-VectorParams.ll
test/CodeGen/X86/2011-10-19-LegelizeLoad.ll
test/CodeGen/X86/2011-10-19-widen_vselect.ll
test/CodeGen/X86/2011-10-27-tstore.ll
test/CodeGen/X86/2011-11-22-AVX2-Domains.ll
test/CodeGen/X86/2011-12-08-AVXISelBugs.ll
test/CodeGen/X86/2011-12-26-extractelement-duplicate-load.ll
test/CodeGen/X86/2012-01-10-UndefExceptionEdge.ll
test/CodeGen/X86/2012-01-11-split-cv.ll
test/CodeGen/X86/2012-01-12-extract-sv.ll
test/CodeGen/X86/2012-01-16-mfence-nosse-flags.ll
test/CodeGen/X86/2012-02-12-dagco.ll
test/CodeGen/X86/2012-02-29-CoalescerBug.ll
test/CodeGen/X86/2012-03-26-PostRALICMBug.ll
test/CodeGen/X86/2012-04-26-sdglue.ll
test/CodeGen/X86/2012-07-10-extload64.ll
test/CodeGen/X86/2012-07-15-broadcastfold.ll
test/CodeGen/X86/2012-08-17-legalizer-crash.ll
test/CodeGen/X86/2012-09-28-CGPBug.ll
test/CodeGen/X86/2012-10-02-DAGCycle.ll
test/CodeGen/X86/2012-10-03-DAGCycle.ll
test/CodeGen/X86/2012-10-18-crash-dagco.ll
test/CodeGen/X86/2012-11-28-merge-store-alias.ll
test/CodeGen/X86/2012-11-30-handlemove-dbg.ll
test/CodeGen/X86/2012-11-30-misched-dbg.ll
test/CodeGen/X86/2012-12-06-python27-miscompile.ll
test/CodeGen/X86/2012-12-19-NoImplicitFloat.ll
test/CodeGen/X86/2013-03-13-VEX-DestReg.ll
test/CodeGen/X86/2013-10-14-FastISel-incorrect-vreg.ll
test/CodeGen/X86/Atomics-64.ll
test/CodeGen/X86/GC/alloc_loop.ll
test/CodeGen/X86/GC/argpromotion.ll
test/CodeGen/X86/GC/inline.ll
test/CodeGen/X86/GC/inline2.ll
test/CodeGen/X86/MachineBranchProb.ll
test/CodeGen/X86/MachineSink-DbgValue.ll
test/CodeGen/X86/MachineSink-eflags.ll
test/CodeGen/X86/MergeConsecutiveStores.ll
test/CodeGen/X86/StackColoring.ll
test/CodeGen/X86/SwitchLowering.ll
test/CodeGen/X86/SwizzleShuff.ll
test/CodeGen/X86/abi-isel.ll
test/CodeGen/X86/addr-mode-matcher.ll
test/CodeGen/X86/address-type-promotion-constantexpr.ll
test/CodeGen/X86/aliases.ll
test/CodeGen/X86/aligned-variadic.ll
test/CodeGen/X86/and-su.ll
test/CodeGen/X86/atom-call-reg-indirect-foldedreload32.ll
test/CodeGen/X86/atom-call-reg-indirect-foldedreload64.ll
test/CodeGen/X86/atom-call-reg-indirect.ll
test/CodeGen/X86/atom-cmpb.ll
test/CodeGen/X86/atom-fixup-lea1.ll
test/CodeGen/X86/atom-fixup-lea2.ll
test/CodeGen/X86/atom-fixup-lea3.ll
test/CodeGen/X86/atom-fixup-lea4.ll
test/CodeGen/X86/atom-lea-addw-bug.ll
test/CodeGen/X86/atom-sched.ll
test/CodeGen/X86/atomic-dagsched.ll
test/CodeGen/X86/atomic-load-store-wide.ll
test/CodeGen/X86/atomic-load-store.ll
test/CodeGen/X86/atomic-or.ll
test/CodeGen/X86/atomic-pointer.ll
test/CodeGen/X86/atomic128.ll
test/CodeGen/X86/atomic_mi.ll
test/CodeGen/X86/atomic_op.ll
test/CodeGen/X86/avoid-loop-align-2.ll
test/CodeGen/X86/avoid-loop-align.ll
test/CodeGen/X86/avoid_complex_am.ll
test/CodeGen/X86/avx-arith.ll
test/CodeGen/X86/avx-basic.ll
test/CodeGen/X86/avx-bitcast.ll
test/CodeGen/X86/avx-cvt.ll
test/CodeGen/X86/avx-intel-ocl.ll
test/CodeGen/X86/avx-intrinsics-x86.ll
test/CodeGen/X86/avx-load-store.ll
test/CodeGen/X86/avx-logic.ll
test/CodeGen/X86/avx-splat.ll
test/CodeGen/X86/avx-unpack.ll
test/CodeGen/X86/avx-varargs-x86_64.ll
test/CodeGen/X86/avx-vbroadcast.ll
test/CodeGen/X86/avx-vinsertf128.ll
test/CodeGen/X86/avx-vperm2x128.ll
test/CodeGen/X86/avx-vzeroupper.ll
test/CodeGen/X86/avx.ll
test/CodeGen/X86/avx1-logical-load-folding.ll
test/CodeGen/X86/avx2-conversions.ll
test/CodeGen/X86/avx2-pmovxrm-intrinsics.ll
test/CodeGen/X86/avx2-shift.ll
test/CodeGen/X86/avx2-vbroadcast.ll
test/CodeGen/X86/avx512-arith.ll
test/CodeGen/X86/avx512-build-vector.ll
test/CodeGen/X86/avx512-cvt.ll
test/CodeGen/X86/avx512-gather-scatter-intrin.ll
test/CodeGen/X86/avx512-i1test.ll
test/CodeGen/X86/avx512-insert-extract.ll
test/CodeGen/X86/avx512-intel-ocl.ll
test/CodeGen/X86/avx512-intrinsics.ll
test/CodeGen/X86/avx512-logic.ll
test/CodeGen/X86/avx512-mask-op.ll
test/CodeGen/X86/avx512-mov.ll
test/CodeGen/X86/avx512-round.ll
test/CodeGen/X86/avx512-shift.ll
test/CodeGen/X86/avx512-vbroadcast.ll
test/CodeGen/X86/avx512-vec-cmp.ll
test/CodeGen/X86/avx512bw-arith.ll
test/CodeGen/X86/avx512bw-mask-op.ll
test/CodeGen/X86/avx512bw-mov.ll
test/CodeGen/X86/avx512bw-vec-cmp.ll
test/CodeGen/X86/avx512bwvl-arith.ll
test/CodeGen/X86/avx512bwvl-intrinsics.ll
test/CodeGen/X86/avx512bwvl-mov.ll
test/CodeGen/X86/avx512bwvl-vec-cmp.ll
test/CodeGen/X86/avx512dq-mask-op.ll
test/CodeGen/X86/avx512er-intrinsics.ll
test/CodeGen/X86/avx512vl-arith.ll
test/CodeGen/X86/avx512vl-intrinsics.ll
test/CodeGen/X86/avx512vl-mov.ll
test/CodeGen/X86/avx512vl-vec-cmp.ll
test/CodeGen/X86/bitcast-mmx.ll
test/CodeGen/X86/block-placement.ll
test/CodeGen/X86/bmi.ll
test/CodeGen/X86/break-anti-dependencies.ll
test/CodeGen/X86/break-false-dep.ll
test/CodeGen/X86/bswap.ll
test/CodeGen/X86/byval-align.ll
test/CodeGen/X86/byval.ll
test/CodeGen/X86/call-push.ll
test/CodeGen/X86/cas.ll
test/CodeGen/X86/chain_order.ll
test/CodeGen/X86/change-compare-stride-1.ll
test/CodeGen/X86/clobber-fi0.ll
test/CodeGen/X86/cmov-into-branch.ll
test/CodeGen/X86/cmov.ll
test/CodeGen/X86/cmp.ll
test/CodeGen/X86/cmpxchg-clobber-flags.ll
test/CodeGen/X86/cmpxchg-i1.ll
test/CodeGen/X86/cmpxchg-i128-i1.ll
test/CodeGen/X86/coalesce-esp.ll
test/CodeGen/X86/coalesce-implicitdef.ll
test/CodeGen/X86/coalescer-commute1.ll
test/CodeGen/X86/coalescer-commute4.ll
test/CodeGen/X86/coalescer-cross.ll
test/CodeGen/X86/coalescer-dce2.ll
test/CodeGen/X86/coalescer-identity.ll
test/CodeGen/X86/code_placement.ll
test/CodeGen/X86/codegen-prepare-addrmode-sext.ll
test/CodeGen/X86/codegen-prepare-cast.ll
test/CodeGen/X86/codegen-prepare-extload.ll
test/CodeGen/X86/codegen-prepare.ll
test/CodeGen/X86/codemodel.ll
test/CodeGen/X86/combiner-aa-0.ll
test/CodeGen/X86/combiner-aa-1.ll
test/CodeGen/X86/commute-blend-avx2.ll
test/CodeGen/X86/commute-blend-sse41.ll
test/CodeGen/X86/commute-clmul.ll
test/CodeGen/X86/commute-fcmp.ll
test/CodeGen/X86/commute-intrinsic.ll
test/CodeGen/X86/commute-xop.ll
test/CodeGen/X86/compact-unwind.ll
test/CodeGen/X86/complex-asm.ll
test/CodeGen/X86/computeKnownBits_urem.ll
test/CodeGen/X86/const-base-addr.ll
test/CodeGen/X86/constant-combines.ll
test/CodeGen/X86/constant-hoisting-optnone.ll
test/CodeGen/X86/constant-hoisting-shift-immediate.ll
test/CodeGen/X86/convert-2-addr-3-addr-inc64.ll
test/CodeGen/X86/cppeh-catch-all.ll
test/CodeGen/X86/cppeh-catch-scalar.ll
test/CodeGen/X86/cppeh-frame-vars.ll
test/CodeGen/X86/crash-O0.ll
test/CodeGen/X86/crash-nosse.ll
test/CodeGen/X86/crash.ll
test/CodeGen/X86/critical-anti-dep-breaker.ll
test/CodeGen/X86/cse-add-with-overflow.ll
test/CodeGen/X86/cvt16.ll
test/CodeGen/X86/dagcombine-buildvector.ll
test/CodeGen/X86/dagcombine-cse.ll
test/CodeGen/X86/darwin-quote.ll
test/CodeGen/X86/dbg-changes-codegen.ll
test/CodeGen/X86/dbg-combine.ll
test/CodeGen/X86/discontiguous-loops.ll
test/CodeGen/X86/div8.ll
test/CodeGen/X86/dllimport-x86_64.ll
test/CodeGen/X86/dllimport.ll
test/CodeGen/X86/dollar-name.ll
test/CodeGen/X86/dont-trunc-store-double-to-float.ll
test/CodeGen/X86/dynamic-allocas-VLAs.ll
test/CodeGen/X86/early-ifcvt.ll
test/CodeGen/X86/emit-big-cst.ll
test/CodeGen/X86/expand-opaque-const.ll
test/CodeGen/X86/extend.ll
test/CodeGen/X86/extract-extract.ll
test/CodeGen/X86/extractelement-load.ll
test/CodeGen/X86/extractps.ll
test/CodeGen/X86/f16c-intrinsics.ll
test/CodeGen/X86/fast-isel-args-fail.ll
test/CodeGen/X86/fast-isel-avoid-unnecessary-pic-base.ll
test/CodeGen/X86/fast-isel-call-bool.ll
test/CodeGen/X86/fast-isel-fold-mem.ll
test/CodeGen/X86/fast-isel-fptrunc-fpext.ll
test/CodeGen/X86/fast-isel-gep.ll
test/CodeGen/X86/fast-isel-gv.ll
test/CodeGen/X86/fast-isel-i1.ll
test/CodeGen/X86/fast-isel-int-float-conversion.ll
test/CodeGen/X86/fast-isel-mem.ll
test/CodeGen/X86/fast-isel-tailcall.ll
test/CodeGen/X86/fast-isel-tls.ll
test/CodeGen/X86/fast-isel-x86-64.ll
test/CodeGen/X86/fast-isel-x86.ll
test/CodeGen/X86/fast-isel.ll
test/CodeGen/X86/fastcc-byval.ll
test/CodeGen/X86/fastcc-sret.ll
test/CodeGen/X86/fastcc.ll
test/CodeGen/X86/fastisel-gep-promote-before-add.ll
test/CodeGen/X86/fma-do-not-commute.ll
test/CodeGen/X86/fma4-intrinsics-x86_64-folded-load.ll
test/CodeGen/X86/fma_patterns.ll
test/CodeGen/X86/fmul-zero.ll
test/CodeGen/X86/fold-add.ll
test/CodeGen/X86/fold-and-shift.ll
test/CodeGen/X86/fold-call-2.ll
test/CodeGen/X86/fold-call-3.ll
test/CodeGen/X86/fold-call-oper.ll
test/CodeGen/X86/fold-call.ll
test/CodeGen/X86/fold-load-unops.ll
test/CodeGen/X86/fold-load-vec.ll
test/CodeGen/X86/fold-load.ll
test/CodeGen/X86/fold-mul-lohi.ll
test/CodeGen/X86/fold-pcmpeqd-2.ll
test/CodeGen/X86/fold-sext-trunc.ll
test/CodeGen/X86/fold-tied-op.ll
test/CodeGen/X86/fold-vex.ll
test/CodeGen/X86/fold-zext-trunc.ll
test/CodeGen/X86/force-align-stack-alloca.ll
test/CodeGen/X86/fp-double-rounding.ll
test/CodeGen/X86/fp-load-trunc.ll
test/CodeGen/X86/fp-stack-O0-crash.ll
test/CodeGen/X86/fp-stack-compare-cmov.ll
test/CodeGen/X86/fp-stack-compare.ll
test/CodeGen/X86/fp-stack-ret.ll
test/CodeGen/X86/fp-stack.ll
test/CodeGen/X86/fp2sint.ll
test/CodeGen/X86/fp_load_cast_fold.ll
test/CodeGen/X86/fp_load_fold.ll
test/CodeGen/X86/frameallocate.ll
test/CodeGen/X86/full-lsr.ll
test/CodeGen/X86/gather-addresses.ll
test/CodeGen/X86/ghc-cc.ll
test/CodeGen/X86/ghc-cc64.ll
test/CodeGen/X86/gs-fold.ll
test/CodeGen/X86/h-register-addressing-32.ll
test/CodeGen/X86/h-register-addressing-64.ll
test/CodeGen/X86/half.ll
test/CodeGen/X86/hidden-vis-2.ll
test/CodeGen/X86/hidden-vis-3.ll
test/CodeGen/X86/hidden-vis-4.ll
test/CodeGen/X86/hidden-vis-pic.ll
test/CodeGen/X86/hipe-cc.ll
test/CodeGen/X86/hipe-cc64.ll
test/CodeGen/X86/hoist-invariant-load.ll
test/CodeGen/X86/i128-mul.ll
test/CodeGen/X86/i128-ret.ll
test/CodeGen/X86/i1narrowfail.ll
test/CodeGen/X86/i256-add.ll
test/CodeGen/X86/i2k.ll
test/CodeGen/X86/i486-fence-loop.ll
test/CodeGen/X86/i64-mem-copy.ll
test/CodeGen/X86/inline-asm-fpstack.ll
test/CodeGen/X86/inline-asm-out-regs.ll
test/CodeGen/X86/inline-asm-ptr-cast.ll
test/CodeGen/X86/inline-asm-stack-realign.ll
test/CodeGen/X86/inline-asm-stack-realign2.ll
test/CodeGen/X86/inline-asm-stack-realign3.ll
test/CodeGen/X86/inline-asm-tied.ll
test/CodeGen/X86/ins_split_regalloc.ll
test/CodeGen/X86/ins_subreg_coalesce-1.ll
test/CodeGen/X86/ins_subreg_coalesce-3.ll
test/CodeGen/X86/insertps-O0-bug.ll
test/CodeGen/X86/invalid-shift-immediate.ll
test/CodeGen/X86/isel-optnone.ll
test/CodeGen/X86/isel-sink.ll
test/CodeGen/X86/isel-sink2.ll
test/CodeGen/X86/isel-sink3.ll
test/CodeGen/X86/jump_sign.ll
test/CodeGen/X86/large-constants.ll
test/CodeGen/X86/ldzero.ll
test/CodeGen/X86/lea-5.ll
test/CodeGen/X86/lea-recursion.ll
test/CodeGen/X86/legalize-shift-64.ll
test/CodeGen/X86/licm-nested.ll
test/CodeGen/X86/liveness-local-regalloc.ll
test/CodeGen/X86/load-slice.ll
test/CodeGen/X86/longlong-deadload.ll
test/CodeGen/X86/loop-strength-reduce4.ll
test/CodeGen/X86/loop-strength-reduce7.ll
test/CodeGen/X86/loop-strength-reduce8.ll
test/CodeGen/X86/lsr-delayed-fold.ll
test/CodeGen/X86/lsr-i386.ll
test/CodeGen/X86/lsr-loop-exit-cond.ll
test/CodeGen/X86/lsr-normalization.ll
test/CodeGen/X86/lsr-redundant-addressing.ll
test/CodeGen/X86/lsr-reuse-trunc.ll
test/CodeGen/X86/lsr-reuse.ll
test/CodeGen/X86/lsr-static-addr.ll
test/CodeGen/X86/lsr-wrap.ll
test/CodeGen/X86/lzcnt-tzcnt.ll
test/CodeGen/X86/machine-cse.ll
test/CodeGen/X86/masked-iv-safe.ll
test/CodeGen/X86/masked-iv-unsafe.ll
test/CodeGen/X86/mcinst-lowering.ll
test/CodeGen/X86/mem-intrin-base-reg.ll
test/CodeGen/X86/mem-promote-integers.ll
test/CodeGen/X86/misaligned-memset.ll
test/CodeGen/X86/misched-aa-colored.ll
test/CodeGen/X86/misched-aa-mmos.ll
test/CodeGen/X86/misched-balance.ll
test/CodeGen/X86/misched-code-difference-with-debug.ll
test/CodeGen/X86/misched-crash.ll
test/CodeGen/X86/misched-fusion.ll
test/CodeGen/X86/misched-matmul.ll
test/CodeGen/X86/misched-matrix.ll
test/CodeGen/X86/misched-new.ll
test/CodeGen/X86/mmx-arg-passing-x86-64.ll
test/CodeGen/X86/mmx-arith.ll
test/CodeGen/X86/mmx-bitcast.ll
test/CodeGen/X86/mmx-copy-gprs.ll
test/CodeGen/X86/mmx-fold-load.ll
test/CodeGen/X86/movbe.ll
test/CodeGen/X86/movfs.ll
test/CodeGen/X86/movgs.ll
test/CodeGen/X86/movmsk.ll
test/CodeGen/X86/movtopush.ll
test/CodeGen/X86/ms-inline-asm.ll
test/CodeGen/X86/mul128_sext_loop.ll
test/CodeGen/X86/muloti.ll
test/CodeGen/X86/mult-alt-generic-i686.ll
test/CodeGen/X86/mult-alt-generic-x86_64.ll
test/CodeGen/X86/mult-alt-x86.ll
test/CodeGen/X86/multiple-loop-post-inc.ll
test/CodeGen/X86/mulx32.ll
test/CodeGen/X86/mulx64.ll
test/CodeGen/X86/musttail-indirect.ll
test/CodeGen/X86/musttail-varargs.ll
test/CodeGen/X86/nancvt.ll
test/CodeGen/X86/narrow-shl-load.ll
test/CodeGen/X86/narrow_op-1.ll
test/CodeGen/X86/negate-add-zero.ll
test/CodeGen/X86/no-cmov.ll
test/CodeGen/X86/norex-subreg.ll
test/CodeGen/X86/nosse-error1.ll
test/CodeGen/X86/nosse-error2.ll
test/CodeGen/X86/nosse-varargs.ll
test/CodeGen/X86/object-size.ll
test/CodeGen/X86/opt-ext-uses.ll
test/CodeGen/X86/optimize-max-0.ll
test/CodeGen/X86/optimize-max-2.ll
test/CodeGen/X86/optimize-max-3.ll
test/CodeGen/X86/packed_struct.ll
test/CodeGen/X86/palignr-2.ll
test/CodeGen/X86/patchpoint.ll
test/CodeGen/X86/peep-test-0.ll
test/CodeGen/X86/peep-test-1.ll
test/CodeGen/X86/peephole-fold-movsd.ll
test/CodeGen/X86/peephole-multiple-folds.ll
test/CodeGen/X86/phi-bit-propagation.ll
test/CodeGen/X86/phielim-split.ll
test/CodeGen/X86/phys-reg-local-regalloc.ll
test/CodeGen/X86/phys_subreg_coalesce-3.ll
test/CodeGen/X86/pic.ll
test/CodeGen/X86/pic_jumptable.ll
test/CodeGen/X86/pmovext.ll
test/CodeGen/X86/pmovsx-inreg.ll
test/CodeGen/X86/pmulld.ll
test/CodeGen/X86/pointer-vector.ll
test/CodeGen/X86/postra-licm.ll
test/CodeGen/X86/pr10475.ll
test/CodeGen/X86/pr10525.ll
test/CodeGen/X86/pr11334.ll
test/CodeGen/X86/pr12360.ll
test/CodeGen/X86/pr12889.ll
test/CodeGen/X86/pr13209.ll
test/CodeGen/X86/pr13859.ll
test/CodeGen/X86/pr13899.ll
test/CodeGen/X86/pr14161.ll
test/CodeGen/X86/pr14562.ll
test/CodeGen/X86/pr1505b.ll
test/CodeGen/X86/pr15267.ll
test/CodeGen/X86/pr15309.ll
test/CodeGen/X86/pr18023.ll
test/CodeGen/X86/pr18162.ll
test/CodeGen/X86/pr18846.ll
test/CodeGen/X86/pr20020.ll
test/CodeGen/X86/pr2177.ll
test/CodeGen/X86/pr2182.ll
test/CodeGen/X86/pr2326.ll
test/CodeGen/X86/pr2656.ll
test/CodeGen/X86/pr2849.ll
test/CodeGen/X86/pr2924.ll
test/CodeGen/X86/pr2982.ll
test/CodeGen/X86/pr3216.ll
test/CodeGen/X86/pr3241.ll
test/CodeGen/X86/pr3244.ll
test/CodeGen/X86/pr3317.ll
test/CodeGen/X86/pr3366.ll
test/CodeGen/X86/pr9127.ll
test/CodeGen/X86/pre-ra-sched.ll
test/CodeGen/X86/private-2.ll
test/CodeGen/X86/private.ll
test/CodeGen/X86/promote-assert-zext.ll
test/CodeGen/X86/promote-trunc.ll
test/CodeGen/X86/promote.ll
test/CodeGen/X86/pshufb-mask-comments.ll
test/CodeGen/X86/psubus.ll
test/CodeGen/X86/ragreedy-bug.ll
test/CodeGen/X86/ragreedy-hoist-spill.ll
test/CodeGen/X86/ragreedy-last-chance-recoloring.ll
test/CodeGen/X86/rd-mod-wr-eflags.ll
test/CodeGen/X86/regalloc-reconcile-broken-hints.ll
test/CodeGen/X86/regpressure.ll
test/CodeGen/X86/remat-constant.ll
test/CodeGen/X86/remat-fold-load.ll
test/CodeGen/X86/remat-invalid-liveness.ll
test/CodeGen/X86/remat-scalar-zero.ll
test/CodeGen/X86/reverse_branches.ll
test/CodeGen/X86/rip-rel-address.ll
test/CodeGen/X86/rot32.ll
test/CodeGen/X86/rot64.ll
test/CodeGen/X86/rotate4.ll
test/CodeGen/X86/sandybridge-loads.ll
test/CodeGen/X86/scalar-extract.ll
test/CodeGen/X86/scalar_widen_div.ll
test/CodeGen/X86/scalarize-bitcast.ll
test/CodeGen/X86/scev-interchange.ll
test/CodeGen/X86/segmented-stacks.ll
test/CodeGen/X86/seh-safe-div.ll
test/CodeGen/X86/select-with-and-or.ll
test/CodeGen/X86/select.ll
test/CodeGen/X86/setcc-narrowing.ll
test/CodeGen/X86/sext-load.ll
test/CodeGen/X86/sha.ll
test/CodeGen/X86/shift-and.ll
test/CodeGen/X86/shift-bmi2.ll
test/CodeGen/X86/shift-coalesce.ll
test/CodeGen/X86/shift-codegen.ll
test/CodeGen/X86/shift-combine.ll
test/CodeGen/X86/shift-folding.ll
test/CodeGen/X86/shift-one.ll
test/CodeGen/X86/shift-parts.ll
test/CodeGen/X86/shl-i64.ll
test/CodeGen/X86/shl_undef.ll
test/CodeGen/X86/shrink-compare.ll
test/CodeGen/X86/shuffle-combine-crash.ll
test/CodeGen/X86/sibcall-4.ll
test/CodeGen/X86/sibcall-5.ll
test/CodeGen/X86/sibcall.ll
test/CodeGen/X86/simple-zext.ll
test/CodeGen/X86/sink-hoist.ll
test/CodeGen/X86/slow-incdec.ll
test/CodeGen/X86/split-vector-bitcast.ll
test/CodeGen/X86/sse-align-0.ll
test/CodeGen/X86/sse-align-1.ll
test/CodeGen/X86/sse-align-10.ll
test/CodeGen/X86/sse-align-12.ll
test/CodeGen/X86/sse-align-2.ll
test/CodeGen/X86/sse-align-5.ll
test/CodeGen/X86/sse-align-6.ll
test/CodeGen/X86/sse-align-9.ll
test/CodeGen/X86/sse-domains.ll
test/CodeGen/X86/sse-intel-ocl.ll
test/CodeGen/X86/sse-load-ret.ll
test/CodeGen/X86/sse-unaligned-mem-feature.ll
test/CodeGen/X86/sse2.ll
test/CodeGen/X86/sse3-avx-addsub.ll
test/CodeGen/X86/sse3.ll
test/CodeGen/X86/sse41-pmovxrm-intrinsics.ll
test/CodeGen/X86/sse41.ll
test/CodeGen/X86/sse42-intrinsics-x86.ll
test/CodeGen/X86/ssp-data-layout.ll
test/CodeGen/X86/stack-align.ll
test/CodeGen/X86/stack-protector-dbginfo.ll
test/CodeGen/X86/stack-protector-vreg-to-vreg-copy.ll
test/CodeGen/X86/stack-protector-weight.ll
test/CodeGen/X86/stack-protector.ll
test/CodeGen/X86/stackmap.ll
test/CodeGen/X86/statepoint-forward.ll
test/CodeGen/X86/store-narrow.ll
test/CodeGen/X86/store_op_load_fold.ll
test/CodeGen/X86/store_op_load_fold2.ll
test/CodeGen/X86/stride-nine-with-base-reg.ll
test/CodeGen/X86/stride-reuse.ll
test/CodeGen/X86/subreg-to-reg-0.ll
test/CodeGen/X86/subreg-to-reg-2.ll
test/CodeGen/X86/subreg-to-reg-4.ll
test/CodeGen/X86/subreg-to-reg-6.ll
test/CodeGen/X86/switch-bt.ll
test/CodeGen/X86/switch-zextload.ll
test/CodeGen/X86/tail-call-win64.ll
test/CodeGen/X86/tail-dup-addr.ll
test/CodeGen/X86/tail-opts.ll
test/CodeGen/X86/tailcall-64.ll
test/CodeGen/X86/tailcall-returndup-void.ll
test/CodeGen/X86/tailcall-ri64.ll
test/CodeGen/X86/tailcallbyval.ll
test/CodeGen/X86/tailcallbyval64.ll
test/CodeGen/X86/tbm-intrinsics-x86_64.ll
test/CodeGen/X86/tbm_patterns.ll
test/CodeGen/X86/test-shrink-bug.ll
test/CodeGen/X86/testl-commute.ll
test/CodeGen/X86/tls-addr-non-leaf-function.ll
test/CodeGen/X86/tls-local-dynamic.ll
test/CodeGen/X86/tls-pic.ll
test/CodeGen/X86/tls-pie.ll
test/CodeGen/X86/tls.ll
test/CodeGen/X86/tlv-1.ll
test/CodeGen/X86/trunc-ext-ld-st.ll
test/CodeGen/X86/trunc-to-bool.ll
test/CodeGen/X86/twoaddr-pass-sink.ll
test/CodeGen/X86/unaligned-32-byte-memops.ll
test/CodeGen/X86/unaligned-spill-folding.ll
test/CodeGen/X86/unwindraise.ll
test/CodeGen/X86/use-add-flags.ll
test/CodeGen/X86/v4i32load-crash.ll
test/CodeGen/X86/v8i1-masks.ll
test/CodeGen/X86/vaargs.ll
test/CodeGen/X86/vararg_tailcall.ll
test/CodeGen/X86/vec-loadsingles-alignment.ll
test/CodeGen/X86/vec-trunc-store.ll
test/CodeGen/X86/vec_align.ll
test/CodeGen/X86/vec_anyext.ll
test/CodeGen/X86/vec_extract-mmx.ll
test/CodeGen/X86/vec_extract-sse4.ll
test/CodeGen/X86/vec_extract.ll
test/CodeGen/X86/vec_fpext.ll
test/CodeGen/X86/vec_i64.ll
test/CodeGen/X86/vec_ins_extract.ll
test/CodeGen/X86/vec_insert-5.ll
test/CodeGen/X86/vec_insert-mmx.ll
test/CodeGen/X86/vec_loadsingles.ll
test/CodeGen/X86/vec_logical.ll
test/CodeGen/X86/vec_set-7.ll
test/CodeGen/X86/vec_set-F.ll
test/CodeGen/X86/vec_setcc-2.ll
test/CodeGen/X86/vec_ss_load_fold.ll
test/CodeGen/X86/vec_trunc_sext.ll
test/CodeGen/X86/vec_zero.ll
test/CodeGen/X86/vector-gep.ll
test/CodeGen/X86/vector-intrinsics.ll
test/CodeGen/X86/vector-sext.ll
test/CodeGen/X86/vector-shuffle-128-v2.ll
test/CodeGen/X86/vector-shuffle-128-v4.ll
test/CodeGen/X86/vector-shuffle-256-v4.ll
test/CodeGen/X86/vector-shuffle-256-v8.ll
test/CodeGen/X86/vector-shuffle-combining.ll
test/CodeGen/X86/vector-shuffle-mmx.ll
test/CodeGen/X86/vector-shuffle-sse1.ll
test/CodeGen/X86/vector-variable-idx2.ll
test/CodeGen/X86/vector-zext.ll
test/CodeGen/X86/vector-zmov.ll
test/CodeGen/X86/vector.ll
test/CodeGen/X86/viabs.ll
test/CodeGen/X86/visibility2.ll
test/CodeGen/X86/volatile.ll
test/CodeGen/X86/vselect-avx.ll
test/CodeGen/X86/vselect-minmax.ll
test/CodeGen/X86/vshift-5.ll
test/CodeGen/X86/vshift-6.ll
test/CodeGen/X86/weak_def_can_be_hidden.ll
test/CodeGen/X86/widen_arith-1.ll
test/CodeGen/X86/widen_arith-2.ll
test/CodeGen/X86/widen_arith-3.ll
test/CodeGen/X86/widen_arith-4.ll
test/CodeGen/X86/widen_arith-5.ll
test/CodeGen/X86/widen_arith-6.ll
test/CodeGen/X86/widen_cast-1.ll
test/CodeGen/X86/widen_cast-2.ll
test/CodeGen/X86/widen_cast-4.ll
test/CodeGen/X86/widen_conversions.ll
test/CodeGen/X86/widen_load-0.ll
test/CodeGen/X86/widen_load-1.ll
test/CodeGen/X86/widen_load-2.ll
test/CodeGen/X86/win32_sret.ll
test/CodeGen/X86/win64_eh.ll
test/CodeGen/X86/win_eh_prepare.ll
test/CodeGen/X86/x32-function_pointer-1.ll
test/CodeGen/X86/x86-64-gv-offset.ll
test/CodeGen/X86/x86-64-jumps.ll
test/CodeGen/X86/x86-64-mem.ll
test/CodeGen/X86/x86-64-pic-4.ll
test/CodeGen/X86/x86-64-pic-5.ll
test/CodeGen/X86/x86-64-pic-6.ll
test/CodeGen/X86/x86-64-ptr-arg-simple.ll
test/CodeGen/X86/x86-64-sret-return.ll
test/CodeGen/X86/x86-64-static-relo-movl.ll
test/CodeGen/X86/x86-mixed-alignment-dagcombine.ll
test/CodeGen/X86/xop-intrinsics-x86_64.ll
test/CodeGen/X86/zext-extract_subreg.ll
test/CodeGen/X86/zext-sext.ll
test/CodeGen/X86/zlib-longest-match.ll
test/CodeGen/XCore/2009-01-08-Crash.ll
test/CodeGen/XCore/2010-02-25-LSR-Crash.ll
test/CodeGen/XCore/2011-01-31-DAGCombineBug.ll
test/CodeGen/XCore/atomic.ll
test/CodeGen/XCore/codemodel.ll
test/CodeGen/XCore/dwarf_debug.ll
test/CodeGen/XCore/exception.ll
test/CodeGen/XCore/indirectbr.ll
test/CodeGen/XCore/llvm-intrinsics.ll
test/CodeGen/XCore/load.ll
test/CodeGen/XCore/private.ll
test/CodeGen/XCore/scavenging.ll
test/CodeGen/XCore/trampoline.ll
test/CodeGen/XCore/unaligned_load.ll
test/CodeGen/XCore/unaligned_store_combine.ll
test/CodeGen/XCore/zextfree.ll
test/DebugInfo/2010-01-05-DbgScope.ll
test/DebugInfo/2010-03-24-MemberFn.ll
test/DebugInfo/2010-04-06-NestedFnDbgInfo.ll
test/DebugInfo/2010-04-19-FramePtr.ll
test/DebugInfo/2010-05-03-OriginDIE.ll
test/DebugInfo/2010-06-29-InlinedFnLocalVar.ll
test/DebugInfo/AArch64/frameindices.ll
test/DebugInfo/AArch64/struct_by_value.ll
test/DebugInfo/ARM/lowerbdgdeclare_vla.ll
test/DebugInfo/COFF/cpp-mangling.ll
test/DebugInfo/Inputs/line.ll
test/DebugInfo/PR20038.ll
test/DebugInfo/SystemZ/variable-loc.ll
test/DebugInfo/X86/2010-04-13-PubType.ll
test/DebugInfo/X86/2011-09-26-GlobalVarContext.ll
test/DebugInfo/X86/2011-12-16-BadStructRef.ll
test/DebugInfo/X86/DW_AT_byte_size.ll
test/DebugInfo/X86/DW_AT_linkage_name.ll
test/DebugInfo/X86/DW_AT_object_pointer.ll
test/DebugInfo/X86/arguments.ll
test/DebugInfo/X86/array.ll
test/DebugInfo/X86/array2.ll
test/DebugInfo/X86/block-capture.ll
test/DebugInfo/X86/byvalstruct.ll
test/DebugInfo/X86/cu-ranges-odr.ll
test/DebugInfo/X86/cu-ranges.ll
test/DebugInfo/X86/dbg-byval-parameter.ll
test/DebugInfo/X86/dbg-declare-arg.ll
test/DebugInfo/X86/dbg-declare.ll
test/DebugInfo/X86/dbg-prolog-end.ll
test/DebugInfo/X86/dbg-value-dag-combine.ll
test/DebugInfo/X86/dbg-value-location.ll
test/DebugInfo/X86/dbg-value-range.ll
test/DebugInfo/X86/dbg-value-terminator.ll
test/DebugInfo/X86/dbg_value_direct.ll
test/DebugInfo/X86/debug-info-blocks.ll
test/DebugInfo/X86/debug-info-static-member.ll
test/DebugInfo/X86/debug-loc-asan.ll
test/DebugInfo/X86/debug-loc-offset.ll
test/DebugInfo/X86/debug-ranges-offset.ll
test/DebugInfo/X86/decl-derived-member.ll
test/DebugInfo/X86/discriminator.ll
test/DebugInfo/X86/dwarf-aranges-no-dwarf-labels.ll
test/DebugInfo/X86/dwarf-aranges.ll
test/DebugInfo/X86/dwarf-public-names.ll
test/DebugInfo/X86/elf-names.ll
test/DebugInfo/X86/empty-and-one-elem-array.ll
test/DebugInfo/X86/ending-run.ll
test/DebugInfo/X86/fission-ranges.ll
test/DebugInfo/X86/formal_parameter.ll
test/DebugInfo/X86/generate-odr-hash.ll
test/DebugInfo/X86/gnu-public-names.ll
test/DebugInfo/X86/inline-member-function.ll
test/DebugInfo/X86/inline-seldag-test.ll
test/DebugInfo/X86/instcombine-instrinsics.ll
test/DebugInfo/X86/lexical_block.ll
test/DebugInfo/X86/line-info.ll
test/DebugInfo/X86/linkage-name.ll
test/DebugInfo/X86/misched-dbg-value.ll
test/DebugInfo/X86/nodebug_with_debug_loc.ll
test/DebugInfo/X86/op_deref.ll
test/DebugInfo/X86/parameters.ll
test/DebugInfo/X86/pieces-2.ll
test/DebugInfo/X86/pr11300.ll
test/DebugInfo/X86/pr12831.ll
test/DebugInfo/X86/pr19307.ll
test/DebugInfo/X86/recursive_inlining.ll
test/DebugInfo/X86/reference-argument.ll
test/DebugInfo/X86/rvalue-ref.ll
test/DebugInfo/X86/sret.ll
test/DebugInfo/X86/sroasplit-1.ll
test/DebugInfo/X86/sroasplit-2.ll
test/DebugInfo/X86/sroasplit-3.ll
test/DebugInfo/X86/sroasplit-4.ll
test/DebugInfo/X86/sroasplit-5.ll
test/DebugInfo/X86/stmt-list-multiple-compile-units.ll
test/DebugInfo/X86/subregisters.ll
test/DebugInfo/X86/vla.ll
test/DebugInfo/block-asan.ll
test/DebugInfo/cross-cu-inlining.ll
test/DebugInfo/cross-cu-linkonce-distinct.ll
test/DebugInfo/cross-cu-linkonce.ll
test/DebugInfo/cu-range-hole.ll
test/DebugInfo/cu-ranges.ll
test/DebugInfo/debug-info-always-inline.ll
test/DebugInfo/dwarf-public-names.ll
test/DebugInfo/incorrect-variable-debugloc.ll
test/DebugInfo/incorrect-variable-debugloc1.ll
test/DebugInfo/inheritance.ll
test/DebugInfo/inline-debug-info-multiret.ll
test/DebugInfo/inline-debug-info.ll
test/DebugInfo/inline-scopes.ll
test/DebugInfo/member-order.ll
test/DebugInfo/missing-abstract-variable.ll
test/DebugInfo/namespace.ll
test/DebugInfo/namespace_inline_function_definition.ll
test/DebugInfo/tu-composite.ll
test/DebugInfo/unconditional-branch.ll
test/ExecutionEngine/MCJIT/2002-12-16-ArgTest.ll
test/ExecutionEngine/MCJIT/2003-05-06-LivenessClobber.ll
test/ExecutionEngine/MCJIT/2003-05-07-ArgumentTest.ll
test/ExecutionEngine/MCJIT/2003-08-21-EnvironmentTest.ll
test/ExecutionEngine/MCJIT/2007-12-10-APIntLoadStore.ll
test/ExecutionEngine/MCJIT/2008-06-05-APInt-OverAShr.ll
test/ExecutionEngine/MCJIT/2013-04-04-RelocAddend.ll
test/ExecutionEngine/MCJIT/pr13727.ll
test/ExecutionEngine/MCJIT/remote/stubs-remote.ll
test/ExecutionEngine/MCJIT/remote/stubs-sm-pic.ll
test/ExecutionEngine/MCJIT/remote/test-common-symbols-remote.ll
test/ExecutionEngine/MCJIT/remote/test-fp-no-external-funcs-remote.ll
test/ExecutionEngine/MCJIT/remote/test-global-init-nonzero-remote.ll
test/ExecutionEngine/MCJIT/remote/test-global-init-nonzero-sm-pic.ll
test/ExecutionEngine/MCJIT/remote/test-ptr-reloc-remote.ll
test/ExecutionEngine/MCJIT/remote/test-ptr-reloc-sm-pic.ll
test/ExecutionEngine/MCJIT/stubs-sm-pic.ll
test/ExecutionEngine/MCJIT/stubs.ll
test/ExecutionEngine/MCJIT/test-common-symbols-alignment.ll
test/ExecutionEngine/MCJIT/test-common-symbols.ll
test/ExecutionEngine/MCJIT/test-fp-no-external-funcs.ll
test/ExecutionEngine/MCJIT/test-fp.ll
test/ExecutionEngine/MCJIT/test-global-ctors.ll
test/ExecutionEngine/MCJIT/test-global-init-nonzero-sm-pic.ll
test/ExecutionEngine/MCJIT/test-global-init-nonzero.ll
test/ExecutionEngine/MCJIT/test-global.ll
test/ExecutionEngine/MCJIT/test-loadstore.ll
test/ExecutionEngine/MCJIT/test-local.ll
test/ExecutionEngine/MCJIT/test-ptr-reloc-sm-pic.ll
test/ExecutionEngine/MCJIT/test-ptr-reloc.ll
test/ExecutionEngine/OrcJIT/2002-12-16-ArgTest.ll
test/ExecutionEngine/OrcJIT/2003-05-06-LivenessClobber.ll
test/ExecutionEngine/OrcJIT/2003-05-07-ArgumentTest.ll
test/ExecutionEngine/OrcJIT/2003-08-21-EnvironmentTest.ll
test/ExecutionEngine/OrcJIT/2007-12-10-APIntLoadStore.ll
test/ExecutionEngine/OrcJIT/2008-06-05-APInt-OverAShr.ll
test/ExecutionEngine/OrcJIT/2013-04-04-RelocAddend.ll
test/ExecutionEngine/OrcJIT/pr13727.ll
test/ExecutionEngine/OrcJIT/remote/stubs-remote.ll
test/ExecutionEngine/OrcJIT/remote/stubs-sm-pic.ll
test/ExecutionEngine/OrcJIT/remote/test-common-symbols-remote.ll
test/ExecutionEngine/OrcJIT/remote/test-fp-no-external-funcs-remote.ll
test/ExecutionEngine/OrcJIT/remote/test-global-init-nonzero-remote.ll
test/ExecutionEngine/OrcJIT/remote/test-global-init-nonzero-sm-pic.ll
test/ExecutionEngine/OrcJIT/remote/test-ptr-reloc-remote.ll
test/ExecutionEngine/OrcJIT/remote/test-ptr-reloc-sm-pic.ll
test/ExecutionEngine/OrcJIT/stubs-sm-pic.ll
test/ExecutionEngine/OrcJIT/stubs.ll
test/ExecutionEngine/OrcJIT/test-common-symbols-alignment.ll
test/ExecutionEngine/OrcJIT/test-common-symbols.ll
test/ExecutionEngine/OrcJIT/test-fp-no-external-funcs.ll
test/ExecutionEngine/OrcJIT/test-fp.ll
test/ExecutionEngine/OrcJIT/test-global-ctors.ll
test/ExecutionEngine/OrcJIT/test-global-init-nonzero-sm-pic.ll
test/ExecutionEngine/OrcJIT/test-global-init-nonzero.ll
test/ExecutionEngine/OrcJIT/test-global.ll
test/ExecutionEngine/OrcJIT/test-loadstore.ll
test/ExecutionEngine/OrcJIT/test-local.ll
test/ExecutionEngine/OrcJIT/test-ptr-reloc-sm-pic.ll
test/ExecutionEngine/OrcJIT/test-ptr-reloc.ll
test/ExecutionEngine/frem.ll
test/ExecutionEngine/test-interp-vec-loadstore.ll
test/Feature/aliases.ll
test/Feature/md_on_instruction.ll
test/Feature/memorymarkers.ll
test/Feature/optnone-llc.ll
test/Feature/optnone-opt.ll
test/Feature/packed.ll
test/Feature/packed_struct.ll
test/Feature/ppcld.ll
test/Feature/recursivetype.ll
test/Feature/sparcld.ll
test/Feature/testalloca.ll
test/Feature/varargs_new.ll
test/Feature/weak_constant.ll
test/Feature/x86ld.ll
test/Instrumentation/AddressSanitizer/X86/bug_11395.ll
test/Instrumentation/AddressSanitizer/asan-vs-gvn.ll
test/Instrumentation/AddressSanitizer/basic.ll
test/Instrumentation/AddressSanitizer/debug_info.ll
test/Instrumentation/AddressSanitizer/do-not-instrument-promotable-allocas.ll
test/Instrumentation/AddressSanitizer/freebsd.ll
test/Instrumentation/AddressSanitizer/global_metadata.ll
test/Instrumentation/AddressSanitizer/instrument-dynamic-allocas.ll
test/Instrumentation/AddressSanitizer/instrument_global.ll
test/Instrumentation/AddressSanitizer/instrument_load_then_store.ll
test/Instrumentation/AddressSanitizer/instrumentation-with-call-threshold.ll
test/Instrumentation/AddressSanitizer/stack-poisoning.ll
test/Instrumentation/AddressSanitizer/stack_dynamic_alloca.ll
test/Instrumentation/AddressSanitizer/test64.ll
test/Instrumentation/AddressSanitizer/ubsan.ll
test/Instrumentation/BoundsChecking/many-trap.ll
test/Instrumentation/BoundsChecking/phi.ll
test/Instrumentation/BoundsChecking/simple-32.ll
test/Instrumentation/BoundsChecking/simple.ll
test/Instrumentation/DataFlowSanitizer/abilist.ll
test/Instrumentation/DataFlowSanitizer/debug-nonzero-labels.ll
test/Instrumentation/DataFlowSanitizer/load.ll
test/Instrumentation/DataFlowSanitizer/store.ll
test/Instrumentation/InstrProfiling/linkage.ll
test/Instrumentation/InstrProfiling/noruntime.ll
test/Instrumentation/MemorySanitizer/array_types.ll
test/Instrumentation/MemorySanitizer/atomics.ll
test/Instrumentation/MemorySanitizer/check_access_address.ll
test/Instrumentation/MemorySanitizer/instrumentation-with-call-threshold.ll
test/Instrumentation/MemorySanitizer/missing_origin.ll
test/Instrumentation/MemorySanitizer/msan_basic.ll
test/Instrumentation/MemorySanitizer/unreachable.ll
test/Instrumentation/MemorySanitizer/vector_cvt.ll
test/Instrumentation/SanitizerCoverage/coverage-dbg.ll
test/Instrumentation/SanitizerCoverage/coverage.ll
test/Instrumentation/ThreadSanitizer/atomic.ll
test/Instrumentation/ThreadSanitizer/capture.ll
test/Instrumentation/ThreadSanitizer/no_sanitize_thread.ll
test/Instrumentation/ThreadSanitizer/read_before_write.ll
test/Instrumentation/ThreadSanitizer/read_from_global.ll
test/Instrumentation/ThreadSanitizer/tsan-vs-gvn.ll
test/Instrumentation/ThreadSanitizer/tsan_basic.ll
test/Instrumentation/ThreadSanitizer/unaligned.ll
test/Instrumentation/ThreadSanitizer/vptr_read.ll
test/Integer/2007-01-19-TruncSext.ll
test/Integer/BitPacked.ll
test/Integer/packed_bt.ll
test/Integer/packed_struct_bt.ll
test/JitListener/multiple.ll
test/JitListener/simple.ll
test/LTO/X86/cfi_endproc.ll
test/LTO/X86/linkonce_odr_func.ll
test/LTO/X86/set-merged.ll
test/Linker/2004-05-07-TypeResolution2.ll
test/Linker/2008-03-05-AliasReference.ll
test/Linker/2009-09-03-mdnode.ll
test/Linker/2009-09-03-mdnode2.ll
test/Linker/DbgDeclare.ll
test/Linker/DbgDeclare2.ll
test/Linker/Inputs/linkage.b.ll
test/Linker/Inputs/replaced-function-matches-first-subprogram.ll
test/Linker/Inputs/testlink.ll
test/Linker/link-global-to-func.ll
test/Linker/partial-type-refinement.ll
test/Linker/replaced-function-matches-first-subprogram.ll
test/Linker/testlink.ll
test/Linker/type-unique-odr-b.ll
test/Linker/type-unique-simple2-a.ll
test/Linker/type-unique-simple2-b.ll
test/Linker/type-unique-type-array-a.ll
test/Linker/type-unique-type-array-b.ll
test/MC/AArch64/elf-globaladdress.ll
test/MC/ARM/data-in-code.ll
test/MC/ARM/elf-reloc-03.ll
test/MC/COFF/tricky-names.ll
test/MC/MachO/tlv-bss.ll
test/MC/MachO/x86-data-in-code.ll
test/MC/Mips/elf-bigendian.ll
test/Other/2004-08-16-PackedGlobalConstant.ll
test/Other/2004-08-16-PackedSelect.ll
test/Other/2004-08-16-PackedSimple.ll
test/Other/2004-08-20-PackedControlFlow.ll
test/Other/2007-09-10-PassManager.ll
test/Other/lint.ll
test/Other/optimization-remarks-inline.ll
test/Transforms/ADCE/2002-05-23-ZeroArgPHITest.ll
test/Transforms/ADCE/2002-05-28-Crash.ll
test/Transforms/ADCE/2002-07-17-AssertionFailure.ll
test/Transforms/ADCE/2002-07-17-PHIAssertion.ll
test/Transforms/ADCE/2003-06-11-InvalidCFG.ll
test/Transforms/ADCE/2003-06-24-BadSuccessor.ll
test/Transforms/ADCE/2003-06-24-BasicFunctionality.ll
test/Transforms/ADCE/basictest1.ll
test/Transforms/ADCE/basictest2.ll
test/Transforms/AddDiscriminators/basic.ll
test/Transforms/AddDiscriminators/first-only.ll
test/Transforms/AddDiscriminators/multiple.ll
test/Transforms/AddDiscriminators/no-discriminators.ll
test/Transforms/AlignmentFromAssumptions/simple.ll
test/Transforms/AlignmentFromAssumptions/simple32.ll
test/Transforms/AlignmentFromAssumptions/start-unk.ll
test/Transforms/ArgumentPromotion/2008-02-01-ReturnAttrs.ll
test/Transforms/ArgumentPromotion/2008-07-02-array-indexing.ll
test/Transforms/ArgumentPromotion/aggregate-promote.ll
test/Transforms/ArgumentPromotion/attrs.ll
test/Transforms/ArgumentPromotion/basictest.ll
test/Transforms/ArgumentPromotion/byval-2.ll
test/Transforms/ArgumentPromotion/byval.ll
test/Transforms/ArgumentPromotion/chained.ll
test/Transforms/ArgumentPromotion/control-flow.ll
test/Transforms/ArgumentPromotion/control-flow2.ll
test/Transforms/ArgumentPromotion/crash.ll
test/Transforms/ArgumentPromotion/dbg.ll
test/Transforms/ArgumentPromotion/fp80.ll
test/Transforms/ArgumentPromotion/inalloca.ll
test/Transforms/ArgumentPromotion/reserve-tbaa.ll
test/Transforms/BBVectorize/X86/loop1.ll
test/Transforms/BBVectorize/X86/sh-rec2.ll
test/Transforms/BBVectorize/X86/sh-rec3.ll
test/Transforms/BBVectorize/X86/simple-ldstr.ll
test/Transforms/BBVectorize/X86/wr-aliases.ll
test/Transforms/BBVectorize/func-alias.ll
test/Transforms/BBVectorize/ld1.ll
test/Transforms/BBVectorize/loop1.ll
test/Transforms/BBVectorize/mem-op-depth.ll
test/Transforms/BBVectorize/metadata.ll
test/Transforms/BBVectorize/no-ldstr-conn.ll
test/Transforms/BBVectorize/simple-ldstr-ptrs.ll
test/Transforms/BBVectorize/simple-ldstr.ll
test/Transforms/CodeExtractor/2004-03-14-DominanceProblem.ll
test/Transforms/CodeGenPrepare/X86/extend-sink-hoist.ll
test/Transforms/CodeGenPrepare/X86/sink-addrspacecast.ll
test/Transforms/CodeGenPrepare/statepoint-relocate.ll
test/Transforms/ConstProp/loads.ll
test/Transforms/ConstantHoisting/AArch64/const-addr.ll
test/Transforms/ConstantHoisting/PowerPC/const-base-addr.ll
test/Transforms/ConstantHoisting/PowerPC/masks.ll
test/Transforms/ConstantHoisting/X86/cast-inst.ll
test/Transforms/ConstantHoisting/X86/const-base-addr.ll
test/Transforms/CorrelatedValuePropagation/basic.ll
test/Transforms/CorrelatedValuePropagation/non-null.ll
test/Transforms/DeadArgElim/aggregates.ll
test/Transforms/DeadArgElim/deadexternal.ll
test/Transforms/DeadArgElim/deadretval2.ll
test/Transforms/DeadArgElim/keepalive.ll
test/Transforms/DeadStoreElimination/2011-03-25-DSEMiscompile.ll
test/Transforms/DeadStoreElimination/2011-09-06-EndOfFunction.ll
test/Transforms/DeadStoreElimination/2011-09-06-MemCpy.ll
test/Transforms/DeadStoreElimination/PartialStore.ll
test/Transforms/DeadStoreElimination/atomic.ll
test/Transforms/DeadStoreElimination/const-pointers.ll
test/Transforms/DeadStoreElimination/crash.ll
test/Transforms/DeadStoreElimination/free.ll
test/Transforms/DeadStoreElimination/simple.ll
test/Transforms/EarlyCSE/basic.ll
test/Transforms/FunctionAttrs/2008-09-03-ReadNone.ll
test/Transforms/FunctionAttrs/2008-09-13-VolatileRead.ll
test/Transforms/FunctionAttrs/2008-12-29-Constant.ll
test/Transforms/FunctionAttrs/2009-01-02-LocalStores.ll
test/Transforms/FunctionAttrs/2010-10-30-volatile.ll
test/Transforms/FunctionAttrs/atomic.ll
test/Transforms/FunctionAttrs/nocapture.ll
test/Transforms/FunctionAttrs/optnone-simple.ll
test/Transforms/GCOVProfiling/linezero.ll
test/Transforms/GCOVProfiling/return-block.ll
test/Transforms/GVN/2007-07-25-DominatedLoop.ll
test/Transforms/GVN/2007-07-25-InfiniteLoop.ll
test/Transforms/GVN/2007-07-25-Loop.ll
test/Transforms/GVN/2007-07-25-NestedLoop.ll
test/Transforms/GVN/2007-07-25-SinglePredecessor.ll
test/Transforms/GVN/2007-07-26-InterlockingLoops.ll
test/Transforms/GVN/2007-07-26-NonRedundant.ll
test/Transforms/GVN/2007-07-26-PhiErasure.ll
test/Transforms/GVN/2007-07-30-PredIDom.ll
test/Transforms/GVN/2007-07-31-NoDomInherit.ll
test/Transforms/GVN/2007-07-31-RedundantPhi.ll
test/Transforms/GVN/2008-02-12-UndefLoad.ll
test/Transforms/GVN/2008-02-13-NewPHI.ll
test/Transforms/GVN/2008-07-02-Unreachable.ll
test/Transforms/GVN/2008-12-09-SelfRemove.ll
test/Transforms/GVN/2008-12-12-RLE-Crash.ll
test/Transforms/GVN/2008-12-14-rle-reanalyze.ll
test/Transforms/GVN/2008-12-15-CacheVisited.ll
test/Transforms/GVN/2009-01-21-SortInvalidation.ll
test/Transforms/GVN/2009-01-22-SortInvalidation.ll
test/Transforms/GVN/2009-02-17-LoadPRECrash.ll
test/Transforms/GVN/2009-06-17-InvalidPRE.ll
test/Transforms/GVN/2009-07-13-MemDepSortFail.ll
test/Transforms/GVN/2009-11-12-MemDepMallocBitCast.ll
test/Transforms/GVN/2010-03-31-RedundantPHIs.ll
test/Transforms/GVN/2010-05-08-OneBit.ll
test/Transforms/GVN/2011-04-27-phioperands.ll
test/Transforms/GVN/2011-06-01-NonLocalMemdepMiscompile.ll
test/Transforms/GVN/MemdepMiscompile.ll
test/Transforms/GVN/atomic.ll
test/Transforms/GVN/calloc-load-removal.ll
test/Transforms/GVN/cond_br.ll
test/Transforms/GVN/cond_br2.ll
test/Transforms/GVN/condprop.ll
test/Transforms/GVN/crash-no-aa.ll
test/Transforms/GVN/crash.ll
test/Transforms/GVN/invariant-load.ll
test/Transforms/GVN/lifetime-simple.ll
test/Transforms/GVN/load-constant-mem.ll
test/Transforms/GVN/load-from-unreachable-predecessor.ll
test/Transforms/GVN/load-pre-align.ll
test/Transforms/GVN/load-pre-licm.ll
test/Transforms/GVN/load-pre-nonlocal.ll
test/Transforms/GVN/lpre-call-wrap-2.ll
test/Transforms/GVN/lpre-call-wrap.ll
test/Transforms/GVN/malloc-load-removal.ll
test/Transforms/GVN/noalias.ll
test/Transforms/GVN/non-local-offset.ll
test/Transforms/GVN/nonescaping-malloc.ll
test/Transforms/GVN/null-aliases-nothing.ll
test/Transforms/GVN/phi-translate-partial-alias.ll
test/Transforms/GVN/phi-translate.ll
test/Transforms/GVN/pr10820.ll
test/Transforms/GVN/pr14166.ll
test/Transforms/GVN/pr17732.ll
test/Transforms/GVN/pr17852.ll
test/Transforms/GVN/pre-basic-add.ll
test/Transforms/GVN/pre-gep-load.ll
test/Transforms/GVN/pre-load.ll
test/Transforms/GVN/pre-single-pred.ll
test/Transforms/GVN/preserve-tbaa.ll
test/Transforms/GVN/range.ll
test/Transforms/GVN/readattrs.ll
test/Transforms/GVN/rle-must-alias.ll
test/Transforms/GVN/rle-no-phi-translate.ll
test/Transforms/GVN/rle-nonlocal.ll
test/Transforms/GVN/rle-phi-translate.ll
test/Transforms/GVN/rle-semidominated.ll
test/Transforms/GVN/rle.ll
test/Transforms/GVN/tbaa.ll
test/Transforms/GVN/volatile.ll
test/Transforms/GlobalDCE/2002-08-17-FunctionDGE.ll
test/Transforms/GlobalDCE/2002-09-12-Redeletion.ll
test/Transforms/GlobalDCE/complex-constantexpr.ll
test/Transforms/GlobalDCE/global_ctors_integration.ll
test/Transforms/GlobalDCE/indirectbr.ll
test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.ll
test/Transforms/GlobalOpt/2005-06-15-LocalizeConstExprCrash.ll
test/Transforms/GlobalOpt/2006-07-07-InlineAsmCrash.ll
test/Transforms/GlobalOpt/2006-11-01-ShrinkGlobalPhiCrash.ll
test/Transforms/GlobalOpt/2007-04-05-Crash.ll
test/Transforms/GlobalOpt/2007-05-13-Crash.ll
test/Transforms/GlobalOpt/2007-11-09-GEP-GEP-Crash.ll
test/Transforms/GlobalOpt/2008-01-03-Crash.ll
test/Transforms/GlobalOpt/2008-01-13-OutOfRangeSROA.ll
test/Transforms/GlobalOpt/2008-01-29-VolatileGlobal.ll
test/Transforms/GlobalOpt/2008-04-26-SROA-Global-Align.ll
test/Transforms/GlobalOpt/2008-07-17-addrspace.ll
test/Transforms/GlobalOpt/2008-12-16-HeapSRACrash-2.ll
test/Transforms/GlobalOpt/2008-12-16-HeapSRACrash.ll
test/Transforms/GlobalOpt/2009-01-13-phi-user.ll
test/Transforms/GlobalOpt/2009-02-15-BitcastAlias.ll
test/Transforms/GlobalOpt/2009-03-05-dbg.ll
test/Transforms/GlobalOpt/2009-03-07-PromotePtrToBool.ll
test/Transforms/GlobalOpt/2009-06-01-RecursivePHI.ll
test/Transforms/GlobalOpt/2009-11-16-BrokenPerformHeapAllocSRoA.ll
test/Transforms/GlobalOpt/2009-11-16-MallocSingleStoreToGlobalVar.ll
test/Transforms/GlobalOpt/2010-02-25-MallocPromote.ll
test/Transforms/GlobalOpt/2010-02-26-MallocSROA.ll
test/Transforms/GlobalOpt/array-elem-refs.ll
test/Transforms/GlobalOpt/atomic.ll
test/Transforms/GlobalOpt/basictest.ll
test/Transforms/GlobalOpt/constantfold-initializers.ll
test/Transforms/GlobalOpt/crash-2.ll
test/Transforms/GlobalOpt/crash.ll
test/Transforms/GlobalOpt/ctor-list-opt-inbounds.ll
test/Transforms/GlobalOpt/ctor-list-opt.ll
test/Transforms/GlobalOpt/deadfunction.ll
test/Transforms/GlobalOpt/externally-initialized-global-ctr.ll
test/Transforms/GlobalOpt/fastcc.ll
test/Transforms/GlobalOpt/globalsra-partial.ll
test/Transforms/GlobalOpt/globalsra-unknown-index.ll
test/Transforms/GlobalOpt/globalsra.ll
test/Transforms/GlobalOpt/heap-sra-1.ll
test/Transforms/GlobalOpt/heap-sra-2.ll
test/Transforms/GlobalOpt/heap-sra-3.ll
test/Transforms/GlobalOpt/heap-sra-4.ll
test/Transforms/GlobalOpt/heap-sra-phi.ll
test/Transforms/GlobalOpt/integer-bool.ll
test/Transforms/GlobalOpt/iterate.ll
test/Transforms/GlobalOpt/load-store-global.ll
test/Transforms/GlobalOpt/malloc-promote-1.ll
test/Transforms/GlobalOpt/malloc-promote-2.ll
test/Transforms/GlobalOpt/malloc-promote-3.ll
test/Transforms/GlobalOpt/memset-null.ll
test/Transforms/GlobalOpt/phi-select.ll
test/Transforms/GlobalOpt/storepointer-compare.ll
test/Transforms/GlobalOpt/storepointer.ll
test/Transforms/GlobalOpt/tls.ll
test/Transforms/GlobalOpt/trivialstore.ll
test/Transforms/GlobalOpt/undef-init.ll
test/Transforms/GlobalOpt/unnamed-addr.ll
test/Transforms/GlobalOpt/zeroinitializer-gep-load.ll
test/Transforms/IPConstantProp/2009-09-24-byval-ptr.ll
test/Transforms/IPConstantProp/dangling-block-address.ll
test/Transforms/IPConstantProp/global.ll
test/Transforms/IPConstantProp/return-argument.ll
test/Transforms/IRCE/decrementing-loop.ll
test/Transforms/IRCE/low-becount.ll
test/Transforms/IRCE/multiple-access-no-preloop.ll
test/Transforms/IRCE/not-likely-taken.ll
test/Transforms/IRCE/single-access-no-preloop.ll
test/Transforms/IRCE/single-access-with-preloop.ll
test/Transforms/IRCE/unhandled.ll
test/Transforms/IRCE/with-parent-loops.ll
test/Transforms/IndVarSimplify/2005-02-17-TruncateExprCrash.ll
test/Transforms/IndVarSimplify/2006-06-16-Indvar-LCSSA-Crash.ll
test/Transforms/IndVarSimplify/2007-01-06-TripCount.ll
test/Transforms/IndVarSimplify/2008-09-02-IVType.ll
test/Transforms/IndVarSimplify/2008-10-03-CouldNotCompute.ll
test/Transforms/IndVarSimplify/2009-04-14-shorten_iv_vars.ll
test/Transforms/IndVarSimplify/2009-04-15-shorten-iv-vars-2.ll
test/Transforms/IndVarSimplify/2011-09-27-hoistsext.ll
test/Transforms/IndVarSimplify/2011-11-01-lftrptr.ll
test/Transforms/IndVarSimplify/2011-11-15-multiexit.ll
test/Transforms/IndVarSimplify/2014-06-21-congruent-constant.ll
test/Transforms/IndVarSimplify/ashr-tripcount.ll
test/Transforms/IndVarSimplify/avoid-i0.ll
test/Transforms/IndVarSimplify/eliminate-comparison.ll
test/Transforms/IndVarSimplify/eliminate-rem.ll
test/Transforms/IndVarSimplify/indirectbr.ll
test/Transforms/IndVarSimplify/iv-fold.ll
test/Transforms/IndVarSimplify/iv-sext.ll
test/Transforms/IndVarSimplify/iv-widen.ll
test/Transforms/IndVarSimplify/iv-zext.ll
test/Transforms/IndVarSimplify/lftr-promote.ll
test/Transforms/IndVarSimplify/lftr-reuse.ll
test/Transforms/IndVarSimplify/lftr-zext.ll
test/Transforms/IndVarSimplify/loop_evaluate7.ll
test/Transforms/IndVarSimplify/loop_evaluate8.ll
test/Transforms/IndVarSimplify/no-iv-rewrite.ll
test/Transforms/IndVarSimplify/overflowcheck.ll
test/Transforms/IndVarSimplify/phi-uses-value-multiple-times.ll
test/Transforms/IndVarSimplify/polynomial-expand.ll
test/Transforms/IndVarSimplify/pr18223.ll
test/Transforms/IndVarSimplify/pr20680.ll
test/Transforms/IndVarSimplify/pr22222.ll
test/Transforms/IndVarSimplify/promote-iv-to-eliminate-casts.ll
test/Transforms/IndVarSimplify/sharpen-range.ll
test/Transforms/IndVarSimplify/single-element-range.ll
test/Transforms/IndVarSimplify/sink-alloca.ll
test/Transforms/IndVarSimplify/udiv.ll
test/Transforms/IndVarSimplify/uglygep.ll
test/Transforms/IndVarSimplify/ult-sub-to-eq.ll
test/Transforms/IndVarSimplify/use-range-metadata.ll
test/Transforms/IndVarSimplify/variable-stride-ivs-0.ll
test/Transforms/IndVarSimplify/verify-scev.ll
test/Transforms/IndVarSimplify/widen-loop-comp.ll
test/Transforms/IndVarSimplify/widen-nsw.ll
test/Transforms/Inline/2006-07-12-InlinePruneCGUpdate.ll
test/Transforms/Inline/2009-01-08-NoInlineDynamicAlloca.ll
test/Transforms/Inline/2009-01-13-RecursiveInlineCrash.ll
test/Transforms/Inline/align.ll
test/Transforms/Inline/alloca-bonus.ll
test/Transforms/Inline/alloca-dbgdeclare.ll
test/Transforms/Inline/alloca-merge-align-nodl.ll
test/Transforms/Inline/alloca-merge-align.ll
test/Transforms/Inline/basictest.ll
test/Transforms/Inline/byval-tail-call.ll
test/Transforms/Inline/byval.ll
test/Transforms/Inline/byval_lifetime.ll
test/Transforms/Inline/crash2.ll
test/Transforms/Inline/devirtualize-3.ll
test/Transforms/Inline/devirtualize.ll
test/Transforms/Inline/ephemeral.ll
test/Transforms/Inline/gvn-inline-iteration.ll
test/Transforms/Inline/inline-byval-bonus.ll
test/Transforms/Inline/inline-cold.ll
test/Transforms/Inline/inline-fast-math-flags.ll
test/Transforms/Inline/inline-fp.ll
test/Transforms/Inline/inline-invoke-tail.ll
test/Transforms/Inline/inline-optsize.ll
test/Transforms/Inline/inline_constprop.ll
test/Transforms/Inline/inline_dbg_declare.ll
test/Transforms/Inline/inline_minisize.ll
test/Transforms/Inline/invoke-combine-clauses.ll
test/Transforms/Inline/noalias-cs.ll
test/Transforms/Inline/noalias.ll
test/Transforms/Inline/noalias2.ll
test/Transforms/Inline/optimization-remarks.ll
test/Transforms/Inline/ptr-diff.ll
test/Transforms/InstCombine/2003-07-21-ExternalConstant.ll
test/Transforms/InstCombine/2003-09-09-VolatileLoadElim.ll
test/Transforms/InstCombine/2004-01-13-InstCombineInvokePHI.ll
test/Transforms/InstCombine/2004-05-07-UnsizedCastLoad.ll
test/Transforms/InstCombine/2004-09-20-BadLoadCombine.ll
test/Transforms/InstCombine/2004-09-20-BadLoadCombine2.ll
test/Transforms/InstCombine/2005-06-16-SetCCOrSetCCMiscompile.ll
test/Transforms/InstCombine/2006-09-15-CastToBool.ll
test/Transforms/InstCombine/2006-12-08-Phi-ICmp-Op-Fold.ll
test/Transforms/InstCombine/2006-12-08-Select-ICmp.ll
test/Transforms/InstCombine/2006-12-15-Range-Test.ll
test/Transforms/InstCombine/2006-12-23-Select-Cmp-Cmp.ll
test/Transforms/InstCombine/2007-02-01-LoadSinkAlloca.ll
test/Transforms/InstCombine/2007-02-07-PointerCast.ll
test/Transforms/InstCombine/2007-03-25-BadShiftMask.ll
test/Transforms/InstCombine/2007-06-06-AshrSignBit.ll
test/Transforms/InstCombine/2007-09-10-AliasConstFold.ll
test/Transforms/InstCombine/2007-10-10-EliminateMemCpy.ll
test/Transforms/InstCombine/2007-10-31-RangeCrash.ll
test/Transforms/InstCombine/2007-10-31-StringCrash.ll
test/Transforms/InstCombine/2007-11-07-OpaqueAlignCrash.ll
test/Transforms/InstCombine/2007-12-28-IcmpSub2.ll
test/Transforms/InstCombine/2008-03-13-IntToPtr.ll
test/Transforms/InstCombine/2008-04-29-VolatileLoadDontMerge.ll
test/Transforms/InstCombine/2008-04-29-VolatileLoadMerge.ll
test/Transforms/InstCombine/2008-05-09-SinkOfInvoke.ll
test/Transforms/InstCombine/2008-05-17-InfLoop.ll
test/Transforms/InstCombine/2008-05-23-CompareFold.ll
test/Transforms/InstCombine/2008-06-19-UncondLoad.ll
test/Transforms/InstCombine/2008-07-08-VolatileLoadMerge.ll
test/Transforms/InstCombine/2008-08-05-And.ll
test/Transforms/InstCombine/2009-01-08-AlignAlloca.ll
test/Transforms/InstCombine/2009-01-19-fmod-constant-float-specials.ll
test/Transforms/InstCombine/2009-01-19-fmod-constant-float.ll
test/Transforms/InstCombine/2009-02-20-InstCombine-SROA.ll
test/Transforms/InstCombine/2009-02-21-LoadCST.ll
test/Transforms/InstCombine/2009-02-25-CrashZeroSizeArray.ll
test/Transforms/InstCombine/2009-03-18-vector-ashr-crash.ll
test/Transforms/InstCombine/2009-05-23-FCmpToICmp.ll
test/Transforms/InstCombine/2010-03-03-ExtElim.ll
test/Transforms/InstCombine/2011-05-02-VectorBoolean.ll
test/Transforms/InstCombine/2011-05-28-swapmulsub.ll
test/Transforms/InstCombine/2011-06-13-nsw-alloca.ll
test/Transforms/InstCombine/2011-10-07-AlignPromotion.ll
test/Transforms/InstCombine/2012-05-27-Negative-Shift-Crash.ll
test/Transforms/InstCombine/2012-05-28-select-hang.ll
test/Transforms/InstCombine/2012-06-06-LoadOfPHIs.ll
test/Transforms/InstCombine/2012-07-25-LoadPart.ll
test/Transforms/InstCombine/2012-10-25-vector-of-pointers.ll
test/Transforms/InstCombine/2012-12-14-simp-vgep.ll
test/Transforms/InstCombine/2013-03-05-Combine-BitcastTy-Into-Alloca.ll
test/Transforms/InstCombine/CPP_min_max.ll
test/Transforms/InstCombine/add3.ll
test/Transforms/InstCombine/addrspacecast.ll
test/Transforms/InstCombine/alias-recursion.ll
test/Transforms/InstCombine/align-addr.ll
test/Transforms/InstCombine/align-attr.ll
test/Transforms/InstCombine/align-external.ll
test/Transforms/InstCombine/aligned-altivec.ll
test/Transforms/InstCombine/aligned-qpx.ll
test/Transforms/InstCombine/alloca.ll
test/Transforms/InstCombine/assume-loop-align.ll
test/Transforms/InstCombine/assume-redundant.ll
test/Transforms/InstCombine/assume.ll
test/Transforms/InstCombine/atomic.ll
test/Transforms/InstCombine/bitcast-alias-function.ll
test/Transforms/InstCombine/bitcast.ll
test/Transforms/InstCombine/bittest.ll
test/Transforms/InstCombine/call2.ll
test/Transforms/InstCombine/cast.ll
test/Transforms/InstCombine/cast_ptr.ll
test/Transforms/InstCombine/constant-fold-address-space-pointer.ll
test/Transforms/InstCombine/crash.ll
test/Transforms/InstCombine/debuginfo.ll
test/Transforms/InstCombine/descale-zero.ll
test/Transforms/InstCombine/div-shift-crash.ll
test/Transforms/InstCombine/err-rep-cold.ll
test/Transforms/InstCombine/extractvalue.ll
test/Transforms/InstCombine/fmul.ll
test/Transforms/InstCombine/fold-vector-zero.ll
test/Transforms/InstCombine/fp-ret-bitcast.ll
test/Transforms/InstCombine/fpextend.ll
test/Transforms/InstCombine/gc.relocate.ll
test/Transforms/InstCombine/gep-addrspace.ll
test/Transforms/InstCombine/gep-sext.ll
test/Transforms/InstCombine/gepphigep.ll
test/Transforms/InstCombine/getelementptr.ll
test/Transforms/InstCombine/icmp-range.ll
test/Transforms/InstCombine/invariant.ll
test/Transforms/InstCombine/known_align.ll
test/Transforms/InstCombine/load-cmp.ll
test/Transforms/InstCombine/load-select.ll
test/Transforms/InstCombine/load.ll
test/Transforms/InstCombine/load3.ll
test/Transforms/InstCombine/loadstore-alignment.ll
test/Transforms/InstCombine/loadstore-metadata.ll
test/Transforms/InstCombine/lshr-phi.ll
test/Transforms/InstCombine/malloc-free-delete.ll
test/Transforms/InstCombine/mem-gep-zidx.ll
test/Transforms/InstCombine/memcmp-1.ll
test/Transforms/InstCombine/memcpy-from-global.ll
test/Transforms/InstCombine/merge-icmp.ll
test/Transforms/InstCombine/mul.ll
test/Transforms/InstCombine/multi-size-address-space-pointer.ll
test/Transforms/InstCombine/no-negzero.ll
test/Transforms/InstCombine/obfuscated_splat.ll
test/Transforms/InstCombine/objsize.ll
test/Transforms/InstCombine/odr-linkage.ll
test/Transforms/InstCombine/or.ll
test/Transforms/InstCombine/phi-merge-gep.ll
test/Transforms/InstCombine/phi.ll
test/Transforms/InstCombine/pr12251.ll
test/Transforms/InstCombine/pr2645-0.ll
test/Transforms/InstCombine/pr2645-1.ll
test/Transforms/InstCombine/select-cmp-br.ll
test/Transforms/InstCombine/select-load-call.ll
test/Transforms/InstCombine/select.ll
test/Transforms/InstCombine/shufflemask-undef.ll
test/Transforms/InstCombine/signed-comparison.ll
test/Transforms/InstCombine/simplify-demanded-bits-pointer.ll
test/Transforms/InstCombine/simplify-libcalls.ll
test/Transforms/InstCombine/sincospi.ll
test/Transforms/InstCombine/sqrt.ll
test/Transforms/InstCombine/store.ll
test/Transforms/InstCombine/strcmp-1.ll
test/Transforms/InstCombine/strncmp-1.ll
test/Transforms/InstCombine/struct-assign-tbaa.ll
test/Transforms/InstCombine/vec_demanded_elts.ll
test/Transforms/InstCombine/vec_extract_var_elt.ll
test/Transforms/InstCombine/vec_shuffle.ll
test/Transforms/InstCombine/volatile_store.ll
test/Transforms/InstCombine/vsx-unaligned.ll
test/Transforms/InstCombine/zext-or-icmp.ll
test/Transforms/InstMerge/ld_hoist1.ll
test/Transforms/InstMerge/ld_hoist_st_sink.ll
test/Transforms/InstMerge/st_sink_barrier_call.ll
test/Transforms/InstMerge/st_sink_bugfix_22613.ll
test/Transforms/InstMerge/st_sink_no_barrier_call.ll
test/Transforms/InstMerge/st_sink_no_barrier_load.ll
test/Transforms/InstMerge/st_sink_no_barrier_store.ll
test/Transforms/InstMerge/st_sink_two_stores.ll
test/Transforms/InstMerge/st_sink_with_barrier.ll
test/Transforms/InstSimplify/call-callconv.ll
test/Transforms/InstSimplify/compare.ll
test/Transforms/InstSimplify/load.ll
test/Transforms/InstSimplify/vector_ptr_bitcast.ll
test/Transforms/Internalize/2009-01-05-InternalizeAliases.ll
test/Transforms/JumpThreading/2010-08-26-and.ll
test/Transforms/JumpThreading/2011-04-14-InfLoop.ll
test/Transforms/JumpThreading/crash.ll
test/Transforms/JumpThreading/landing-pad.ll
test/Transforms/JumpThreading/lvi-load.ll
test/Transforms/JumpThreading/or-undef.ll
test/Transforms/JumpThreading/phi-eq.ll
test/Transforms/JumpThreading/select.ll
test/Transforms/JumpThreading/thread-loads.ll
test/Transforms/LCSSA/2006-06-03-IncorrectIDFPhis.ll
test/Transforms/LCSSA/2006-07-09-NoDominator.ll
test/Transforms/LCSSA/2007-07-12-LICM-2.ll
test/Transforms/LCSSA/2007-07-12-LICM-3.ll
test/Transforms/LCSSA/2007-07-12-LICM.ll
test/Transforms/LCSSA/unreachable-use.ll
test/Transforms/LICM/2003-05-02-LoadHoist.ll
test/Transforms/LICM/2004-09-14-AliasAnalysisInvalidate.ll
test/Transforms/LICM/2007-05-22-VolatileSink.ll
test/Transforms/LICM/2007-07-30-AliasSet.ll
test/Transforms/LICM/2008-07-22-LoadGlobalConstant.ll
test/Transforms/LICM/2009-12-10-LICM-Indbr-Crash.ll
test/Transforms/LICM/2011-04-06-HoistMissedASTUpdate.ll
test/Transforms/LICM/2011-04-06-PromoteResultOfPromotion.ll
test/Transforms/LICM/2011-04-09-RAUW-AST.ll
test/Transforms/LICM/PR21582.ll
test/Transforms/LICM/atomics.ll
test/Transforms/LICM/constexpr.ll
test/Transforms/LICM/crash.ll
test/Transforms/LICM/hoist-bitcast-load.ll
test/Transforms/LICM/hoist-deref-load.ll
test/Transforms/LICM/hoist-invariant-load.ll
test/Transforms/LICM/hoisting.ll
test/Transforms/LICM/lcssa-ssa-promoter.ll
test/Transforms/LICM/scalar-promote-memmodel.ll
test/Transforms/LICM/scalar_promote.ll
test/Transforms/LICM/sinking.ll
test/Transforms/LICM/speculate.ll
test/Transforms/LICM/volatile-alias.ll
test/Transforms/LoadCombine/load-combine-aa.ll
test/Transforms/LoadCombine/load-combine-assume.ll
test/Transforms/LoadCombine/load-combine.ll
test/Transforms/LoopDeletion/2008-05-06-Phi.ll
test/Transforms/LoopIdiom/basic-address-space.ll
test/Transforms/LoopIdiom/basic.ll
test/Transforms/LoopIdiom/scev-invalidation.ll
test/Transforms/LoopReroll/basic.ll
test/Transforms/LoopReroll/nonconst_lb.ll
test/Transforms/LoopReroll/reduction.ll
test/Transforms/LoopRotate/PhiRename-1.ll
test/Transforms/LoopRotate/alloca.ll
test/Transforms/LoopRotate/dbgvalue.ll
test/Transforms/LoopRotate/indirectbr.ll
test/Transforms/LoopRotate/multiple-exits.ll
test/Transforms/LoopRotate/nosimplifylatch.ll
test/Transforms/LoopRotate/phi-duplicate.ll
test/Transforms/LoopRotate/simplifylatch.ll
test/Transforms/LoopSimplify/2003-08-15-PreheadersFail.ll
test/Transforms/LoopSimplify/2003-12-10-ExitBlocksProblem.ll
test/Transforms/LoopSimplify/ashr-crash.ll
test/Transforms/LoopSimplify/merge-exits.ll
test/Transforms/LoopSimplify/phi-node-simplify.ll
test/Transforms/LoopSimplify/preserve-scev.ll
test/Transforms/LoopStrengthReduce/2005-08-15-AddRecIV.ll
test/Transforms/LoopStrengthReduce/2005-08-17-OutOfLoopVariant.ll
test/Transforms/LoopStrengthReduce/2008-08-13-CmpStride.ll
test/Transforms/LoopStrengthReduce/2008-09-09-Overflow.ll
test/Transforms/LoopStrengthReduce/2009-01-13-nonconstant-stride-outside-loop.ll
test/Transforms/LoopStrengthReduce/2009-04-28-no-reduce-mul.ll
test/Transforms/LoopStrengthReduce/2011-07-19-CritEdgeBreakCrash.ll
test/Transforms/LoopStrengthReduce/2011-10-06-ReusePhi.ll
test/Transforms/LoopStrengthReduce/2011-12-19-PostincQuadratic.ll
test/Transforms/LoopStrengthReduce/2012-03-15-nopreheader.ll
test/Transforms/LoopStrengthReduce/2012-03-26-constexpr.ll
test/Transforms/LoopStrengthReduce/2012-07-13-ExpandUDiv.ll
test/Transforms/LoopStrengthReduce/2012-07-18-LimitReassociate.ll
test/Transforms/LoopStrengthReduce/2013-01-14-ReuseCast.ll
test/Transforms/LoopStrengthReduce/AArch64/lsr-memcpy.ll
test/Transforms/LoopStrengthReduce/AArch64/req-regs.ll
test/Transforms/LoopStrengthReduce/ARM/2012-06-15-lsr-noaddrmode.ll
test/Transforms/LoopStrengthReduce/ARM/ivchain-ARM.ll
test/Transforms/LoopStrengthReduce/X86/2011-12-04-loserreg.ll
test/Transforms/LoopStrengthReduce/X86/2012-01-13-phielim.ll
test/Transforms/LoopStrengthReduce/X86/ivchain-X86.ll
test/Transforms/LoopStrengthReduce/X86/ivchain-stress-X86.ll
test/Transforms/LoopStrengthReduce/X86/no_superflous_induction_vars.ll
test/Transforms/LoopStrengthReduce/X86/pr17473.ll
test/Transforms/LoopStrengthReduce/addrec-gep-address-space.ll
test/Transforms/LoopStrengthReduce/addrec-gep.ll
test/Transforms/LoopStrengthReduce/address-space-loop.ll
test/Transforms/LoopStrengthReduce/dont_reverse.ll
test/Transforms/LoopStrengthReduce/post-inc-icmpzero.ll
test/Transforms/LoopStrengthReduce/pr12691.ll
test/Transforms/LoopStrengthReduce/pr18165.ll
test/Transforms/LoopStrengthReduce/pr2570.ll
test/Transforms/LoopStrengthReduce/pr3086.ll
test/Transforms/LoopStrengthReduce/pr3399.ll
test/Transforms/LoopStrengthReduce/pr3571.ll
test/Transforms/LoopStrengthReduce/share_code_in_preheader.ll
test/Transforms/LoopStrengthReduce/uglygep-address-space.ll
test/Transforms/LoopStrengthReduce/uglygep.ll
test/Transforms/LoopUnroll/2011-08-08-PhiUpdate.ll
test/Transforms/LoopUnroll/2011-08-09-IVSimplify.ll
test/Transforms/LoopUnroll/2011-10-01-NoopTrunc.ll
test/Transforms/LoopUnroll/PowerPC/a2-unrolling.ll
test/Transforms/LoopUnroll/X86/partial.ll
test/Transforms/LoopUnroll/ephemeral.ll
test/Transforms/LoopUnroll/full-unroll-heuristics.ll
test/Transforms/LoopUnroll/runtime-loop.ll
test/Transforms/LoopUnroll/runtime-loop1.ll
test/Transforms/LoopUnroll/runtime-loop2.ll
test/Transforms/LoopUnroll/runtime-loop3.ll
test/Transforms/LoopUnroll/scevunroll.ll
test/Transforms/LoopUnroll/shifted-tripcount.ll
test/Transforms/LoopUnroll/unroll-pragmas-disabled.ll
test/Transforms/LoopUnroll/unroll-pragmas.ll
test/Transforms/LoopUnswitch/2008-06-17-DomFrontier.ll
test/Transforms/LoopUnswitch/2010-11-18-LCSSA.ll
test/Transforms/LoopUnswitch/2011-09-26-EHCrash.ll
test/Transforms/LoopUnswitch/2011-11-18-SimpleSwitch.ll
test/Transforms/LoopUnswitch/2011-11-18-TwoSwitches-Threshold.ll
test/Transforms/LoopUnswitch/2011-11-18-TwoSwitches.ll
test/Transforms/LoopUnswitch/2012-04-30-LoopUnswitch-LPad-Crash.ll
test/Transforms/LoopUnswitch/2012-05-20-Phi.ll
test/Transforms/LoopUnswitch/basictest.ll
test/Transforms/LoopUnswitch/preserve-analyses.ll
test/Transforms/LoopVectorize/12-12-11-if-conv.ll
test/Transforms/LoopVectorize/AArch64/aarch64-unroll.ll
test/Transforms/LoopVectorize/AArch64/arbitrary-induction-step.ll
test/Transforms/LoopVectorize/AArch64/arm64-unroll.ll
test/Transforms/LoopVectorize/AArch64/gather-cost.ll
test/Transforms/LoopVectorize/AArch64/sdiv-pow2.ll
test/Transforms/LoopVectorize/ARM/arm-unroll.ll
test/Transforms/LoopVectorize/ARM/gather-cost.ll
test/Transforms/LoopVectorize/ARM/gcc-examples.ll
test/Transforms/LoopVectorize/ARM/mul-cast-vect.ll
test/Transforms/LoopVectorize/ARM/width-detect.ll
test/Transforms/LoopVectorize/PowerPC/small-loop-rdx.ll
test/Transforms/LoopVectorize/PowerPC/vsx-tsvc-s173.ll
test/Transforms/LoopVectorize/X86/already-vectorized.ll
test/Transforms/LoopVectorize/X86/assume.ll
test/Transforms/LoopVectorize/X86/avx1.ll
test/Transforms/LoopVectorize/X86/constant-vector-operand.ll
test/Transforms/LoopVectorize/X86/cost-model.ll
test/Transforms/LoopVectorize/X86/fp32_to_uint32-cost-model.ll
test/Transforms/LoopVectorize/X86/fp64_to_uint32-cost-model.ll
test/Transforms/LoopVectorize/X86/fp_to_sint8-cost-model.ll
test/Transforms/LoopVectorize/X86/gather-cost.ll
test/Transforms/LoopVectorize/X86/gcc-examples.ll
test/Transforms/LoopVectorize/X86/illegal-parallel-loop-uniform-write.ll
test/Transforms/LoopVectorize/X86/masked_load_store.ll
test/Transforms/LoopVectorize/X86/metadata-enable.ll
test/Transforms/LoopVectorize/X86/min-trip-count-switch.ll
test/Transforms/LoopVectorize/X86/no-vector.ll
test/Transforms/LoopVectorize/X86/parallel-loops-after-reg2mem.ll
test/Transforms/LoopVectorize/X86/parallel-loops.ll
test/Transforms/LoopVectorize/X86/powof2div.ll
test/Transforms/LoopVectorize/X86/reduction-crash.ll
test/Transforms/LoopVectorize/X86/small-size.ll
test/Transforms/LoopVectorize/X86/tripcount.ll
test/Transforms/LoopVectorize/X86/uint64_to_fp64-cost-model.ll
test/Transforms/LoopVectorize/X86/unroll-pm.ll
test/Transforms/LoopVectorize/X86/unroll-small-loops.ll
test/Transforms/LoopVectorize/X86/unroll_selection.ll
test/Transforms/LoopVectorize/X86/vect.omp.force.ll
test/Transforms/LoopVectorize/X86/vect.omp.force.small-tc.ll
test/Transforms/LoopVectorize/X86/vector-scalar-select-cost.ll
test/Transforms/LoopVectorize/X86/vector_ptr_load_store.ll
test/Transforms/LoopVectorize/X86/vectorization-remarks-missed.ll
test/Transforms/LoopVectorize/X86/vectorization-remarks.ll
test/Transforms/LoopVectorize/align.ll
test/Transforms/LoopVectorize/bzip_reverse_loops.ll
test/Transforms/LoopVectorize/calloc.ll
test/Transforms/LoopVectorize/conditional-assignment.ll
test/Transforms/LoopVectorize/control-flow.ll
test/Transforms/LoopVectorize/cpp-new-array.ll
test/Transforms/LoopVectorize/dbg.value.ll
test/Transforms/LoopVectorize/debugloc.ll
test/Transforms/LoopVectorize/duplicated-metadata.ll
test/Transforms/LoopVectorize/ee-crash.ll
test/Transforms/LoopVectorize/exact.ll
test/Transforms/LoopVectorize/flags.ll
test/Transforms/LoopVectorize/float-reduction.ll
test/Transforms/LoopVectorize/funcall.ll
test/Transforms/LoopVectorize/gcc-examples.ll
test/Transforms/LoopVectorize/global_alias.ll
test/Transforms/LoopVectorize/hoist-loads.ll
test/Transforms/LoopVectorize/i8-induction.ll
test/Transforms/LoopVectorize/if-conversion-edgemasks.ll
test/Transforms/LoopVectorize/if-conversion-nest.ll
test/Transforms/LoopVectorize/if-conversion-reduction.ll
test/Transforms/LoopVectorize/if-conversion.ll
test/Transforms/LoopVectorize/if-pred-stores.ll
test/Transforms/LoopVectorize/incorrect-dom-info.ll
test/Transforms/LoopVectorize/increment.ll
test/Transforms/LoopVectorize/induction.ll
test/Transforms/LoopVectorize/intrinsic.ll
test/Transforms/LoopVectorize/lifetime.ll
test/Transforms/LoopVectorize/loop-vect-memdep.ll
test/Transforms/LoopVectorize/memdep.ll
test/Transforms/LoopVectorize/metadata-unroll.ll
test/Transforms/LoopVectorize/metadata.ll
test/Transforms/LoopVectorize/minmax_reduction.ll
test/Transforms/LoopVectorize/multi-use-reduction-bug.ll
test/Transforms/LoopVectorize/multiple-address-spaces.ll
test/Transforms/LoopVectorize/no_array_bounds.ll
test/Transforms/LoopVectorize/no_idiv_reduction.ll
test/Transforms/LoopVectorize/no_int_induction.ll
test/Transforms/LoopVectorize/no_outside_user.ll
test/Transforms/LoopVectorize/no_switch.ll
test/Transforms/LoopVectorize/non-const-n.ll
test/Transforms/LoopVectorize/opt.ll
test/Transforms/LoopVectorize/ptr_loops.ll
test/Transforms/LoopVectorize/read-only.ll
test/Transforms/LoopVectorize/reduction.ll
test/Transforms/LoopVectorize/reverse_induction.ll
test/Transforms/LoopVectorize/reverse_iter.ll
test/Transforms/LoopVectorize/runtime-check-address-space.ll
test/Transforms/LoopVectorize/runtime-check-readonly-address-space.ll
test/Transforms/LoopVectorize/runtime-check-readonly.ll
test/Transforms/LoopVectorize/runtime-check.ll
test/Transforms/LoopVectorize/runtime-limit.ll
test/Transforms/LoopVectorize/safegep.ll
test/Transforms/LoopVectorize/same-base-access.ll
test/Transforms/LoopVectorize/scalar-select.ll
test/Transforms/LoopVectorize/scev-exitlim-crash.ll
test/Transforms/LoopVectorize/simple-unroll.ll
test/Transforms/LoopVectorize/small-loop.ll
test/Transforms/LoopVectorize/start-non-zero.ll
test/Transforms/LoopVectorize/store-shuffle-bug.ll
test/Transforms/LoopVectorize/struct_access.ll
test/Transforms/LoopVectorize/tbaa-nodep.ll
test/Transforms/LoopVectorize/unroll_novec.ll
test/Transforms/LoopVectorize/value-ptr-bug.ll
test/Transforms/LoopVectorize/vect.omp.persistence.ll
test/Transforms/LoopVectorize/vect.stats.ll
test/Transforms/LoopVectorize/vectorize-once.ll
test/Transforms/LoopVectorize/version-mem-access.ll
test/Transforms/LoopVectorize/write-only.ll
test/Transforms/LowerAtomic/atomic-swap.ll
test/Transforms/LowerBitSets/simple.ll
test/Transforms/LowerExpectIntrinsic/basic.ll
test/Transforms/LowerSwitch/2014-06-10-SwitchContiguousOpt.ll
test/Transforms/LowerSwitch/2014-06-11-SwitchDefaultUnreachableOpt.ll
test/Transforms/Mem2Reg/2002-03-28-UninitializedVal.ll
test/Transforms/Mem2Reg/2003-04-24-MultipleIdenticalSuccessors.ll
test/Transforms/Mem2Reg/2003-06-26-IterativePromote.ll
test/Transforms/Mem2Reg/2003-10-05-DeadPHIInsertion.ll
test/Transforms/Mem2Reg/2005-06-30-ReadBeforeWrite.ll
test/Transforms/Mem2Reg/2005-11-28-Crash.ll
test/Transforms/Mem2Reg/2007-08-27-VolatileLoadsStores.ll
test/Transforms/Mem2Reg/ConvertDebugInfo.ll
test/Transforms/Mem2Reg/ConvertDebugInfo2.ll
test/Transforms/Mem2Reg/PromoteMemToRegister.ll
test/Transforms/Mem2Reg/UndefValuesMerge.ll
test/Transforms/Mem2Reg/atomic.ll
test/Transforms/Mem2Reg/crash.ll
test/Transforms/MemCpyOpt/2008-03-13-ReturnSlotBitcast.ll
test/Transforms/MemCpyOpt/2011-06-02-CallSlotOverwritten.ll
test/Transforms/MemCpyOpt/atomic.ll
test/Transforms/MemCpyOpt/loadstore-sret.ll
test/Transforms/MemCpyOpt/memcpy.ll
test/Transforms/MemCpyOpt/sret.ll
test/Transforms/MergeFunc/2011-02-08-RemoveEqual.ll
test/Transforms/MergeFunc/address-spaces.ll
test/Transforms/MergeFunc/crash.ll
test/Transforms/MergeFunc/inttoptr-address-space.ll
test/Transforms/MergeFunc/inttoptr.ll
test/Transforms/MergeFunc/mergefunc-struct-return.ll
test/Transforms/MergeFunc/ranges.ll
test/Transforms/MergeFunc/vector.ll
test/Transforms/MetaRenamer/metarenamer.ll
test/Transforms/ObjCARC/allocas.ll
test/Transforms/ObjCARC/basic.ll
test/Transforms/ObjCARC/cfg-hazards.ll
test/Transforms/ObjCARC/contract-storestrong-ivar.ll
test/Transforms/ObjCARC/contract-storestrong.ll
test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll
test/Transforms/ObjCARC/escape.ll
test/Transforms/ObjCARC/gvn.ll
test/Transforms/ObjCARC/intrinsic-use.ll
test/Transforms/ObjCARC/move-and-form-retain-autorelease.ll
test/Transforms/ObjCARC/move-and-merge-autorelease.ll
test/Transforms/ObjCARC/nested.ll
test/Transforms/ObjCARC/provenance.ll
test/Transforms/ObjCARC/retain-block-side-effects.ll
test/Transforms/PhaseOrdering/2010-03-22-empty-baseclass.ll
test/Transforms/PhaseOrdering/PR6627.ll
test/Transforms/PhaseOrdering/basic.ll
test/Transforms/PhaseOrdering/gdce.ll
test/Transforms/Reassociate/2011-01-26-UseAfterFree.ll
test/Transforms/Reassociate/basictest.ll
test/Transforms/Reassociate/crash.ll
test/Transforms/Reassociate/fast-basictest.ll
test/Transforms/Reassociate/pr12245.ll
test/Transforms/Reassociate/pr21205.ll
test/Transforms/RewriteStatepointsForGC/basics.ll
test/Transforms/SCCP/2003-06-24-OverdefinedPHIValue.ll
test/Transforms/SCCP/2006-10-23-IPSCCP-Crash.ll
test/Transforms/SCCP/2006-12-04-PackedType.ll
test/Transforms/SCCP/apint-array.ll
test/Transforms/SCCP/apint-bigarray.ll
test/Transforms/SCCP/apint-bigint2.ll
test/Transforms/SCCP/apint-ipsccp3.ll
test/Transforms/SCCP/apint-ipsccp4.ll
test/Transforms/SCCP/apint-load.ll
test/Transforms/SCCP/atomic-load-store.ll
test/Transforms/SCCP/ipsccp-basic.ll
test/Transforms/SCCP/loadtest.ll
test/Transforms/SLPVectorizer/AArch64/commute.ll
test/Transforms/SLPVectorizer/AArch64/load-store-q.ll
test/Transforms/SLPVectorizer/AArch64/sdiv-pow2.ll
test/Transforms/SLPVectorizer/ARM/memory.ll
test/Transforms/SLPVectorizer/R600/simplebb.ll
test/Transforms/SLPVectorizer/X86/addsub.ll
test/Transforms/SLPVectorizer/X86/align.ll
test/Transforms/SLPVectorizer/X86/call.ll
test/Transforms/SLPVectorizer/X86/cast.ll
test/Transforms/SLPVectorizer/X86/cmp_sel.ll
test/Transforms/SLPVectorizer/X86/compare-reduce.ll
test/Transforms/SLPVectorizer/X86/consecutive-access.ll
test/Transforms/SLPVectorizer/X86/continue_vectorizing.ll
test/Transforms/SLPVectorizer/X86/crash_binaryop.ll
test/Transforms/SLPVectorizer/X86/crash_bullet.ll
test/Transforms/SLPVectorizer/X86/crash_cmpop.ll
test/Transforms/SLPVectorizer/X86/crash_dequeue.ll
test/Transforms/SLPVectorizer/X86/crash_gep.ll
test/Transforms/SLPVectorizer/X86/crash_lencod.ll
test/Transforms/SLPVectorizer/X86/crash_mandeltext.ll
test/Transforms/SLPVectorizer/X86/crash_netbsd_decompress.ll
test/Transforms/SLPVectorizer/X86/crash_vectorizeTree.ll
test/Transforms/SLPVectorizer/X86/cross_block_slp.ll
test/Transforms/SLPVectorizer/X86/cse.ll
test/Transforms/SLPVectorizer/X86/cycle_dup.ll
test/Transforms/SLPVectorizer/X86/debug_info.ll
test/Transforms/SLPVectorizer/X86/diamond.ll
test/Transforms/SLPVectorizer/X86/external_user.ll
test/Transforms/SLPVectorizer/X86/extract.ll
test/Transforms/SLPVectorizer/X86/extract_in_tree_user.ll
test/Transforms/SLPVectorizer/X86/flag.ll
test/Transforms/SLPVectorizer/X86/gep.ll
test/Transforms/SLPVectorizer/X86/hoist.ll
test/Transforms/SLPVectorizer/X86/horizontal.ll
test/Transforms/SLPVectorizer/X86/implicitfloat.ll
test/Transforms/SLPVectorizer/X86/in-tree-user.ll
test/Transforms/SLPVectorizer/X86/intrinsic.ll
test/Transforms/SLPVectorizer/X86/long_chains.ll
test/Transforms/SLPVectorizer/X86/loopinvariant.ll
test/Transforms/SLPVectorizer/X86/metadata.ll
test/Transforms/SLPVectorizer/X86/multi_block.ll
test/Transforms/SLPVectorizer/X86/multi_user.ll
test/Transforms/SLPVectorizer/X86/odd_store.ll
test/Transforms/SLPVectorizer/X86/operandorder.ll
test/Transforms/SLPVectorizer/X86/opt.ll
test/Transforms/SLPVectorizer/X86/ordering.ll
test/Transforms/SLPVectorizer/X86/phi.ll
test/Transforms/SLPVectorizer/X86/phi3.ll
test/Transforms/SLPVectorizer/X86/phi_overalignedtype.ll
test/Transforms/SLPVectorizer/X86/powof2div.ll
test/Transforms/SLPVectorizer/X86/pr16628.ll
test/Transforms/SLPVectorizer/X86/pr16899.ll
test/Transforms/SLPVectorizer/X86/pr19657.ll
test/Transforms/SLPVectorizer/X86/propagate_ir_flags.ll
test/Transforms/SLPVectorizer/X86/reduction.ll
test/Transforms/SLPVectorizer/X86/reduction2.ll
test/Transforms/SLPVectorizer/X86/return.ll
test/Transforms/SLPVectorizer/X86/rgb_phi.ll
test/Transforms/SLPVectorizer/X86/saxpy.ll
test/Transforms/SLPVectorizer/X86/scheduling.ll
test/Transforms/SLPVectorizer/X86/simple-loop.ll
test/Transforms/SLPVectorizer/X86/simplebb.ll
test/Transforms/SLPVectorizer/X86/tiny-tree.ll
test/Transforms/SLPVectorizer/X86/unreachable.ll
test/Transforms/SLPVectorizer/XCore/no-vector-registers.ll
test/Transforms/SROA/address-spaces.ll
test/Transforms/SROA/alignment.ll
test/Transforms/SROA/basictest.ll
test/Transforms/SROA/big-endian.ll
test/Transforms/SROA/fca.ll
test/Transforms/SROA/phi-and-select.ll
test/Transforms/SROA/slice-order-independence.ll
test/Transforms/SROA/slice-width.ll
test/Transforms/SROA/vector-conversion.ll
test/Transforms/SROA/vector-lifetime-intrinsic.ll
test/Transforms/SROA/vector-promotion.ll
test/Transforms/SROA/vectors-of-pointers.ll
test/Transforms/SampleProfile/branch.ll
test/Transforms/SampleProfile/calls.ll
test/Transforms/SampleProfile/discriminator.ll
test/Transforms/SampleProfile/propagate.ll
test/Transforms/ScalarRepl/2003-05-29-ArrayFail.ll
test/Transforms/ScalarRepl/2006-11-07-InvalidArrayPromote.ll
test/Transforms/ScalarRepl/2007-05-29-MemcpyPreserve.ll
test/Transforms/ScalarRepl/2007-11-03-bigendian_apint.ll
test/Transforms/ScalarRepl/2008-01-29-PromoteBug.ll
test/Transforms/ScalarRepl/2008-02-28-SubElementExtractCrash.ll
test/Transforms/ScalarRepl/2008-06-05-loadstore-agg.ll
test/Transforms/ScalarRepl/2008-08-22-out-of-range-array-promote.ll
test/Transforms/ScalarRepl/2009-02-02-ScalarPromoteOutOfRange.ll
test/Transforms/ScalarRepl/2009-02-05-LoadFCA.ll
test/Transforms/ScalarRepl/2009-12-11-NeonTypes.ll
test/Transforms/ScalarRepl/2011-06-08-VectorExtractValue.ll
test/Transforms/ScalarRepl/2011-06-17-VectorPartialMemset.ll
test/Transforms/ScalarRepl/2011-09-22-PHISpeculateInvoke.ll
test/Transforms/ScalarRepl/2011-11-11-EmptyStruct.ll
test/Transforms/ScalarRepl/AggregatePromote.ll
test/Transforms/ScalarRepl/DifferingTypes.ll
test/Transforms/ScalarRepl/address-space.ll
test/Transforms/ScalarRepl/arraytest.ll
test/Transforms/ScalarRepl/badarray.ll
test/Transforms/ScalarRepl/basictest.ll
test/Transforms/ScalarRepl/bitfield-sroa.ll
test/Transforms/ScalarRepl/copy-aggregate.ll
test/Transforms/ScalarRepl/crash.ll
test/Transforms/ScalarRepl/debuginfo-preserved.ll
test/Transforms/ScalarRepl/inline-vector.ll
test/Transforms/ScalarRepl/lifetime.ll
test/Transforms/ScalarRepl/load-store-aggregate.ll
test/Transforms/ScalarRepl/memset-aggregate-byte-leader.ll
test/Transforms/ScalarRepl/memset-aggregate.ll
test/Transforms/ScalarRepl/nonzero-first-index.ll
test/Transforms/ScalarRepl/not-a-vector.ll
test/Transforms/ScalarRepl/phi-cycle.ll
test/Transforms/ScalarRepl/phi-select.ll
test/Transforms/ScalarRepl/phinodepromote.ll
test/Transforms/ScalarRepl/select_promote.ll
test/Transforms/ScalarRepl/sroa-fca.ll
test/Transforms/ScalarRepl/sroa_two.ll
test/Transforms/ScalarRepl/union-fp-int.ll
test/Transforms/ScalarRepl/union-packed.ll
test/Transforms/ScalarRepl/union-pointer.ll
test/Transforms/ScalarRepl/vector_memcpy.ll
test/Transforms/ScalarRepl/vector_promote.ll
test/Transforms/ScalarRepl/vectors-with-mismatched-elements.ll
test/Transforms/ScalarRepl/volatile.ll
test/Transforms/Scalarizer/basic.ll
test/Transforms/Scalarizer/dbginfo.ll
test/Transforms/Scalarizer/no-data-layout.ll
test/Transforms/SeparateConstOffsetFromGEP/NVPTX/split-gep-and-gvn.ll
test/Transforms/SimplifyCFG/2005-06-16-PHICrash.ll
test/Transforms/SimplifyCFG/2005-12-03-IncorrectPHIFold.ll
test/Transforms/SimplifyCFG/2006-08-03-Crash.ll
test/Transforms/SimplifyCFG/2006-12-08-Ptr-ICmp-Branch.ll
test/Transforms/SimplifyCFG/2008-01-02-hoist-fp-add.ll
test/Transforms/SimplifyCFG/2008-07-13-InfLoopMiscompile.ll
test/Transforms/SimplifyCFG/2008-09-08-MultiplePred.ll
test/Transforms/SimplifyCFG/2009-05-12-externweak.ll
test/Transforms/SimplifyCFG/AArch64/prefer-fma.ll
test/Transforms/SimplifyCFG/EmptyBlockMerge.ll
test/Transforms/SimplifyCFG/PR17073.ll
test/Transforms/SimplifyCFG/SpeculativeExec.ll
test/Transforms/SimplifyCFG/X86/switch-covered-bug.ll
test/Transforms/SimplifyCFG/X86/switch-table-bug.ll
test/Transforms/SimplifyCFG/X86/switch_to_lookup_table.ll
test/Transforms/SimplifyCFG/basictest.ll
test/Transforms/SimplifyCFG/branch-fold-threshold.ll
test/Transforms/SimplifyCFG/branch-phi-thread.ll
test/Transforms/SimplifyCFG/dbginfo.ll
test/Transforms/SimplifyCFG/hoist-common-code.ll
test/Transforms/SimplifyCFG/hoist-with-range.ll
test/Transforms/SimplifyCFG/indirectbr.ll
test/Transforms/SimplifyCFG/iterative-simplify.ll
test/Transforms/SimplifyCFG/multiple-phis.ll
test/Transforms/SimplifyCFG/no_speculative_loads_with_tsan.ll
test/Transforms/SimplifyCFG/phi-undef-loadstore.ll
test/Transforms/SimplifyCFG/preserve-branchweights.ll
test/Transforms/SimplifyCFG/speculate-store.ll
test/Transforms/SimplifyCFG/speculate-with-offset.ll
test/Transforms/SimplifyCFG/switch-to-select-multiple-edge-per-block-phi.ll
test/Transforms/SimplifyCFG/switch_create.ll
test/Transforms/SimplifyCFG/trapping-load-unreachable.ll
test/Transforms/SimplifyCFG/unreachable-blocks.ll
test/Transforms/Sink/basic.ll
test/Transforms/StripSymbols/strip-dead-debug-info.ll
test/Transforms/StructurizeCFG/post-order-traversal-bug.ll
test/Transforms/TailCallElim/basic.ll
test/Transforms/TailCallElim/dont_reorder_load.ll
test/Transforms/TailCallElim/reorder_load.ll
test/Verifier/2006-10-15-AddrLabel.ll
test/Verifier/range-1.ll
test/Verifier/range-2.ll
test/tools/gold/slp-vectorize.ll
test/tools/gold/vectorize.ll