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