Home
last modified time | relevance | path

Searched refs:LTy (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DPatternMatch.h112 template <typename LTy, typename RTy> struct match_combine_or {
113 LTy L;
116 match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) {} in match_combine_or()
127 template <typename LTy, typename RTy> struct match_combine_and {
128 LTy L;
131 match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) {} in match_combine_and()
142 template <typename LTy, typename RTy>
143 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) { in m_CombineOr()
144 return match_combine_or<LTy, RTy>(L, R); in m_CombineOr()
148 template <typename LTy, typename RTy>
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.h870 bool isMultiStoresCheaperThanBitsMerge(EVT LTy, EVT HTy) const override { in isMultiStoresCheaperThanBitsMerge() argument
876 if ((LTy.isFloatingPoint() && HTy.isInteger()) || in isMultiStoresCheaperThanBitsMerge()
877 (LTy.isInteger() && HTy.isFloatingPoint())) in isMultiStoresCheaperThanBitsMerge()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSROA.cpp1849 Type *LTy = LI->getType(); in isVectorPromotionViableForSlice() local
1851 assert(LTy->isIntegerTy()); in isVectorPromotionViableForSlice()
1852 LTy = SplitIntTy; in isVectorPromotionViableForSlice()
1854 if (!canConvertValue(DL, SliceTy, LTy)) in isVectorPromotionViableForSlice()
2553 Type *LTy = TargetTy->getPointerTo(AS); in visitLoadInst() local
2555 TargetTy, getNewAllocaSlicePtr(IRB, LTy), getSliceAlign(TargetTy), in visitLoadInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp3061 ArrayType *LTy = dyn_cast<ArrayType>(LFilter->getType()); in visitLandingPadInst() local
3062 if (!LTy) in visitLandingPadInst()
3076 unsigned LElts = LTy->getNumElements(); in visitLandingPadInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp1860 auto *LTy = L->getType(); in isPointerValueDeadOnEntryToFunction() local
1867 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy); in isPointerValueDeadOnEntryToFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetLowering.h493 virtual bool isMultiStoresCheaperThanBitsMerge(EVT LTy, EVT HTy) const { in isMultiStoresCheaperThanBitsMerge() argument