Expand description
Cranelift file reader library.
The cranelift_reader
library supports reading .clif files. This functionality is needed for
testing Cranelift, but is not essential for a JIT compiler.
Structs§
- Comment
- A comment in a parsed function.
- Details
- Additional details about a function parsed from a text string. These are useful for detecting test commands embedded in comments etc. The details to not affect the semantics of the function.
- Invocation
- Represent a function call; RunCommands invoke a CLIF function using an Invocation.
- Location
- The location of a
Token
orError
. - Parse
Error - A parse error is returned when the parse failed.
- Parse
Options - Options for configuring the parsing of filetests.
- Source
Map - Mapping from entity names to source locations.
- Test
Command - A command appearing in a test file.
- Test
File - A parsed test case.
Enums§
- Comparison
- A CLIF comparison operation; e.g.
==
. - Feature
- A cranelift feature in a test file preamble.
- IsaSpec
- The ISA specifications in a
.clif
file. - Owned
Flags OrIsa - Like
FlagsOrIsa
, but holds ownership. - Parse
Option Error - An error type returned by
parse_options
. - RunCommand
- A run command appearing in a test file.
- Test
Option - An option on a test command.
Functions§
- parse_
functions - Parse the entire
text
into a list of functions. - parse_
option - Parse an single command line options and apply it to
config
. - parse_
options - Parse an iterator of command line options and apply them to
config
. - parse_
run_ command - Parse a CLIF comment
text
as a run command. - parse_
sets_ and_ triple - Parse “set” and “triple” commands.
- parse_
test - Parse the entire
text
as a test case file.
Type Aliases§
- Parse
Result - Result of a parser operation. The
ParseError
variant includes a location.