Home
last modified time | relevance | path

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

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