• Home
Name Date Size #Lines LOC

..--

README.mdD06-Sep-20242.1 KiB2519

check_output.pyD06-Sep-202418 KiB531436

framework.hD06-Sep-20242.9 KiB7844

glsl_scraper.pyD06-Sep-202411.7 KiB340265

helpers.cppD06-Sep-202436.9 KiB1,100923

helpers.hD06-Sep-20246.8 KiB189134

main.cppD06-Sep-20248.3 KiB307234

meson.buildD06-Sep-20242.7 KiB7669

test_assembler.cppD06-Sep-202444.4 KiB1,117558

test_builder.cppD06-Sep-20244.8 KiB12021

test_d3d11_derivs.cppD06-Sep-202425.1 KiB647340

test_hard_clause.cppD06-Sep-202410.6 KiB363183

test_insert_nops.cppD06-Sep-202454.5 KiB1,332596

test_insert_waitcnt.cppD06-Sep-20242.4 KiB5620

test_isel.cppD06-Sep-20249.4 KiB255152

test_optimizer.cppD06-Sep-202486.6 KiB2,240995

test_optimizer_postRA.cppD06-Sep-202438 KiB951443

test_reduce_assign.cppD06-Sep-20242.4 KiB6520

test_regalloc.cppD06-Sep-202414.9 KiB431201

test_scheduler.cppD06-Sep-20246.5 KiB15088

test_sdwa.cppD06-Sep-202427.4 KiB578281

test_tests.cppD06-Sep-20242.4 KiB7934

test_to_hw_instr.cppD06-Sep-202443.7 KiB893358

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