Home
last modified time | relevance | path

Searched refs:SRetTy (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMips16ISelLowering.cpp382 } else if (StructType *SRetTy = dyn_cast<StructType>(RetTy)) { in getMips16HelperFunction() local
384 if (SRetTy->getNumElements() == 2) { in getMips16HelperFunction()
385 if ((SRetTy->getElementType(0)->isFloatTy()) && in getMips16HelperFunction()
386 (SRetTy->getElementType(1)->isFloatTy())) { in getMips16HelperFunction()
388 } else if ((SRetTy->getElementType(0)->isDoubleTy()) && in getMips16HelperFunction()
389 (SRetTy->getElementType(1)->isDoubleTy())) { in getMips16HelperFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
DCoroutines.cpp566 } else if (auto SRetTy = dyn_cast<StructType>(FT->getReturnType())) { in checkWFRetconPrototype() local
567 ResultOkay = (!SRetTy->isOpaque() && in checkWFRetconPrototype()
568 SRetTy->getNumElements() > 0 && in checkWFRetconPrototype()
569 SRetTy->getElementType(0)->isPointerTy()); in checkWFRetconPrototype()