llvm-6502/test/CodeGen/R600
Manman Ren 2dc50d3067 TBAA: remove !tbaa from testing cases if not used.
This will make it easier to turn on struct-path aware TBAA since the metadata
format will change.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180796 91177308-0d34-0410-b5e6-96231b3b80d8
2013-04-30 17:52:57 +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 R600: use native for alu 2013-04-30 00:14:38 +00:00
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
cf_end.ll R600: Use correct CF_END instruction on Northern Island GPUs 2013-04-29 22:23:58 +00:00
dagcombiner-bug-illegal-vec4-int-to-fp.ll R600: Emit function name in the AsmPrinter 2013-02-05 17:09:11 +00:00
disconnected-predset-break-bug.ll R600: use native for alu 2013-04-30 00:14:38 +00:00
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 R600: Emit CF_ALU and use true kcache register. 2013-04-01 21:47:42 +00:00
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 R600/SI: dynamical figure out the reg class of MIMG 2013-04-10 08:39:16 +00:00
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 TBAA: remove !tbaa from testing cases if not used. 2013-04-30 17:52:57 +00:00
lshl.ll
lshr.ll
mulhu.ll
predicates.ll R600: use native for alu 2013-04-30 00:14:38 +00:00
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
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 R600/SI: Add pattern for AMDGPUurecip 2013-04-10 17:17:56 +00:00
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.