pub enum FuncFunctionHeaderDirective {
NoReturn {
span: Span,
},
Pragma {
args: Vec<String>,
span: Span,
},
AbiPreserve {
value: u32,
span: Span,
},
AbiPreserveControl {
value: u32,
span: Span,
},
}Expand description
Directive tokens that may decorate a PTX function header.
Variants§
NoReturn
Syntax: .noreturn
Example: .func foo .noreturn { … }
Pragma
Syntax: .pragma list-of-strings ;
Example: .entry foo .pragma “nounroll”; { … } // disable unrolling for current kernel
AbiPreserve
Syntax: .abi_preserve N
Example: .entry foo .abi_preserve 8 { … }
AbiPreserveControl
Syntax: .abi_preserve_control N
Example: .entry foo .abi_preserve_control 16 { … }
Implementations§
Trait Implementations§
Source§impl Clone for FuncFunctionHeaderDirective
impl Clone for FuncFunctionHeaderDirective
Source§fn clone(&self) -> FuncFunctionHeaderDirective
fn clone(&self) -> FuncFunctionHeaderDirective
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FuncFunctionHeaderDirective
impl Debug for FuncFunctionHeaderDirective
Source§impl PtxParser for FuncFunctionHeaderDirective
impl PtxParser for FuncFunctionHeaderDirective
Source§fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
Returns a parser function that can parse an instance of
Self.Source§impl TreeDisplay for FuncFunctionHeaderDirective
impl TreeDisplay for FuncFunctionHeaderDirective
Source§fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
Display this node in tree format. Read more
impl StructuralPartialEq for FuncFunctionHeaderDirective
Auto Trait Implementations§
impl Freeze for FuncFunctionHeaderDirective
impl RefUnwindSafe for FuncFunctionHeaderDirective
impl Send for FuncFunctionHeaderDirective
impl Sync for FuncFunctionHeaderDirective
impl Unpin for FuncFunctionHeaderDirective
impl UnwindSafe for FuncFunctionHeaderDirective
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more