llvm-6502/test/CodeGen/R600
Tom Stellard 99d8179a9b R600: Initialize AMDGPUMachineFunction::ShaderType to ShaderType::COMPUTE
We need to intialize this to something and since clang does not set
the shader type attribute and clang is used only for compute shaders,
initializing it to COMPUTE seems like the best choice.

Reviewed-by: Christian König <christian.koenig@amd.com>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180620 91177308-0d34-0410-b5e6-96231b3b80d8
2013-04-26 18:32:24 +00:00
..
128bit-kernel-args.ll
add.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
alu-split.ll
and.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
bfi_int.ll R600: Add pattern for the BFI_INT instruction 2013-04-19 02:11:06 +00:00
dagcombiner-bug-illegal-vec4-int-to-fp.ll
disconnected-predset-break-bug.ll
elf.ll R600: Initialize AMDGPUMachineFunction::ShaderType to ShaderType::COMPUTE 2013-04-26 18:32:24 +00:00
elf.r600.ll R600: Use .AMDGPU.config section to emit stacksize 2013-04-23 17:34:12 +00:00
fabs.ll
fadd.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
fcmp-cnd.ll
fcmp-cnde-int-args.ll
fcmp.ll
fdiv.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
floor.ll
fmad.ll
fmax.ll
fmin.ll
fmul.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
fmul.v4f32.ll
fp_to_sint.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
fp_to_uint.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
fsub.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
i8-to-double-to-float.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
icmp-select-sete-reverse-args.ll
imm.ll
jump-address.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
kcache-fold.ll
legalizedag-bug-expand-setcc.ll
lit.local.cfg
literals.ll
llvm.AMDGPU.mul.ll
llvm.AMDGPU.tex.ll
llvm.AMDGPU.trunc.ll
llvm.cos.ll
llvm.pow.ll
llvm.SI.fs.interp.constant.ll
llvm.SI.sample.ll
llvm.sin.ll
load.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
loop-address.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
lshl.ll
lshr.ll
mulhu.ll
predicates.ll
README R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
reciprocal.ll
schedule-fs-loop-nested-if.ll
schedule-fs-loop-nested.ll
schedule-fs-loop.ll
schedule-if-2.ll
schedule-if.ll
schedule-vs-if-nested-loop.ll llvm/test/CodeGen/R600/schedule-*.ll: Let them require +Asserts. 2013-03-11 23:16:30 +00:00
sdiv.ll R600: Add CF_END 2013-04-23 17:34:00 +00:00
selectcc-cnd.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
selectcc-cnde-int.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
selectcc-icmp-select-float.ll
selectcc-opt.ll
set-dx10.ll
setcc.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
seto.ll
setuo.ll
short-args.ll
sint_to_fp.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
store.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
store.r600.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
udiv.ll R600: Add CF_END 2013-04-23 17:34:00 +00:00
uint_to_fp.ll R600: Reorganize lit tests and document how they should be organized 2013-04-19 02:10:53 +00:00
unsupported-cc.ll
urecip.ll
urem.ll R600: Add CF_END 2013-04-23 17:34:00 +00:00

+==============================================================================+
| How to organize the lit tests                                                |
+==============================================================================+

- If you write a test for matching a single DAG opcode or intrinsic, it should
  go in a file called {opcode_name,intrinsic_name}.ll (e.g. fadd.ll)

- If you write a test that matches several DAG opcodes and checks for a single
  ISA instruction, then that test should go in a file called {ISA_name}.ll (e.g.
  bfi_int.ll

- For all other tests, use your best judgement for organizing tests and naming
  the files.

+==============================================================================+
| Naming conventions                                                           |
+==============================================================================+

- Use dash '-' and not underscore '_' to separate words in file names, unless
  the file is named after a DAG opcode or ISA instruction that has an
  underscore '_' in its name.