Add the exit instruction to the PTX target.
authorEric Christopher <echristo@apple.com>
Sat, 18 Sep 2010 18:52:28 +0000 (18:52 +0000)
committerEric Christopher <echristo@apple.com>
Sat, 18 Sep 2010 18:52:28 +0000 (18:52 +0000)
commit50880d08ec32857fa557281046c81a0506e7f64d
tree6c9556b109d89b999fdc92088733123af2ac5bbf
parent168705049c55feec88aec65af0aef07fc1376ce6
Add the exit instruction to the PTX target.

Patch by Che-Liang Chiou <clchiou@gmail.com>!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114294 91177308-0d34-0410-b5e6-96231b3b80d8
24 files changed:
lib/Target/PTX/AsmPrinter/PTXAsmPrinter.cpp
lib/Target/PTX/CMakeLists.txt
lib/Target/PTX/Makefile
lib/Target/PTX/PTX.h
lib/Target/PTX/PTX.td
lib/Target/PTX/PTXISelDAGToDAG.cpp [new file with mode: 0644]
lib/Target/PTX/PTXISelLowering.cpp [new file with mode: 0644]
lib/Target/PTX/PTXISelLowering.h [new file with mode: 0644]
lib/Target/PTX/PTXInstrFormats.td [new file with mode: 0644]
lib/Target/PTX/PTXInstrInfo.cpp [new file with mode: 0644]
lib/Target/PTX/PTXInstrInfo.h [new file with mode: 0644]
lib/Target/PTX/PTXInstrInfo.td [new file with mode: 0644]
lib/Target/PTX/PTXMCAsmInfo.cpp [new file with mode: 0644]
lib/Target/PTX/PTXMCAsmInfo.h [new file with mode: 0644]
lib/Target/PTX/PTXRegisterInfo.cpp [new file with mode: 0644]
lib/Target/PTX/PTXRegisterInfo.h [new file with mode: 0644]
lib/Target/PTX/PTXRegisterInfo.td [new file with mode: 0644]
lib/Target/PTX/PTXSubtarget.cpp [new file with mode: 0644]
lib/Target/PTX/PTXSubtarget.h [new file with mode: 0644]
lib/Target/PTX/PTXTargetMachine.cpp
lib/Target/PTX/PTXTargetMachine.h
lib/Target/PTX/TargetInfo/PTXTargetInfo.cpp
test/CodeGen/PTX/dg.exp [new file with mode: 0644]
test/CodeGen/PTX/exit.ll [new file with mode: 0644]