ptx_parser/parser/instruction/
xor.rs1#![allow(unused)]
7
8use crate::parser::{
9 PtxParseError, PtxParser, PtxTokenStream, Span,
10 util::{
11 between, comma_p, directive_p, exclamation_p, lbracket_p, lparen_p, map, minus_p, optional,
12 pipe_p, rbracket_p, rparen_p, semicolon_p, sep_by, string_p, try_map,
13 },
14};
15use crate::r#type::common::*;
16use crate::{alt, ok, seq_n};
17
18pub mod section_0 {
19 use super::*;
20 use crate::r#type::instruction::xor::section_0::*;
21
22 impl PtxParser for Type {
27 fn parse() -> impl Fn(&mut PtxTokenStream) -> Result<(Self, Span), PtxParseError> {
28 alt!(
29 map(string_p(".pred"), |_, _span| Type::Pred),
30 map(string_p(".b16"), |_, _span| Type::B16),
31 map(string_p(".b32"), |_, _span| Type::B32),
32 map(string_p(".b64"), |_, _span| Type::B64)
33 )
34 }
35 }
36
37 impl PtxParser for XorType {
38 fn parse() -> impl Fn(&mut PtxTokenStream) -> Result<(Self, Span), PtxParseError> {
39 try_map(
40 seq_n!(
41 string_p("xor"),
42 Type::parse(),
43 GeneralOperand::parse(),
44 comma_p(),
45 GeneralOperand::parse(),
46 comma_p(),
47 GeneralOperand::parse(),
48 semicolon_p()
49 ),
50 |(_, type_, d, _, a, _, b, _), span| {
51 ok!(XorType {
52 type_ = type_,
53 d = d,
54 a = a,
55 b = b,
56
57 })
58 },
59 )
60 }
61 }
62}