Extend initial support for primitive types in PTX backend
authorChe-Liang Chiou <clchiou@gmail.com>
Wed, 2 Mar 2011 03:20:28 +0000 (03:20 +0000)
committerChe-Liang Chiou <clchiou@gmail.com>
Wed, 2 Mar 2011 03:20:28 +0000 (03:20 +0000)
commitfd8978b021dbb0b9b09084dcc707c2054ff76280
treecdbd6a22e3787047cdb1edcaa79065a2231b6a9c
parent9ff5de99df4820a128e525e077333047cfe50661
Extend initial support for primitive types in PTX backend

- Allow i16, i32, i64, float, and double types, using the native .u16,
  .u32, .u64, .f32, and .f64 PTX types.
- Allow loading/storing of all primitive types.
- Allow primitive types to be passed as parameters.
- Allow selection of PTX Version and Shader Model as sub-target attributes.
- Merge integer/floating-point test cases for load/store.
- Use .u32 instead of .s32 to conform to output from NVidia nvcc compiler.

Patch by Justin Holewinski

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126824 91177308-0d34-0410-b5e6-96231b3b80d8
19 files changed:
lib/Target/PTX/PTX.td
lib/Target/PTX/PTXAsmPrinter.cpp
lib/Target/PTX/PTXISelDAGToDAG.cpp
lib/Target/PTX/PTXISelLowering.cpp
lib/Target/PTX/PTXInstrInfo.cpp
lib/Target/PTX/PTXInstrInfo.td
lib/Target/PTX/PTXMFInfoExtract.cpp
lib/Target/PTX/PTXRegisterInfo.td
lib/Target/PTX/PTXSubtarget.cpp
lib/Target/PTX/PTXSubtarget.h
test/CodeGen/PTX/add.ll
test/CodeGen/PTX/ld.ll
test/CodeGen/PTX/ld_float.ll [deleted file]
test/CodeGen/PTX/mov.ll
test/CodeGen/PTX/mul.ll
test/CodeGen/PTX/options.ll
test/CodeGen/PTX/st.ll
test/CodeGen/PTX/st_float.ll [deleted file]
test/CodeGen/PTX/sub.ll