Searched defs:AsyncLoweringStorage (Results 1 – 1 of 1) sorted by relevance
132 struct AsyncLoweringStorage { struct133 Value *Context;134 CallingConv::ID AsyncCC;135 unsigned ContextArgNo;136 uint64_t ContextHeaderSize;137 uint64_t ContextAlignment;138 uint64_t FrameOffset; // Start of the frame.139 uint64_t ContextSize; // Includes frame size.140 GlobalVariable *AsyncFuncPointer;142 Align getContextAlignment() const { return Align(ContextAlignment); } in getContextAlignment()