summaryrefslogtreecommitdiff
path: root/test/CodeGen/R600/README
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-04-19 02:10:53 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-04-19 02:10:53 +0000
commit3abd23bac565cdb10fe6dc17e4ee0640462b5660 (patch)
treeaf6b21957c03401af45e850668c0a1578dddfe0e /test/CodeGen/R600/README
parent9affd163611b90113406b8729cc591eaad4778fa (diff)
downloadllvm-3abd23bac565cdb10fe6dc17e4ee0640462b5660.tar.gz
llvm-3abd23bac565cdb10fe6dc17e4ee0640462b5660.tar.bz2
llvm-3abd23bac565cdb10fe6dc17e4ee0640462b5660.tar.xz
R600: Reorganize lit tests and document how they should be organized
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179828 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/README')
-rw-r--r--test/CodeGen/R600/README21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/CodeGen/R600/README b/test/CodeGen/R600/README
new file mode 100644
index 0000000000..96998bba28
--- /dev/null
+++ b/test/CodeGen/R600/README
@@ -0,0 +1,21 @@
++==============================================================================+
+| 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.