A Python-native clone of LLVMs FileCheck tool
Project description
filecheck - A Python-native clone of LLVMs FileCheck tool
This tries to be as close a clone of LLVMs FileCheck as possible, without going crazy. It currently passes 1530 out of 1645 (93%) of LLVMs MLIR filecheck tests.
There are some features that are left out for now (e.g.a pseudo-numeric variables and parts of numeric substitution ).
The codebase is fully type checked by pyright
, and automatically formatted using black
. We aim to have tests
covering everything from normal matching down to error messages.
Features:
Here's an overview of all FileCheck features and their implementation status.
- Checks:
- Flags:
-
--check-prefix
-
--check-prefixes
(Tracking: #13) -
--comment-prefixes
-
--allow-unused-prefixes
-
--input-file
-
--match-full-lines
-
--strict-whitespace
(Bug: #6) -
--ignore-case
-
--implicit-check-not
-
--dump-input
-
--dump-input-context
-
--dump-input-filter
-
--enable-var-scope
-
-D<VAR=VALUE>
-
-D#<FMT>,<NUMVAR>=<NUMERIC EXPRESSION>
-
-version
-
-v
-
-vv
-
--allow-deprecated-dag-overlap
Not sure what this means yet. -
--allow-empty
-
--color
No color support yet
-
- Base Features:
- Testing:
- Base cases
- Negative tests
- Error messages (started)
- Lots of edge cases
- MLIR/xDSL integration tests
- UX:
- Good error messages: I have some error messages, but could be a lot better
- Parse errors
- Matching errors
- Malformed regexes
- Good error messages: I have some error messages, but could be a lot better
- Infrastructure:
- Formatting: black
- Pyright
-
pre-commit
- CI for everything
We are open to PRs for bugfixes or any features listed here.
Differences to LLVMs FileCheck:
We want to be as close as possible to the original FileCheck, and document our differences very clearly.
If you encounter a difference that is not documented here, feel free to file a bug report.
Better Regexes
We use pythons regex library, which is a flavour of a Perl compatible regular expression (PCRE), instead of FileChecks POSIX regex falvour.
Example:
// LLVM filecheck:
// CHECK: %{{[:alnum:]+}}, %{{[:digit:]+}}
// our fileheck:
// CHECK: %{{[a-zA-Z0-9]+}}, %{{\d+}}
Some effort is made to translate character classes from POSIX to PCRE, although it might be wrong in edge cases.
Relaxed Matchings:
We relax some of the matching rules, like:
- Allow a file to start with
CHECK-NEXT
No Numerical Substitution
While our filecheck supports numeric capture
([[#%.3x,VAR:]]
will capture a three-digit hex number), we don't support arithmetic expressions on these captured
values at the moment. We also don't support the "Pseudo Numeric Variable" @LINE
.
Special Feature Flags:
This version of filecheck implements some non-standard extensions to LLVMs filecheck. These are disabled by default but
can be enabled through the environment variable FILECHECK_FEATURE_ENABLE=...
. Avialable extensions are documented here:
MLIR_REGEX_CLS
: Add additional special regex matchers to match MLIR/LLVM constructs:\V
will match any SSA value name
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file filecheck_ng-0.1.2.tar.gz
.
File metadata
- Download URL: filecheck_ng-0.1.2.tar.gz
- Upload date:
- Size: 28.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 419ae1d319d0f51bb4de22b2601af62bf5683751e2f54f445da4955edaad3993 |
|
MD5 | b0a6fa5309b13ed826dc37d37828103b |
|
BLAKE2b-256 | 96c0cf5bff1cfed124888732dfc1876e65b6204b3c4dd797d926ece91b68ca49 |
File details
Details for the file filecheck_ng-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: filecheck_ng-0.1.2-py3-none-any.whl
- Upload date:
- Size: 31.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e14a561834314011066852e944c7b4c76f74462c938790d46ea59f3607717d3 |
|
MD5 | 6ad1d6b4ca2faff7ec29b9b96f7a368b |
|
BLAKE2b-256 | da5362eea79af90f3096736fa45cdd40222f6605a5e5adfa77f2b58064cb55bb |