Searched refs:SrcElTy (Results 1 - 2 of 2) sorted by last modified time

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1798 Type *SrcElTy = SrcPTy->getElementType(); local
1814 while (SrcElTy != DstElTy &&
1815 isa<CompositeType>(SrcElTy) && !SrcElTy->isPointerTy() &&
1816 SrcElTy->getNumContainedTypes() /* not "{}" */) {
1817 SrcElTy = cast<CompositeType>(SrcElTy)->getTypeAtIndex(ZeroUInt);
1822 if (SrcElTy == DstElTy) {
H A DInstructionCombining.cpp1573 Type *SrcElTy = StrippedPtrTy->getElementType(); local
1575 if (DL && SrcElTy->isArrayTy() &&
1576 DL->getTypeAllocSize(SrcElTy->getArrayElementType()) ==
1594 if (DL && ResElTy->isSized() && SrcElTy->isSized()) {
1598 uint64_t SrcSize = DL->getTypeAllocSize(SrcElTy);
1630 if (DL && ResElTy->isSized() && SrcElTy->isSized() &&
1631 SrcElTy->isArrayTy()) {
1636 = DL->getTypeAllocSize(SrcElTy->getArrayElementType());

Completed in 584 milliseconds