llvm-6502/test/CodeGen/R600
Benjamin Kramer ccdb9c9483 Fix broken CHECK lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199016 91177308-0d34-0410-b5e6-96231b3b80d8
2014-01-11 21:06:00 +00:00
..
32-bit-local-address-space.ll
64bit-kernel-args.ll
128bit-kernel-args.ll
add_i64.ll
add.ll
address-space.ll
and.ll
array-ptr-calc-i32.ll
array-ptr-calc-i64.ll
atomic_load_add.ll
atomic_load_sub.ll
bfe_uint.ll
bfi_int.ll
big_alu.ll
bitcast.ll
build_vector.ll
call_fs.ll
cayman-loop-bug.ll
cf_end.ll
combine_vloads.ll
complex-folding.ll
dagcombiner-bug-illegal-vec4-int-to-fp.ll
disconnected-predset-break-bug.ll
dot4-folding.ll
elf.ll
elf.r600.ll
extload.ll
fabs.ll
fadd64.ll
fadd.ll
fcmp64.ll
fcmp-cnd.ll
fcmp-cnde-int-args.ll
fcmp.ll
fconst64.ll
fdiv64.ll
fdiv.ll
fetch-limits.r600.ll
fetch-limits.r700+.ll
floor.ll
fma.ll
fmad.ll
fmax.ll
fmin.ll
fmul64.ll
fmul.ll
fmuladd.ll
fneg.ll
fp64_to_sint.ll
fp_to_sint.ll
fp_to_uint.ll
fpext.ll
fptrunc.ll
fsqrt.ll
fsub64.ll
fsub.ll
gep-address-space.ll Fix broken CHECK lines. 2014-01-11 21:06:00 +00:00
i8-to-double-to-float.ll
icmp64.ll
icmp-select-sete-reverse-args.ll
imm.ll
indirect-addressing-si.ll
insert_vector_elt.ll
jump-address.ll
kcache-fold.ll
kernel-args.ll
lds-output-queue.ll Fix broken CHECK lines. 2014-01-11 21:06:00 +00:00
lds-size.ll
legalizedag-bug-expand-setcc.ll
lit.local.cfg
literals.ll
llvm.AMDGPU.barrier.local.ll
llvm.AMDGPU.cube.ll
llvm.AMDGPU.imax.ll
llvm.AMDGPU.imin.ll
llvm.AMDGPU.mul.ll
llvm.AMDGPU.tex.ll
llvm.AMDGPU.trunc.ll
llvm.AMDGPU.umax.ll
llvm.AMDGPU.umin.ll
llvm.cos.ll
llvm.exp2.ll
llvm.floor.ll
llvm.pow.ll
llvm.rint.ll
llvm.round.ll
llvm.SI.fs.interp.constant.ll
llvm.SI.imageload.ll
llvm.SI.resinfo.ll
llvm.SI.sample-masked.ll
llvm.SI.sample.ll
llvm.SI.sampled.ll
llvm.SI.tbuffer.store.ll Fix broken CHECK lines. 2014-01-11 21:06:00 +00:00
llvm.SI.tid.ll
llvm.sin.ll
llvm.sqrt.ll
llvm.trunc.ll
load64.ll
load-input-fold.ll
load.ll
load.vec.ll
local-memory-two-objects.ll
local-memory.ll Fix broken CHECK lines. 2014-01-11 21:06:00 +00:00
loop-address.ll
lshl.ll
lshr.ll
mad_int24.ll
mad_uint24.ll
max-literals.ll
mul_int24.ll
mul_uint24.ll
mul.ll
mulhu.ll
or.ll
packetizer.ll
parallelandifcollapse.ll
parallelorifcollapse.ll
predicate-dp4.ll
predicates.ll
private-memory.ll Fix broken CHECK lines. 2014-01-11 21:06:00 +00:00
pv-packing.ll
pv.ll
r600-encoding.ll
r600-export-fix.ll
r600-infinite-loop-bug-while-reorganizing-vector.ll
r600cfg.ll
README
reciprocal.ll
register-count-comments.ll
rotr.ll
rv7x0_count3.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
select.ll
selectcc-cnd.ll
selectcc-cnde-int.ll
selectcc-icmp-select-float.ll
selectcc-opt.ll
set-dx10.ll
setcc64.ll
setcc.ll
seto.ll
setuo.ll
sgpr-copy-duplicate-operand.ll
sgpr-copy.ll
shared-op-cycle.ll
shl.ll
si-annotate-cf-assertion.ll
si-lod-bias.ll
si-sgpr-spill.ll
si-vector-hang.ll
sign_extend.ll
sint_to_fp64.ll
sint_to_fp.ll
sra.ll
srl.ll
store-vector-ptrs.ll
store.ll
store.r600.ll
structurize1.ll
structurize.ll
sub.ll
swizzle-export.ll
tex-clause-antidep.ll
texture-input-merge.ll
trunc-vector-store-assertion-failure.ll
trunc.ll
udiv.ll
uint_to_fp.ll
unaligned-load-store.ll
unsupported-cc.ll
urecip.ll
urem.ll
vertex-fetch-encoding.ll
vselect64.ll
vselect.ll
vtx-schedule.ll Fix broken CHECK lines. 2014-01-11 21:06:00 +00:00
wait.ll
work-item-intrinsics.ll
wrong-transalu-pos-fix.ll
xor.ll
zero_extend.ll

+==============================================================================+
| 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.