Searched defs:SlotData (Results 1 – 1 of 1) sorted by relevance
61 struct SlotData { struct62 int Slot;63 int Size;64 int Align;65 StackOffset Offset;66 SlotType SlotTy;67 bool Scalable;69 SlotData(const MachineFrameInfo &MFI, const StackOffset Offset, in SlotData() function88 bool isVarSize() const { return SlotTy == SlotType::VariableSized; } in isVarSize()95 bool operator<(const SlotData &Rhs) const { in operator <()