AArch64/ARM64: move ARM64 into AArch64's place
authorTim Northover <tnorthover@apple.com>
Sat, 24 May 2014 12:50:23 +0000 (12:50 +0000)
committerTim Northover <tnorthover@apple.com>
Sat, 24 May 2014 12:50:23 +0000 (12:50 +0000)
commit29f94c72014eaa5d0d3b920686e689e79759cacb
treecb2e1cc50e9a80c55f33e15ec2ce110a6b05019a
parent9105f66d6f3cb6330ce77a88a0ef1ec0744aba85
AArch64/ARM64: move ARM64 into AArch64's place

This commit starts with a "git mv ARM64 AArch64" and continues out
from there, renaming the C++ classes, intrinsics, and other
target-local objects for consistency.

"ARM64" test directories are also moved, and tests that began their
life in ARM64 use an arm64 triple, those from AArch64 use an aarch64
triple. Both should be equivalent though.

This finishes the AArch64 merge, and everyone should feel free to
continue committing as normal now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209577 91177308-0d34-0410-b5e6-96231b3b80d8
1063 files changed:
CMakeLists.txt
autoconf/configure.ac
cmake/config-ix.cmake
configure
docs/LangRef.rst
include/llvm/IR/Intrinsics.td
include/llvm/IR/IntrinsicsAArch64.td [new file with mode: 0644]
include/llvm/IR/IntrinsicsARM64.td [deleted file]
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
lib/LTO/LTOCodeGenerator.cpp
lib/LTO/LTOModule.cpp
lib/MC/MCObjectFileInfo.cpp
lib/Target/AArch64/AArch64.h [new file with mode: 0644]
lib/Target/AArch64/AArch64.td [new file with mode: 0644]
lib/Target/AArch64/AArch64AddressTypePromotion.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64AsmPrinter.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64BranchRelaxation.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64CallingConv.h [new file with mode: 0644]
lib/Target/AArch64/AArch64CallingConvention.td [new file with mode: 0644]
lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64CollectLOH.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64ConditionalCompares.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64FastISel.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64FrameLowering.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64FrameLowering.h [new file with mode: 0644]
lib/Target/AArch64/AArch64ISelDAGToDAG.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64ISelLowering.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64ISelLowering.h [new file with mode: 0644]
lib/Target/AArch64/AArch64InstrAtomics.td [new file with mode: 0644]
lib/Target/AArch64/AArch64InstrFormats.td [new file with mode: 0644]
lib/Target/AArch64/AArch64InstrInfo.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64InstrInfo.h [new file with mode: 0644]
lib/Target/AArch64/AArch64InstrInfo.td [new file with mode: 0644]
lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64MCInstLower.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64MCInstLower.h [new file with mode: 0644]
lib/Target/AArch64/AArch64MachineFunctionInfo.h [new file with mode: 0644]
lib/Target/AArch64/AArch64PerfectShuffle.h [new file with mode: 0644]
lib/Target/AArch64/AArch64PromoteConstant.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64RegisterInfo.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64RegisterInfo.h [new file with mode: 0644]
lib/Target/AArch64/AArch64RegisterInfo.td [new file with mode: 0644]
lib/Target/AArch64/AArch64SchedA53.td [new file with mode: 0644]
lib/Target/AArch64/AArch64SchedCyclone.td [new file with mode: 0644]
lib/Target/AArch64/AArch64Schedule.td [new file with mode: 0644]
lib/Target/AArch64/AArch64SelectionDAGInfo.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64SelectionDAGInfo.h [new file with mode: 0644]
lib/Target/AArch64/AArch64StorePairSuppress.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64Subtarget.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64Subtarget.h [new file with mode: 0644]
lib/Target/AArch64/AArch64TargetMachine.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64TargetMachine.h [new file with mode: 0644]
lib/Target/AArch64/AArch64TargetObjectFile.cpp [new file with mode: 0644]
lib/Target/AArch64/AArch64TargetObjectFile.h [new file with mode: 0644]
lib/Target/AArch64/AArch64TargetTransformInfo.cpp [new file with mode: 0644]
lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp [new file with mode: 0644]
lib/Target/AArch64/AsmParser/CMakeLists.txt [new file with mode: 0644]
lib/Target/AArch64/AsmParser/LLVMBuild.txt [new file with mode: 0644]
lib/Target/AArch64/AsmParser/Makefile [new file with mode: 0644]
lib/Target/AArch64/CMakeLists.txt [new file with mode: 0644]
lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp [new file with mode: 0644]
lib/Target/AArch64/Disassembler/AArch64Disassembler.h [new file with mode: 0644]
lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp [new file with mode: 0644]
lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h [new file with mode: 0644]
lib/Target/AArch64/Disassembler/CMakeLists.txt [new file with mode: 0644]
lib/Target/AArch64/Disassembler/LLVMBuild.txt [new file with mode: 0644]
lib/Target/AArch64/Disassembler/Makefile [new file with mode: 0644]
lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp [new file with mode: 0644]
lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h [new file with mode: 0644]
lib/Target/AArch64/InstPrinter/CMakeLists.txt [new file with mode: 0644]
lib/Target/AArch64/InstPrinter/LLVMBuild.txt [new file with mode: 0644]
lib/Target/AArch64/InstPrinter/Makefile [new file with mode: 0644]
lib/Target/AArch64/LLVMBuild.txt [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64FixupKinds.h [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/CMakeLists.txt [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/LLVMBuild.txt [new file with mode: 0644]
lib/Target/AArch64/MCTargetDesc/Makefile [new file with mode: 0644]
lib/Target/AArch64/Makefile [new file with mode: 0644]
lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp [new file with mode: 0644]
lib/Target/AArch64/TargetInfo/CMakeLists.txt [new file with mode: 0644]
lib/Target/AArch64/TargetInfo/LLVMBuild.txt [new file with mode: 0644]
lib/Target/AArch64/TargetInfo/Makefile [new file with mode: 0644]
lib/Target/AArch64/Utils/AArch64BaseInfo.cpp [new file with mode: 0644]
lib/Target/AArch64/Utils/AArch64BaseInfo.h [new file with mode: 0644]
lib/Target/AArch64/Utils/CMakeLists.txt [new file with mode: 0644]
lib/Target/AArch64/Utils/LLVMBuild.txt [new file with mode: 0644]
lib/Target/AArch64/Utils/Makefile [new file with mode: 0644]
lib/Target/ARM64/ARM64.h [deleted file]
lib/Target/ARM64/ARM64.td [deleted file]
lib/Target/ARM64/ARM64AddressTypePromotion.cpp [deleted file]
lib/Target/ARM64/ARM64AdvSIMDScalarPass.cpp [deleted file]
lib/Target/ARM64/ARM64AsmPrinter.cpp [deleted file]
lib/Target/ARM64/ARM64BranchRelaxation.cpp [deleted file]
lib/Target/ARM64/ARM64CallingConv.h [deleted file]
lib/Target/ARM64/ARM64CallingConvention.td [deleted file]
lib/Target/ARM64/ARM64CleanupLocalDynamicTLSPass.cpp [deleted file]
lib/Target/ARM64/ARM64CollectLOH.cpp [deleted file]
lib/Target/ARM64/ARM64ConditionalCompares.cpp [deleted file]
lib/Target/ARM64/ARM64DeadRegisterDefinitionsPass.cpp [deleted file]
lib/Target/ARM64/ARM64ExpandPseudoInsts.cpp [deleted file]
lib/Target/ARM64/ARM64FastISel.cpp [deleted file]
lib/Target/ARM64/ARM64FrameLowering.cpp [deleted file]
lib/Target/ARM64/ARM64FrameLowering.h [deleted file]
lib/Target/ARM64/ARM64ISelDAGToDAG.cpp [deleted file]
lib/Target/ARM64/ARM64ISelLowering.cpp [deleted file]
lib/Target/ARM64/ARM64ISelLowering.h [deleted file]
lib/Target/ARM64/ARM64InstrAtomics.td [deleted file]
lib/Target/ARM64/ARM64InstrFormats.td [deleted file]
lib/Target/ARM64/ARM64InstrInfo.cpp [deleted file]
lib/Target/ARM64/ARM64InstrInfo.h [deleted file]
lib/Target/ARM64/ARM64InstrInfo.td [deleted file]
lib/Target/ARM64/ARM64LoadStoreOptimizer.cpp [deleted file]
lib/Target/ARM64/ARM64MCInstLower.cpp [deleted file]
lib/Target/ARM64/ARM64MCInstLower.h [deleted file]
lib/Target/ARM64/ARM64MachineFunctionInfo.h [deleted file]
lib/Target/ARM64/ARM64PerfectShuffle.h [deleted file]
lib/Target/ARM64/ARM64PromoteConstant.cpp [deleted file]
lib/Target/ARM64/ARM64RegisterInfo.cpp [deleted file]
lib/Target/ARM64/ARM64RegisterInfo.h [deleted file]
lib/Target/ARM64/ARM64RegisterInfo.td [deleted file]
lib/Target/ARM64/ARM64SchedA53.td [deleted file]
lib/Target/ARM64/ARM64SchedCyclone.td [deleted file]
lib/Target/ARM64/ARM64Schedule.td [deleted file]
lib/Target/ARM64/ARM64SelectionDAGInfo.cpp [deleted file]
lib/Target/ARM64/ARM64SelectionDAGInfo.h [deleted file]
lib/Target/ARM64/ARM64StorePairSuppress.cpp [deleted file]
lib/Target/ARM64/ARM64Subtarget.cpp [deleted file]
lib/Target/ARM64/ARM64Subtarget.h [deleted file]
lib/Target/ARM64/ARM64TargetMachine.cpp [deleted file]
lib/Target/ARM64/ARM64TargetMachine.h [deleted file]
lib/Target/ARM64/ARM64TargetObjectFile.cpp [deleted file]
lib/Target/ARM64/ARM64TargetObjectFile.h [deleted file]
lib/Target/ARM64/ARM64TargetTransformInfo.cpp [deleted file]
lib/Target/ARM64/AsmParser/ARM64AsmParser.cpp [deleted file]
lib/Target/ARM64/AsmParser/CMakeLists.txt [deleted file]
lib/Target/ARM64/AsmParser/LLVMBuild.txt [deleted file]
lib/Target/ARM64/AsmParser/Makefile [deleted file]
lib/Target/ARM64/CMakeLists.txt [deleted file]
lib/Target/ARM64/Disassembler/ARM64Disassembler.cpp [deleted file]
lib/Target/ARM64/Disassembler/ARM64Disassembler.h [deleted file]
lib/Target/ARM64/Disassembler/ARM64ExternalSymbolizer.cpp [deleted file]
lib/Target/ARM64/Disassembler/ARM64ExternalSymbolizer.h [deleted file]
lib/Target/ARM64/Disassembler/CMakeLists.txt [deleted file]
lib/Target/ARM64/Disassembler/LLVMBuild.txt [deleted file]
lib/Target/ARM64/Disassembler/Makefile [deleted file]
lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp [deleted file]
lib/Target/ARM64/InstPrinter/ARM64InstPrinter.h [deleted file]
lib/Target/ARM64/InstPrinter/CMakeLists.txt [deleted file]
lib/Target/ARM64/InstPrinter/LLVMBuild.txt [deleted file]
lib/Target/ARM64/InstPrinter/Makefile [deleted file]
lib/Target/ARM64/LLVMBuild.txt [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64AddressingModes.h [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64AsmBackend.cpp [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64ELFObjectWriter.cpp [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64ELFStreamer.cpp [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64ELFStreamer.h [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64FixupKinds.h [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64MCAsmInfo.cpp [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64MCAsmInfo.h [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64MCCodeEmitter.cpp [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64MCExpr.cpp [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64MCExpr.h [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64MCTargetDesc.cpp [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64MCTargetDesc.h [deleted file]
lib/Target/ARM64/MCTargetDesc/ARM64MachObjectWriter.cpp [deleted file]
lib/Target/ARM64/MCTargetDesc/CMakeLists.txt [deleted file]
lib/Target/ARM64/MCTargetDesc/LLVMBuild.txt [deleted file]
lib/Target/ARM64/MCTargetDesc/Makefile [deleted file]
lib/Target/ARM64/Makefile [deleted file]
lib/Target/ARM64/TargetInfo/ARM64TargetInfo.cpp [deleted file]
lib/Target/ARM64/TargetInfo/CMakeLists.txt [deleted file]
lib/Target/ARM64/TargetInfo/LLVMBuild.txt [deleted file]
lib/Target/ARM64/TargetInfo/Makefile [deleted file]
lib/Target/ARM64/Utils/ARM64BaseInfo.cpp [deleted file]
lib/Target/ARM64/Utils/ARM64BaseInfo.h [deleted file]
lib/Target/ARM64/Utils/CMakeLists.txt [deleted file]
lib/Target/ARM64/Utils/LLVMBuild.txt [deleted file]
lib/Target/ARM64/Utils/Makefile [deleted file]
lib/Target/LLVMBuild.txt
lib/Transforms/InstCombine/InstCombineCalls.cpp
test/Analysis/CostModel/AArch64/lit.local.cfg [new file with mode: 0644]
test/Analysis/CostModel/AArch64/select.ll [new file with mode: 0644]
test/Analysis/CostModel/AArch64/store.ll [new file with mode: 0644]
test/Analysis/CostModel/ARM64/lit.local.cfg [deleted file]
test/Analysis/CostModel/ARM64/select.ll [deleted file]
test/Analysis/CostModel/ARM64/store.ll [deleted file]
test/CodeGen/AArch64/128bit_load_store.ll
test/CodeGen/AArch64/aarch64-neon-v1i1-setcc.ll [new file with mode: 0644]
test/CodeGen/AArch64/addsub.ll
test/CodeGen/AArch64/addsub_ext.ll
test/CodeGen/AArch64/alloca.ll
test/CodeGen/AArch64/analyze-branch.ll
test/CodeGen/AArch64/arm64-2011-03-09-CPSRSpill.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2011-03-17-AsmPrinterCrash.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2011-03-21-Unaligned-Frame-Index.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2011-04-21-CPSRBug.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2011-10-18-LdStOptBug.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2012-01-11-ComparisonDAGCrash.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2012-05-07-DAGCombineVectorExtract.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2012-05-07-MemcpyAlignBug.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2012-05-09-LOADgot-bug.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2012-05-22-LdStOptBug.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2012-06-06-FPToUI.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2012-07-11-InstrEmitterBug.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2013-01-13-ffast-fcmp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2013-01-23-frem-crash.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2013-01-23-sext-crash.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2013-02-12-shufv8i8.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2014-04-16-AnInfiniteLoopInDAGCombine.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2014-04-28-sqshl-uqshl-i64Contant.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-2014-04-29-EXT-undef-mask.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-AdvSIMD-Scalar.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-aapcs.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-abi-varargs.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-abi.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-abi_align.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-addp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-addr-mode-folding.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-addr-type-promotion.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-addrmode.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-alloc-no-stack-realign.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-alloca-frame-pointer-offset.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-andCmpBrToTBZ.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-ands-bad-peephole.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-anyregcc-crash.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-anyregcc.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-arith-saturating.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-arith.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-arm64-dead-def-elimination-flag.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-atomic-128.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-atomic.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-basic-pic.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-big-endian-bitconverts.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-big-endian-eh.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-big-endian-varargs.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-big-endian-vector-callee.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-big-endian-vector-caller.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-big-imm-offsets.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-big-stack.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-bitfield-extract.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-blockaddress.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-build-vector.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-call-tailcalls.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-cast-opt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-ccmp-heuristics.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-ccmp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-clrsb.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-coalesce-ext.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-code-model-large-abs.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-collect-loh-garbage-crash.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-collect-loh-str.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-collect-loh.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-complex-copy-noneon.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-complex-ret.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-const-addr.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-convert-v2f64-v2i32.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-convert-v2i32-v2f64.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-copy-tuple.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-crc32.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-crypto.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-cse.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-csel.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-cvt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-dagcombiner-convergence.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-dagcombiner-dead-indexed-load.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-dagcombiner-indexed-load.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-dagcombiner-load-slicing.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-dead-def-frame-index.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-dead-register-def-bug.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-dup.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-early-ifcvt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-elf-calls.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-elf-constpool.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-elf-globals.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-ext.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-extend-int-to-fp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-extend.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-extern-weak.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-extload-knownzero.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-extract.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-extract_subvector.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-addr-offset.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-alloca.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-br.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-call.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-conversion.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-fcmp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-gv.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-icmp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-indirectbr.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-intrinsic.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-materialize.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-noconvert.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-rem.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-ret.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel-select.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fast-isel.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fastcc-tailcall.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fastisel-gep-promote-before-add.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fcmp-opt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fcopysign.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fixed-point-scalar-cvt-dagcombine.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fmadd.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fmax.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fminv.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fmuladd.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fold-address.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fold-lsl.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fp-contract-zero.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fp-imm.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fp128-folding.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-fp128.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-frame-index.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-frameaddr.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-global-address.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-hello.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-i16-subreg-extract.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-icmp-opt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-illegal-float-ops.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-indexed-memory.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-indexed-vector-ldst-2.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-indexed-vector-ldst.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-inline-asm-error-I.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-inline-asm-error-J.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-inline-asm-error-K.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-inline-asm-error-L.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-inline-asm-error-M.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-inline-asm-error-N.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-inline-asm-zero-reg-error.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-inline-asm.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-join-reserved.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-jumptable.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-large-frame.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-ld1.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-ldp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-ldur.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-ldxr-stxr.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-leaf.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-long-shift.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-memcpy-inline.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-memset-inline.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-memset-to-bzero.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-misched-basic-A53.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-misched-forwarding-A53.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-movi.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-mul.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-named-reg-alloc.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-named-reg-notareg.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neg.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-2velem-high.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-2velem.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-3vdiff.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-aba-abd.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-across.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-add-pairwise.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-add-sub.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-compare-instructions.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-copy.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-copyPhysReg-tuple.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-mul-div.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-scalar-by-elem-mul.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-select_cc.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-simd-ldst-one.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-simd-shift.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-simd-vget.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-v1i1-setcc.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-neon-vector-list-spill.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-patchpoint.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-pic-local-symbol.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-platform-reg.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-popcnt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-prefetch.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-promote-const.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-redzone.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-reg-copy-noneon.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-register-offset-addressing.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-register-pairing.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-regress-f128csel-flags.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-regress-interphase-shift.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-return-vector.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-returnaddr.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-rev.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-rounding.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-scaled_iv.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-scvt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-shifted-sext.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-simd-scalar-to-vector.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-simplest-elf.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-sincos.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-sitofp-combine-chains.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-sli-sri-opt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-smaxv.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-sminv.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-spill-lr.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-spill.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-st1.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-stack-no-frame.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-stackmap.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-stackpointer.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-stacksave.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-stp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-strict-align.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-stur.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-subsections.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-subvector-extend.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-swizzle-tbl-i16-layout.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-tbl.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-this-return.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-tls-darwin.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-tls-dynamic-together.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-tls-dynamics.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-tls-execs.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-trap.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-trn.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-trunc-store.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-umaxv.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-uminv.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-umov.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-unaligned_ldst.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-uzp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vaargs.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vabs.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vadd.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vaddlv.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vaddv.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-variadic-aapcs.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vbitwise.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vclz.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vcmp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vcnt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vcombine.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vcvt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vcvt_f.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vcvt_f32_su32.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vcvt_n.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vcvt_su32_f32.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vcvtxd_f32_f64.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vecCmpBr.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vecFold.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vector-ext.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vector-imm.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vector-insertion.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vector-ldst.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vext.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vext_reverse.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vfloatintrinsics.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vhadd.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vhsub.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-virtual_base.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vmax.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vminmaxnm.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vmovn.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vmul.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-volatile.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vpopcnt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vqadd.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vqsub.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vselect.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vsetcc_fp.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vshift.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vshr.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vshuffle.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vsqrt.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vsra.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-vsub.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-weak-reference.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-xaluo.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-zero-cycle-regmov.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-zero-cycle-zeroing.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-zext.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-zextload-unscaled.ll [new file with mode: 0644]
test/CodeGen/AArch64/arm64-zip.ll [new file with mode: 0644]
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/code-model-large-abs.ll
test/CodeGen/AArch64/compare-branch.ll
test/CodeGen/AArch64/complex-copy-noneon.ll
test/CodeGen/AArch64/cond-sel.ll
test/CodeGen/AArch64/directcond.ll
test/CodeGen/AArch64/dp1.ll
test/CodeGen/AArch64/eliminate-trunc.ll
test/CodeGen/AArch64/extern-weak.ll
test/CodeGen/AArch64/fastcc-reserved.ll
test/CodeGen/AArch64/fastcc.ll
test/CodeGen/AArch64/fcmp.ll
test/CodeGen/AArch64/fcvt-fixed.ll
test/CodeGen/AArch64/flags-multiuse.ll
test/CodeGen/AArch64/floatdp_2source.ll
test/CodeGen/AArch64/fp-cond-sel.ll
test/CodeGen/AArch64/fp-dp3.ll
test/CodeGen/AArch64/fp128-folding.ll
test/CodeGen/AArch64/fpimm.ll
test/CodeGen/AArch64/func-argpassing.ll
test/CodeGen/AArch64/func-calls.ll
test/CodeGen/AArch64/global-alignment.ll
test/CodeGen/AArch64/got-abuse.ll
test/CodeGen/AArch64/illegal-float-ops.ll
test/CodeGen/AArch64/init-array.ll
test/CodeGen/AArch64/inline-asm-constraints-badI.ll
test/CodeGen/AArch64/inline-asm-constraints-badK2.ll
test/CodeGen/AArch64/jump-table.ll
test/CodeGen/AArch64/large-consts.ll
test/CodeGen/AArch64/ldst-regoffset.ll
test/CodeGen/AArch64/ldst-unscaledimm.ll
test/CodeGen/AArch64/ldst-unsignedimm.ll
test/CodeGen/AArch64/lit.local.cfg [new file with mode: 0644]
test/CodeGen/AArch64/literal_pools_float.ll
test/CodeGen/AArch64/local_vars.ll
test/CodeGen/AArch64/logical_shifted_reg.ll
test/CodeGen/AArch64/mature-mc-support.ll
test/CodeGen/AArch64/movw-consts.ll
test/CodeGen/AArch64/movw-shift-encoding.ll
test/CodeGen/AArch64/neon-bitcast.ll
test/CodeGen/AArch64/neon-bitwise-instructions.ll
test/CodeGen/AArch64/neon-compare-instructions.ll
test/CodeGen/AArch64/neon-diagnostics.ll
test/CodeGen/AArch64/neon-extract.ll
test/CodeGen/AArch64/neon-fma.ll
test/CodeGen/AArch64/neon-fpround_f128.ll
test/CodeGen/AArch64/neon-idiv.ll
test/CodeGen/AArch64/neon-mla-mls.ll
test/CodeGen/AArch64/neon-mov.ll
test/CodeGen/AArch64/neon-or-combine.ll
test/CodeGen/AArch64/neon-perm.ll
test/CodeGen/AArch64/neon-scalar-by-elem-fma.ll
test/CodeGen/AArch64/neon-scalar-copy.ll
test/CodeGen/AArch64/neon-shift-left-long.ll
test/CodeGen/AArch64/neon-truncStore-extLoad.ll
test/CodeGen/AArch64/pic-eh-stubs.ll
test/CodeGen/AArch64/regress-f128csel-flags.ll
test/CodeGen/AArch64/regress-fp128-livein.ll
test/CodeGen/AArch64/regress-tblgen-chains.ll
test/CodeGen/AArch64/regress-w29-reserved-with-fp.ll
test/CodeGen/AArch64/setcc-takes-i32.ll
test/CodeGen/AArch64/sibling-call.ll
test/CodeGen/AArch64/sincos-expansion.ll
test/CodeGen/AArch64/sincospow-vector-expansion.ll
test/CodeGen/AArch64/tail-call.ll
test/CodeGen/AArch64/zero-reg.ll
test/CodeGen/ARM64/2011-03-09-CPSRSpill.ll [deleted file]
test/CodeGen/ARM64/2011-03-17-AsmPrinterCrash.ll [deleted file]
test/CodeGen/ARM64/2011-03-21-Unaligned-Frame-Index.ll [deleted file]
test/CodeGen/ARM64/2011-04-21-CPSRBug.ll [deleted file]
test/CodeGen/ARM64/2011-10-18-LdStOptBug.ll [deleted file]
test/CodeGen/ARM64/2012-01-11-ComparisonDAGCrash.ll [deleted file]
test/CodeGen/ARM64/2012-05-07-DAGCombineVectorExtract.ll [deleted file]
test/CodeGen/ARM64/2012-05-07-MemcpyAlignBug.ll [deleted file]
test/CodeGen/ARM64/2012-05-09-LOADgot-bug.ll [deleted file]
test/CodeGen/ARM64/2012-05-22-LdStOptBug.ll [deleted file]
test/CodeGen/ARM64/2012-06-06-FPToUI.ll [deleted file]
test/CodeGen/ARM64/2012-07-11-InstrEmitterBug.ll [deleted file]
test/CodeGen/ARM64/2013-01-13-ffast-fcmp.ll [deleted file]
test/CodeGen/ARM64/2013-01-23-frem-crash.ll [deleted file]
test/CodeGen/ARM64/2013-01-23-sext-crash.ll [deleted file]
test/CodeGen/ARM64/2013-02-12-shufv8i8.ll [deleted file]
test/CodeGen/ARM64/2014-04-16-AnInfiniteLoopInDAGCombine.ll [deleted file]
test/CodeGen/ARM64/2014-04-28-sqshl-uqshl-i64Contant.ll [deleted file]
test/CodeGen/ARM64/2014-04-29-EXT-undef-mask.ll [deleted file]
test/CodeGen/ARM64/AdvSIMD-Scalar.ll [deleted file]
test/CodeGen/ARM64/aapcs.ll [deleted file]
test/CodeGen/ARM64/aarch64-large-frame.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-2velem-high.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-2velem.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-3vdiff.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-aba-abd.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-across.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-add-pairwise.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-add-sub.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-copy.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-copyPhysReg-tuple.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-mul-div.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-scalar-by-elem-mul.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-select_cc.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-simd-ldst-one.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-simd-shift.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-simd-vget.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-v1i1-setcc.ll [deleted file]
test/CodeGen/ARM64/aarch64-neon-vector-list-spill.ll [deleted file]
test/CodeGen/ARM64/abi-varargs.ll [deleted file]
test/CodeGen/ARM64/abi.ll [deleted file]
test/CodeGen/ARM64/abi_align.ll [deleted file]
test/CodeGen/ARM64/addp.ll [deleted file]
test/CodeGen/ARM64/addr-mode-folding.ll [deleted file]
test/CodeGen/ARM64/addr-type-promotion.ll [deleted file]
test/CodeGen/ARM64/addrmode.ll [deleted file]
test/CodeGen/ARM64/alloc-no-stack-realign.ll [deleted file]
test/CodeGen/ARM64/alloca-frame-pointer-offset.ll [deleted file]
test/CodeGen/ARM64/andCmpBrToTBZ.ll [deleted file]
test/CodeGen/ARM64/ands-bad-peephole.ll [deleted file]
test/CodeGen/ARM64/anyregcc-crash.ll [deleted file]
test/CodeGen/ARM64/anyregcc.ll [deleted file]
test/CodeGen/ARM64/arith-saturating.ll [deleted file]
test/CodeGen/ARM64/arith.ll [deleted file]
test/CodeGen/ARM64/arm64-dead-def-elimination-flag.ll [deleted file]
test/CodeGen/ARM64/atomic-128.ll [deleted file]
test/CodeGen/ARM64/atomic.ll [deleted file]
test/CodeGen/ARM64/basic-pic.ll [deleted file]
test/CodeGen/ARM64/big-endian-bitconverts.ll [deleted file]
test/CodeGen/ARM64/big-endian-eh.ll [deleted file]
test/CodeGen/ARM64/big-endian-varargs.ll [deleted file]
test/CodeGen/ARM64/big-endian-vector-callee.ll [deleted file]
test/CodeGen/ARM64/big-endian-vector-caller.ll [deleted file]
test/CodeGen/ARM64/big-imm-offsets.ll [deleted file]
test/CodeGen/ARM64/big-stack.ll [deleted file]
test/CodeGen/ARM64/bitfield-extract.ll [deleted file]
test/CodeGen/ARM64/blockaddress.ll [deleted file]
test/CodeGen/ARM64/build-vector.ll [deleted file]
test/CodeGen/ARM64/call-tailcalls.ll [deleted file]
test/CodeGen/ARM64/cast-opt.ll [deleted file]
test/CodeGen/ARM64/ccmp-heuristics.ll [deleted file]
test/CodeGen/ARM64/ccmp.ll [deleted file]
test/CodeGen/ARM64/clrsb.ll [deleted file]
test/CodeGen/ARM64/coalesce-ext.ll [deleted file]
test/CodeGen/ARM64/code-model-large-abs.ll [deleted file]
test/CodeGen/ARM64/collect-loh-garbage-crash.ll [deleted file]
test/CodeGen/ARM64/collect-loh-str.ll [deleted file]
test/CodeGen/ARM64/collect-loh.ll [deleted file]
test/CodeGen/ARM64/compact-unwind-unhandled-cfi.S [deleted file]
test/CodeGen/ARM64/complex-copy-noneon.ll [deleted file]
test/CodeGen/ARM64/complex-ret.ll [deleted file]
test/CodeGen/ARM64/const-addr.ll [deleted file]
test/CodeGen/ARM64/convert-v2f64-v2i32.ll [deleted file]
test/CodeGen/ARM64/convert-v2i32-v2f64.ll [deleted file]
test/CodeGen/ARM64/copy-tuple.ll [deleted file]
test/CodeGen/ARM64/crc32.ll [deleted file]
test/CodeGen/ARM64/crypto.ll [deleted file]
test/CodeGen/ARM64/cse.ll [deleted file]
test/CodeGen/ARM64/csel.ll [deleted file]
test/CodeGen/ARM64/cvt.ll [deleted file]
test/CodeGen/ARM64/dagcombiner-convergence.ll [deleted file]
test/CodeGen/ARM64/dagcombiner-dead-indexed-load.ll [deleted file]
test/CodeGen/ARM64/dagcombiner-indexed-load.ll [deleted file]
test/CodeGen/ARM64/dagcombiner-load-slicing.ll [deleted file]
test/CodeGen/ARM64/dead-def-frame-index.ll [deleted file]
test/CodeGen/ARM64/dead-register-def-bug.ll [deleted file]
test/CodeGen/ARM64/dup.ll [deleted file]
test/CodeGen/ARM64/early-ifcvt.ll [deleted file]
test/CodeGen/ARM64/elf-calls.ll [deleted file]
test/CodeGen/ARM64/elf-constpool.ll [deleted file]
test/CodeGen/ARM64/elf-globals.ll [deleted file]
test/CodeGen/ARM64/ext.ll [deleted file]
test/CodeGen/ARM64/extend-int-to-fp.ll [deleted file]
test/CodeGen/ARM64/extend.ll [deleted file]
test/CodeGen/ARM64/extern-weak.ll [deleted file]
test/CodeGen/ARM64/extload-knownzero.ll [deleted file]
test/CodeGen/ARM64/extract.ll [deleted file]
test/CodeGen/ARM64/extract_subvector.ll [deleted file]
test/CodeGen/ARM64/fast-isel-addr-offset.ll [deleted file]
test/CodeGen/ARM64/fast-isel-alloca.ll [deleted file]
test/CodeGen/ARM64/fast-isel-br.ll [deleted file]
test/CodeGen/ARM64/fast-isel-call.ll [deleted file]
test/CodeGen/ARM64/fast-isel-conversion.ll [deleted file]
test/CodeGen/ARM64/fast-isel-fcmp.ll [deleted file]
test/CodeGen/ARM64/fast-isel-gv.ll [deleted file]
test/CodeGen/ARM64/fast-isel-icmp.ll [deleted file]
test/CodeGen/ARM64/fast-isel-indirectbr.ll [deleted file]
test/CodeGen/ARM64/fast-isel-intrinsic.ll [deleted file]
test/CodeGen/ARM64/fast-isel-materialize.ll [deleted file]
test/CodeGen/ARM64/fast-isel-noconvert.ll [deleted file]
test/CodeGen/ARM64/fast-isel-rem.ll [deleted file]
test/CodeGen/ARM64/fast-isel-ret.ll [deleted file]
test/CodeGen/ARM64/fast-isel-select.ll [deleted file]
test/CodeGen/ARM64/fast-isel.ll [deleted file]
test/CodeGen/ARM64/fastcc-tailcall.ll [deleted file]
test/CodeGen/ARM64/fastisel-gep-promote-before-add.ll [deleted file]
test/CodeGen/ARM64/fcmp-opt.ll [deleted file]
test/CodeGen/ARM64/fcopysign.ll [deleted file]
test/CodeGen/ARM64/fixed-point-scalar-cvt-dagcombine.ll [deleted file]
test/CodeGen/ARM64/fmadd.ll [deleted file]
test/CodeGen/ARM64/fmax.ll [deleted file]
test/CodeGen/ARM64/fminv.ll [deleted file]
test/CodeGen/ARM64/fmuladd.ll [deleted file]
test/CodeGen/ARM64/fold-address.ll [deleted file]
test/CodeGen/ARM64/fold-lsl.ll [deleted file]
test/CodeGen/ARM64/fp-contract-zero.ll [deleted file]
test/CodeGen/ARM64/fp-imm.ll [deleted file]
test/CodeGen/ARM64/fp.ll [deleted file]
test/CodeGen/ARM64/fp128-folding.ll [deleted file]
test/CodeGen/ARM64/fp128.ll [deleted file]
test/CodeGen/ARM64/frame-index.ll [deleted file]
test/CodeGen/ARM64/frameaddr.ll [deleted file]
test/CodeGen/ARM64/global-address.ll [deleted file]
test/CodeGen/ARM64/hello.ll [deleted file]
test/CodeGen/ARM64/i16-subreg-extract.ll [deleted file]
test/CodeGen/ARM64/icmp-opt.ll [deleted file]
test/CodeGen/ARM64/illegal-float-ops.ll [deleted file]
test/CodeGen/ARM64/indexed-memory.ll [deleted file]
test/CodeGen/ARM64/indexed-vector-ldst-2.ll [deleted file]
test/CodeGen/ARM64/indexed-vector-ldst.ll [deleted file]
test/CodeGen/ARM64/inline-asm-error-I.ll [deleted file]
test/CodeGen/ARM64/inline-asm-error-J.ll [deleted file]
test/CodeGen/ARM64/inline-asm-error-K.ll [deleted file]
test/CodeGen/ARM64/inline-asm-error-L.ll [deleted file]
test/CodeGen/ARM64/inline-asm-error-M.ll [deleted file]
test/CodeGen/ARM64/inline-asm-error-N.ll [deleted file]
test/CodeGen/ARM64/inline-asm-zero-reg-error.ll [deleted file]
test/CodeGen/ARM64/inline-asm.ll [deleted file]
test/CodeGen/ARM64/join-reserved.ll [deleted file]
test/CodeGen/ARM64/jumptable.ll [deleted file]
test/CodeGen/ARM64/ld1.ll [deleted file]
test/CodeGen/ARM64/ldp.ll [deleted file]
test/CodeGen/ARM64/ldur.ll [deleted file]
test/CodeGen/ARM64/ldxr-stxr.ll [deleted file]
test/CodeGen/ARM64/leaf.ll [deleted file]
test/CodeGen/ARM64/lit.local.cfg [deleted file]
test/CodeGen/ARM64/long-shift.ll [deleted file]
test/CodeGen/ARM64/memcpy-inline.ll [deleted file]
test/CodeGen/ARM64/memset-inline.ll [deleted file]
test/CodeGen/ARM64/memset-to-bzero.ll [deleted file]
test/CodeGen/ARM64/misched-basic-A53.ll [deleted file]
test/CodeGen/ARM64/misched-forwarding-A53.ll [deleted file]
test/CodeGen/ARM64/movi.ll [deleted file]
test/CodeGen/ARM64/mul.ll [deleted file]
test/CodeGen/ARM64/named-reg-alloc.ll [deleted file]
test/CodeGen/ARM64/named-reg-notareg.ll [deleted file]
test/CodeGen/ARM64/neg.ll [deleted file]
test/CodeGen/ARM64/neon-compare-instructions.ll [deleted file]
test/CodeGen/ARM64/neon-v1i1-setcc.ll [deleted file]
test/CodeGen/ARM64/patchpoint.ll [deleted file]
test/CodeGen/ARM64/pic-local-symbol.ll [deleted file]
test/CodeGen/ARM64/platform-reg.ll [deleted file]
test/CodeGen/ARM64/popcnt.ll [deleted file]
test/CodeGen/ARM64/prefetch.ll [deleted file]
test/CodeGen/ARM64/promote-const.ll [deleted file]
test/CodeGen/ARM64/redzone.ll [deleted file]
test/CodeGen/ARM64/reg-copy-noneon.ll [deleted file]
test/CodeGen/ARM64/register-offset-addressing.ll [deleted file]
test/CodeGen/ARM64/register-pairing.ll [deleted file]
test/CodeGen/ARM64/regress-f128csel-flags.ll [deleted file]
test/CodeGen/ARM64/regress-interphase-shift.ll [deleted file]
test/CodeGen/ARM64/return-vector.ll [deleted file]
test/CodeGen/ARM64/returnaddr.ll [deleted file]
test/CodeGen/ARM64/rev.ll [deleted file]
test/CodeGen/ARM64/rounding.ll [deleted file]
test/CodeGen/ARM64/scaled_iv.ll [deleted file]
test/CodeGen/ARM64/scvt.ll [deleted file]
test/CodeGen/ARM64/shifted-sext.ll [deleted file]
test/CodeGen/ARM64/simd-scalar-to-vector.ll [deleted file]
test/CodeGen/ARM64/simplest-elf.ll [deleted file]
test/CodeGen/ARM64/sincos.ll [deleted file]
test/CodeGen/ARM64/sitofp-combine-chains.ll [deleted file]
test/CodeGen/ARM64/sli-sri-opt.ll [deleted file]
test/CodeGen/ARM64/smaxv.ll [deleted file]
test/CodeGen/ARM64/sminv.ll [deleted file]
test/CodeGen/ARM64/spill-lr.ll [deleted file]
test/CodeGen/ARM64/spill.ll [deleted file]
test/CodeGen/ARM64/st1.ll [deleted file]
test/CodeGen/ARM64/stack-no-frame.ll [deleted file]
test/CodeGen/ARM64/stackmap.ll [deleted file]
test/CodeGen/ARM64/stackpointer.ll [deleted file]
test/CodeGen/ARM64/stacksave.ll [deleted file]
test/CodeGen/ARM64/stp.ll [deleted file]
test/CodeGen/ARM64/strict-align.ll [deleted file]
test/CodeGen/ARM64/stur.ll [deleted file]
test/CodeGen/ARM64/subsections.ll [deleted file]
test/CodeGen/ARM64/subvector-extend.ll [deleted file]
test/CodeGen/ARM64/swizzle-tbl-i16-layout.ll [deleted file]
test/CodeGen/ARM64/tbl.ll [deleted file]
test/CodeGen/ARM64/this-return.ll [deleted file]
test/CodeGen/ARM64/tls-darwin.ll [deleted file]
test/CodeGen/ARM64/tls-dynamic-together.ll [deleted file]
test/CodeGen/ARM64/tls-dynamics.ll [deleted file]
test/CodeGen/ARM64/tls-execs.ll [deleted file]
test/CodeGen/ARM64/trap.ll [deleted file]
test/CodeGen/ARM64/trn.ll [deleted file]
test/CodeGen/ARM64/trunc-store.ll [deleted file]
test/CodeGen/ARM64/umaxv.ll [deleted file]
test/CodeGen/ARM64/uminv.ll [deleted file]
test/CodeGen/ARM64/umov.ll [deleted file]
test/CodeGen/ARM64/unaligned_ldst.ll [deleted file]
test/CodeGen/ARM64/uzp.ll [deleted file]
test/CodeGen/ARM64/vaargs.ll [deleted file]
test/CodeGen/ARM64/vabs.ll [deleted file]
test/CodeGen/ARM64/vadd.ll [deleted file]
test/CodeGen/ARM64/vaddlv.ll [deleted file]
test/CodeGen/ARM64/vaddv.ll [deleted file]
test/CodeGen/ARM64/variadic-aapcs.ll [deleted file]
test/CodeGen/ARM64/vbitwise.ll [deleted file]
test/CodeGen/ARM64/vclz.ll [deleted file]
test/CodeGen/ARM64/vcmp.ll [deleted file]
test/CodeGen/ARM64/vcnt.ll [deleted file]
test/CodeGen/ARM64/vcombine.ll [deleted file]
test/CodeGen/ARM64/vcvt.ll [deleted file]
test/CodeGen/ARM64/vcvt_f.ll [deleted file]
test/CodeGen/ARM64/vcvt_f32_su32.ll [deleted file]
test/CodeGen/ARM64/vcvt_n.ll [deleted file]
test/CodeGen/ARM64/vcvt_su32_f32.ll [deleted file]
test/CodeGen/ARM64/vcvtxd_f32_f64.ll [deleted file]
test/CodeGen/ARM64/vecCmpBr.ll [deleted file]
test/CodeGen/ARM64/vecFold.ll [deleted file]
test/CodeGen/ARM64/vector-ext.ll [deleted file]
test/CodeGen/ARM64/vector-imm.ll [deleted file]
test/CodeGen/ARM64/vector-insertion.ll [deleted file]
test/CodeGen/ARM64/vector-ldst.ll [deleted file]
test/CodeGen/ARM64/vext.ll [deleted file]
test/CodeGen/ARM64/vext_reverse.ll [deleted file]
test/CodeGen/ARM64/vfloatintrinsics.ll [deleted file]
test/CodeGen/ARM64/vhadd.ll [deleted file]
test/CodeGen/ARM64/vhsub.ll [deleted file]
test/CodeGen/ARM64/virtual_base.ll [deleted file]
test/CodeGen/ARM64/vmax.ll [deleted file]
test/CodeGen/ARM64/vminmaxnm.ll [deleted file]
test/CodeGen/ARM64/vmovn.ll [deleted file]
test/CodeGen/ARM64/vmul.ll [deleted file]
test/CodeGen/ARM64/volatile.ll [deleted file]
test/CodeGen/ARM64/vpopcnt.ll [deleted file]
test/CodeGen/ARM64/vqadd.ll [deleted file]
test/CodeGen/ARM64/vqsub.ll [deleted file]
test/CodeGen/ARM64/vselect.ll [deleted file]
test/CodeGen/ARM64/vsetcc_fp.ll [deleted file]
test/CodeGen/ARM64/vshift.ll [deleted file]
test/CodeGen/ARM64/vshr.ll [deleted file]
test/CodeGen/ARM64/vshuffle.ll [deleted file]
test/CodeGen/ARM64/vsqrt.ll [deleted file]
test/CodeGen/ARM64/vsra.ll [deleted file]
test/CodeGen/ARM64/vsub.ll [deleted file]
test/CodeGen/ARM64/weak-reference.ll [deleted file]
test/CodeGen/ARM64/xaluo.ll [deleted file]
test/CodeGen/ARM64/zero-cycle-regmov.ll [deleted file]
test/CodeGen/ARM64/zero-cycle-zeroing.ll [deleted file]
test/CodeGen/ARM64/zext.ll [deleted file]
test/CodeGen/ARM64/zextload-unscaled.ll [deleted file]
test/CodeGen/ARM64/zip.ll [deleted file]
test/DebugInfo/AArch64/struct_by_value.ll [new file with mode: 0644]
test/DebugInfo/ARM64/lit.local.cfg [deleted file]
test/DebugInfo/ARM64/struct_by_value.ll [deleted file]
test/MC/AArch64/adrp-relocation.s
test/MC/AArch64/arm64-adr.s [new file with mode: 0644]
test/MC/AArch64/arm64-advsimd.s [new file with mode: 0644]
test/MC/AArch64/arm64-aliases.s [new file with mode: 0644]
test/MC/AArch64/arm64-arithmetic-encoding.s [new file with mode: 0644]
test/MC/AArch64/arm64-arm64-fixup.s [new file with mode: 0644]
test/MC/AArch64/arm64-basic-a64-instructions.s [new file with mode: 0644]
test/MC/AArch64/arm64-be-datalayout.s [new file with mode: 0644]
test/MC/AArch64/arm64-bitfield-encoding.s [new file with mode: 0644]
test/MC/AArch64/arm64-branch-encoding.s [new file with mode: 0644]
test/MC/AArch64/arm64-condbr-without-dots.s [new file with mode: 0644]
test/MC/AArch64/arm64-crypto.s [new file with mode: 0644]
test/MC/AArch64/arm64-diagno-predicate.s [new file with mode: 0644]
test/MC/AArch64/arm64-diags.s [new file with mode: 0644]
test/MC/AArch64/arm64-directive_loh.s [new file with mode: 0644]
test/MC/AArch64/arm64-elf-reloc-condbr.s [new file with mode: 0644]
test/MC/AArch64/arm64-elf-relocs.s [new file with mode: 0644]
test/MC/AArch64/arm64-fp-encoding.s [new file with mode: 0644]
test/MC/AArch64/arm64-large-relocs.s [new file with mode: 0644]
test/MC/AArch64/arm64-leaf-compact-unwind.s [new file with mode: 0644]
test/MC/AArch64/arm64-logical-encoding.s [new file with mode: 0644]
test/MC/AArch64/arm64-mapping-across-sections.s [new file with mode: 0644]
test/MC/AArch64/arm64-mapping-within-section.s [new file with mode: 0644]
test/MC/AArch64/arm64-memory.s [new file with mode: 0644]
test/MC/AArch64/arm64-nv-cond.s [new file with mode: 0644]
test/MC/AArch64/arm64-optional-hash.s [new file with mode: 0644]
test/MC/AArch64/arm64-separator.s [new file with mode: 0644]
test/MC/AArch64/arm64-simd-ldst.s [new file with mode: 0644]
test/MC/AArch64/arm64-small-data-fixups.s [new file with mode: 0644]
test/MC/AArch64/arm64-spsel-sysreg.s [new file with mode: 0644]
test/MC/AArch64/arm64-system-encoding.s [new file with mode: 0644]
test/MC/AArch64/arm64-target-specific-sysreg.s [new file with mode: 0644]
test/MC/AArch64/arm64-tls-modifiers-darwin.s [new file with mode: 0644]
test/MC/AArch64/arm64-tls-relocs.s [new file with mode: 0644]
test/MC/AArch64/arm64-v128_lo-diagnostics.s [new file with mode: 0644]
test/MC/AArch64/arm64-variable-exprs.s [new file with mode: 0644]
test/MC/AArch64/arm64-vector-lists.s [new file with mode: 0644]
test/MC/AArch64/arm64-verbose-vector-case.s [new file with mode: 0644]
test/MC/AArch64/basic-a64-diagnostics.s
test/MC/AArch64/basic-a64-instructions.s
test/MC/AArch64/basic-pic.s
test/MC/AArch64/elf-extern.s
test/MC/AArch64/elf-objdump.s
test/MC/AArch64/elf-reloc-addsubimm.s
test/MC/AArch64/elf-reloc-ldrlit.s
test/MC/AArch64/elf-reloc-ldstunsimm.s
test/MC/AArch64/elf-reloc-movw.s
test/MC/AArch64/elf-reloc-pcreladdressing.s
test/MC/AArch64/elf-reloc-tstb.s
test/MC/AArch64/elf-reloc-uncondbrimm.s
test/MC/AArch64/gicv3-regs-diagnostics.s
test/MC/AArch64/gicv3-regs.s
test/MC/AArch64/inline-asm-modifiers.s
test/MC/AArch64/jump-table.s
test/MC/AArch64/lit.local.cfg
test/MC/AArch64/mapping-across-sections.s
test/MC/AArch64/mapping-within-section.s
test/MC/AArch64/neon-3vdiff.s
test/MC/AArch64/neon-aba-abd.s
test/MC/AArch64/neon-add-pairwise.s
test/MC/AArch64/neon-add-sub-instructions.s
test/MC/AArch64/neon-bitwise-instructions.s
test/MC/AArch64/neon-compare-instructions.s
test/MC/AArch64/neon-diagnostics.s
test/MC/AArch64/neon-facge-facgt.s
test/MC/AArch64/neon-frsqrt-frecp.s
test/MC/AArch64/neon-halving-add-sub.s
test/MC/AArch64/neon-max-min-pairwise.s
test/MC/AArch64/neon-max-min.s
test/MC/AArch64/neon-mla-mls-instructions.s
test/MC/AArch64/neon-mov.s
test/MC/AArch64/neon-mul-div-instructions.s
test/MC/AArch64/neon-rounding-halving-add.s
test/MC/AArch64/neon-rounding-shift.s
test/MC/AArch64/neon-saturating-add-sub.s
test/MC/AArch64/neon-saturating-rounding-shift.s
test/MC/AArch64/neon-saturating-shift.s
test/MC/AArch64/neon-scalar-abs.s
test/MC/AArch64/neon-scalar-add-sub.s
test/MC/AArch64/neon-scalar-by-elem-mla.s
test/MC/AArch64/neon-scalar-by-elem-mul.s
test/MC/AArch64/neon-scalar-by-elem-saturating-mla.s
test/MC/AArch64/neon-scalar-by-elem-saturating-mul.s
test/MC/AArch64/neon-scalar-compare.s
test/MC/AArch64/neon-scalar-cvt.s
test/MC/AArch64/neon-scalar-dup.s
test/MC/AArch64/neon-scalar-extract-narrow.s
test/MC/AArch64/neon-scalar-fp-compare.s
test/MC/AArch64/neon-scalar-mul.s
test/MC/AArch64/neon-scalar-neg.s
test/MC/AArch64/neon-scalar-recip.s
test/MC/AArch64/neon-scalar-reduce-pairwise.s
test/MC/AArch64/neon-scalar-rounding-shift.s
test/MC/AArch64/neon-scalar-saturating-add-sub.s
test/MC/AArch64/neon-scalar-saturating-rounding-shift.s
test/MC/AArch64/neon-scalar-saturating-shift.s
test/MC/AArch64/neon-scalar-shift-imm.s
test/MC/AArch64/neon-scalar-shift.s
test/MC/AArch64/neon-shift-left-long.s
test/MC/AArch64/neon-shift.s
test/MC/AArch64/neon-simd-copy.s
test/MC/AArch64/neon-simd-shift.s
test/MC/AArch64/neon-sxtl.s
test/MC/AArch64/neon-uxtl.s
test/MC/AArch64/noneon-diagnostics.s
test/MC/AArch64/optional-hash.s
test/MC/AArch64/tls-relocs.s
test/MC/AArch64/trace-regs-diagnostics.s
test/MC/AArch64/trace-regs.s
test/MC/ARM64/adr.s [deleted file]
test/MC/ARM64/advsimd.s [deleted file]
test/MC/ARM64/aliases.s [deleted file]
test/MC/ARM64/arithmetic-encoding.s [deleted file]
test/MC/ARM64/arm64-fixup.s [deleted file]
test/MC/ARM64/basic-a64-instructions.s [deleted file]
test/MC/ARM64/be-datalayout.s [deleted file]
test/MC/ARM64/bitfield-encoding.s [deleted file]
test/MC/ARM64/branch-encoding.s [deleted file]
test/MC/ARM64/condbr-without-dots.s [deleted file]
test/MC/ARM64/crypto.s [deleted file]
test/MC/ARM64/diagno-predicate.s [deleted file]
test/MC/ARM64/diags.s [deleted file]
test/MC/ARM64/directive_loh.s [deleted file]
test/MC/ARM64/elf-reloc-condbr.s [deleted file]
test/MC/ARM64/elf-relocs.s [deleted file]
test/MC/ARM64/fp-encoding.s [deleted file]
test/MC/ARM64/large-relocs.s [deleted file]
test/MC/ARM64/leaf-compact-unwind.s [deleted file]
test/MC/ARM64/lit.local.cfg [deleted file]
test/MC/ARM64/logical-encoding.s [deleted file]
test/MC/ARM64/mapping-across-sections.s [deleted file]
test/MC/ARM64/mapping-within-section.s [deleted file]
test/MC/ARM64/memory.s [deleted file]
test/MC/ARM64/nv-cond.s [deleted file]
test/MC/ARM64/optional-hash.s [deleted file]
test/MC/ARM64/separator.s [deleted file]
test/MC/ARM64/simd-ldst.s [deleted file]
test/MC/ARM64/small-data-fixups.s [deleted file]
test/MC/ARM64/spsel-sysreg.s [deleted file]
test/MC/ARM64/system-encoding.s [deleted file]
test/MC/ARM64/target-specific-sysreg.s [deleted file]
test/MC/ARM64/tls-modifiers-darwin.s [deleted file]
test/MC/ARM64/tls-relocs.s [deleted file]
test/MC/ARM64/v128_lo-diagnostics.s [deleted file]
test/MC/ARM64/variable-exprs.s [deleted file]
test/MC/ARM64/vector-lists.s [deleted file]
test/MC/ARM64/verbose-vector-case.s [deleted file]
test/MC/Disassembler/AArch64/arm64-advsimd.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-arithmetic.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-basic-a64-undefined.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-bitfield.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-branch.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-canonical-form.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-crc32.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-crypto.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-invalid-logical.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-logical.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-memory.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-non-apple-fmov.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-scalar-fp.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/arm64-system.txt [new file with mode: 0644]
test/MC/Disassembler/AArch64/lit.local.cfg
test/MC/Disassembler/ARM64/advsimd.txt [deleted file]
test/MC/Disassembler/ARM64/arithmetic.txt [deleted file]
test/MC/Disassembler/ARM64/basic-a64-undefined.txt [deleted file]
test/MC/Disassembler/ARM64/bitfield.txt [deleted file]
test/MC/Disassembler/ARM64/branch.txt [deleted file]
test/MC/Disassembler/ARM64/canonical-form.txt [deleted file]
test/MC/Disassembler/ARM64/crc32.txt [deleted file]
test/MC/Disassembler/ARM64/crypto.txt [deleted file]
test/MC/Disassembler/ARM64/invalid-logical.txt [deleted file]
test/MC/Disassembler/ARM64/lit.local.cfg [deleted file]
test/MC/Disassembler/ARM64/logical.txt [deleted file]
test/MC/Disassembler/ARM64/memory.txt [deleted file]
test/MC/Disassembler/ARM64/non-apple-fmov.txt [deleted file]
test/MC/Disassembler/ARM64/scalar-fp.txt [deleted file]
test/MC/Disassembler/ARM64/system.txt [deleted file]
test/MC/MachO/AArch64/darwin-ARM64-local-label-diff.s [new file with mode: 0644]
test/MC/MachO/AArch64/darwin-ARM64-reloc.s [new file with mode: 0644]
test/MC/MachO/AArch64/lit.local.cfg [new file with mode: 0644]
test/MC/MachO/ARM64/darwin-ARM64-local-label-diff.s [deleted file]
test/MC/MachO/ARM64/darwin-ARM64-reloc.s [deleted file]
test/MC/MachO/ARM64/lit.local.cfg [deleted file]
test/Transforms/ConstantHoisting/AArch64/const-addr.ll [new file with mode: 0644]
test/Transforms/ConstantHoisting/AArch64/large-immediate.ll [new file with mode: 0644]
test/Transforms/ConstantHoisting/AArch64/lit.local.cfg [new file with mode: 0644]
test/Transforms/ConstantHoisting/ARM64/const-addr.ll [deleted file]
test/Transforms/ConstantHoisting/ARM64/large-immediate.ll [deleted file]
test/Transforms/ConstantHoisting/ARM64/lit.local.cfg [deleted file]
test/Transforms/GlobalMerge/AArch64/arm64.ll [new file with mode: 0644]
test/Transforms/GlobalMerge/AArch64/lit.local.cfg [new file with mode: 0644]
test/Transforms/GlobalMerge/ARM64/arm64.ll [deleted file]
test/Transforms/GlobalMerge/ARM64/lit.local.cfg [deleted file]
test/Transforms/InstCombine/2012-04-23-Neon-Intrinsics.ll
test/Transforms/LoopStrengthReduce/AArch64/lit.local.cfg [new file with mode: 0644]
test/Transforms/LoopStrengthReduce/AArch64/lsr-memcpy.ll [new file with mode: 0644]
test/Transforms/LoopStrengthReduce/AArch64/lsr-memset.ll [new file with mode: 0644]
test/Transforms/LoopStrengthReduce/AArch64/req-regs.ll [new file with mode: 0644]
test/Transforms/LoopStrengthReduce/ARM64/lit.local.cfg [deleted file]
test/Transforms/LoopStrengthReduce/ARM64/lsr-memcpy.ll [deleted file]
test/Transforms/LoopStrengthReduce/ARM64/lsr-memset.ll [deleted file]
test/Transforms/LoopStrengthReduce/ARM64/req-regs.ll [deleted file]
test/Transforms/LoopVectorize/AArch64/arm64-unroll.ll [new file with mode: 0644]
test/Transforms/LoopVectorize/AArch64/gather-cost.ll [new file with mode: 0644]
test/Transforms/LoopVectorize/ARM64/arm64-unroll.ll [deleted file]
test/Transforms/LoopVectorize/ARM64/gather-cost.ll [deleted file]
test/Transforms/LoopVectorize/ARM64/lit.local.cfg [deleted file]
test/Transforms/SLPVectorizer/AArch64/lit.local.cfg [new file with mode: 0644]
test/Transforms/SLPVectorizer/AArch64/mismatched-intrinsics.ll [new file with mode: 0644]
test/Transforms/SLPVectorizer/ARM64/lit.local.cfg [deleted file]
test/Transforms/SLPVectorizer/ARM64/mismatched-intrinsics.ll [deleted file]