Home
last modified time | relevance | path

Searched refs:AsyncLowering (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp314 AsyncLowering.Context = AsyncId->getStorage(); in analyze()
315 AsyncLowering.ContextArgNo = AsyncId->getStorageArgumentIndex(); in analyze()
316 AsyncLowering.ContextHeaderSize = AsyncId->getStorageSize(); in analyze()
317 AsyncLowering.ContextAlignment = AsyncId->getStorageAlignment().value(); in analyze()
318 AsyncLowering.AsyncFuncPointer = AsyncId->getAsyncFunctionPointer(); in analyze()
319 AsyncLowering.AsyncCC = F.getCallingConv(); in analyze()
H A DCoroFrame.cpp868 MaxFrameAlignment = Shape.AsyncLowering.getContextAlignment(); in buildFrameType()
958 Shape.AsyncLowering.FrameOffset = in buildFrameType()
959 alignTo(Shape.AsyncLowering.ContextHeaderSize, Shape.FrameAlign); in buildFrameType()
962 Shape.AsyncLowering.ContextSize = in buildFrameType()
963 alignTo(Shape.AsyncLowering.FrameOffset + Shape.FrameSize, in buildFrameType()
964 Shape.AsyncLowering.getContextAlignment()); in buildFrameType()
965 if (Shape.AsyncLowering.getContextAlignment() < Shape.FrameAlign) { in buildFrameType()
H A DCoroSplit.cpp774 Shape.AsyncLowering.FrameOffset, "async.ctx.frameptr"); in deriveNewFramePointer()
955 if (OrigF.hasParamAttribute(Shape.AsyncLowering.ContextArgNo, in create()
1110 Shape.AsyncLowering.AsyncFuncPointer->getInitializer()); in updateAsyncFuncPointerContextSize()
1114 Shape.AsyncLowering.ContextSize); in updateAsyncFuncPointerContextSize()
1118 Shape.AsyncLowering.AsyncFuncPointer->setInitializer(NewFuncPtrStruct); in updateAsyncFuncPointerContextSize()
1732 Type::getInt8Ty(Context), FramePtr, Shape.AsyncLowering.FrameOffset, in splitCoroutine()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Coroutines/
H A DCoroShape.h155 AsyncLoweringStorage AsyncLowering; member
239 return AsyncLowering.AsyncCC; in getResumeFunctionCC()