llvm-6502/lib/Target/AArch64
Alexey Samsonov b21ab43cfc Revert r194865 and r194874.
This change is incorrect. If you delete virtual destructor of both a base class
and a subclass, then the following code:
  Base *foo = new Child();
  delete foo;
will not cause the destructor for members of Child class. As a result, I observe
plently of memory leaks. Notable examples I investigated are:
ObjectBuffer and ObjectBufferStream, AttributeImpl and StringSAttributeImpl.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194997 91177308-0d34-0410-b5e6-96231b3b80d8
2013-11-18 09:31:53 +00:00
..
AsmParser Hopefully fix uninitialized memory read in AArch64AsmParser found by MSan bootstrap bot 2013-11-15 15:49:30 +00:00
Disassembler
InstPrinter
MCTargetDesc Revert r194865 and r194874. 2013-11-18 09:31:53 +00:00
TargetInfo
Utils
AArch64.h
AArch64.td
AArch64AsmPrinter.cpp
AArch64AsmPrinter.h
AArch64BranchFixupPass.cpp
AArch64CallingConv.td
AArch64FrameLowering.cpp
AArch64FrameLowering.h
AArch64InstrFormats.td Implement AArch64 NEON instruction set AdvSIMD (table). 2013-11-14 01:57:32 +00:00
AArch64InstrInfo.cpp Revert r194865 and r194874. 2013-11-18 09:31:53 +00:00
AArch64InstrInfo.h
AArch64InstrInfo.td
AArch64InstrNEON.td [AArch64 NEON]Add mov alias for simd copy instructions. 2013-11-18 09:20:32 +00:00
AArch64ISelDAGToDAG.cpp Implement the newly added ACLE functions for ld1/st1 with 2/3/4 vectors. 2013-11-18 06:31:53 +00:00
AArch64ISelLowering.cpp Implement the newly added ACLE functions for ld1/st1 with 2/3/4 vectors. 2013-11-18 06:31:53 +00:00
AArch64ISelLowering.h Implement the newly added ACLE functions for ld1/st1 with 2/3/4 vectors. 2013-11-18 06:31:53 +00:00
AArch64MachineFunctionInfo.cpp
AArch64MachineFunctionInfo.h
AArch64MCInstLower.cpp
AArch64RegisterInfo.cpp
AArch64RegisterInfo.h
AArch64RegisterInfo.td
AArch64Schedule.td
AArch64SelectionDAGInfo.cpp
AArch64SelectionDAGInfo.h
AArch64Subtarget.cpp Revert r194865 and r194874. 2013-11-18 09:31:53 +00:00
AArch64Subtarget.h Revert r194865 and r194874. 2013-11-18 09:31:53 +00:00
AArch64TargetMachine.cpp
AArch64TargetMachine.h
AArch64TargetObjectFile.cpp
AArch64TargetObjectFile.h
CMakeLists.txt
LLVMBuild.txt
Makefile
README.txt

This file will contain changes that need to be made before AArch64 can become an
officially supported target. Currently a placeholder.