• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D09-Feb-20222.1 KiB2519

check_output.pyH A D09-Feb-202218 KiB531436

framework.hH A D09-Feb-20222.5 KiB7541

glsl_scraper.pyH A D09-Feb-202211.7 KiB340265

helpers.cppH A D09-Feb-202229.1 KiB855711

helpers.hH A D09-Feb-20225.6 KiB168115

main.cppH A D09-Feb-20228.3 KiB309236

meson.buildH A D09-Feb-20222.6 KiB7164

test_assembler.cppH A D09-Feb-202210 KiB269125

test_builder.cppH A D09-Feb-20224.8 KiB12021

test_hard_clause.cppH A D09-Feb-202211.7 KiB394191

test_insert_nops.cppH A D09-Feb-20227.3 KiB16774

test_isel.cppH A D09-Feb-20227.3 KiB188108

test_optimizer.cppH A D09-Feb-202245.3 KiB1,093539

test_optimizer_postRA.cppH A D09-Feb-202217.3 KiB397201

test_regalloc.cppH A D09-Feb-20229.9 KiB289127

test_sdwa.cppH A D09-Feb-202227.1 KiB574273

test_tests.cppH A D09-Feb-20222.4 KiB7934

test_to_hw_instr.cppH A D09-Feb-202233.2 KiB725331

README.md

1Tests are wrapped in a `BEGIN_TEST`/`END_TEST` and write data to the `output` file pointer. Tests have checks against the output. They are single line comments prefixed with certain characters:
2
3- `!` fails the test if the current line does not match the pattern
4- `>>` skips to the first line which matches the pattern, or fails the test if there is none
5- `;` executes python code to extend the pattern syntax by inserting functions into the variable dictionary, fail the test, insert more checks or consume characters from the output
6
7Before this prefix, there can be a `~` to only perform the check for certain
8variants (a regex directly following the `~` is used).
9
10# Pattern Syntax
11Patterns can define variables which can be accessed in both python code and the pattern itself. These are useful for readability or dealing with unstable identifiers in the output. Variable identifiers are sequences of digits, ascii letters or `_` (though they cannot start with a digit).
12
13- `\` can be used to match the following literal character without interpreting it.
14- Most characters expect the same characters in the output.
15- A sequence of spaces in the pattern expects a sequence of spaces or tabs in the output.
16- A `#` in the pattern expects an unsigned integer in the output. The `#` can be followed by an identifier to store the integer in a variable.
17- A `$` in the pattern stores the output until the first whitespace character into a variable.
18- A `%` in the pattern followed by an identifier is the same as a `#` but it expects a `%` before the integer in the output. It basically matches a ACO temporary.
19- A `@` calls a variable as a function. It can be followed by an argument string wrapped in `(` and `)`.
20
21# Functions
22- `s64`, `s96`, `s128`, `v2`, `v3`, etc, expand to a pattern which matches a disassembled instruction's definition or operand. It later checks that the size and alignment is what's expected.
23- `match_func` expands to a sequence of `$` and inserts functions with expand to the extracted output
24- `search_re` consumes the rest of the line and fails the test if the pattern is not found
25