Home
last modified time | relevance | path

Searched defs:AsyncLoweringStorage (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInternal.h135 struct AsyncLoweringStorage { struct
136 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()