Lines Matching refs:StackSlotKind
25 pub enum StackSlotKind { enum
34 impl FromStr for StackSlotKind { implementation
38 use self::StackSlotKind::*; in from_str()
47 impl fmt::Display for StackSlotKind { implementation
49 use self::StackSlotKind::*; in fmt()
62 pub kind: StackSlotKind,
107 pub fn new(kind: StackSlotKind, size: StackSize, align_shift: u8) -> Self { in new() argument
119 kind: StackSlotKind, in new_with_key() argument
154 pub kind: StackSlotKind,
162 pub fn new(kind: StackSlotKind, dyn_ty: DynamicType) -> Self { in new() argument
163 assert!(kind == StackSlotKind::ExplicitDynamicSlot); in new()
199 func.create_sized_stack_slot(StackSlotData::new(StackSlotKind::ExplicitSlot, 4, 0)); in stack_slot()
201 func.create_sized_stack_slot(StackSlotData::new(StackSlotKind::ExplicitSlot, 8, 0)); in stack_slot()
232 StackSlotKind::ExplicitDynamicSlot, in dynamic_stack_slot()
236 StackSlotKind::ExplicitDynamicSlot, in dynamic_stack_slot()