Searched defs:AsyncLoweringStorage (Results 1 – 1 of 1) sorted by relevance
139 struct AsyncLoweringStorage { struct140 Value *Context;141 CallingConv::ID AsyncCC;142 unsigned ContextArgNo;143 uint64_t ContextHeaderSize;144 uint64_t ContextAlignment;145 uint64_t FrameOffset; // Start of the frame.146 uint64_t ContextSize; // Includes frame size.147 GlobalVariable *AsyncFuncPointer;149 Align getContextAlignment() const { return Align(ContextAlignment); } in getContextAlignment()