Searched refs:TargetTy (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1277 /// TargetTy without changing the offset of the pointer.
1282 /// TargetTy. If we can't find one with the same type, we at least try to use
1286 Value *BasePtr, Type *Ty, Type *TargetTy,
1289 if (Ty == TargetTy)
1318 } while (ElementTy != TargetTy);
1319 if (ElementTy != TargetTy)
1331 Type *TargetTy,
1335 return getNaturalGEPWithType(IRB, DL, Ptr, Ty, TargetTy, Indices, NamePrefix);
1357 Offset, TargetTy, Indices, NamePrefix);
1369 return getNaturalGEPRecursively(IRB, DL, Ptr, ElementTy, Offset, TargetTy,
1285 getNaturalGEPWithType(IRBuilderTy &IRB, const DataLayout &DL, Value *BasePtr, Type *Ty, Type *TargetTy, SmallVectorImpl<Value *> &Indices, Twine NamePrefix) argument
1329 getNaturalGEPRecursively(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, Type *Ty, APInt &Offset, Type *TargetTy, SmallVectorImpl<Value *> &Indices, Twine NamePrefix) argument
1402 getNaturalGEPWithOffset(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, APInt Offset, Type *TargetTy, SmallVectorImpl<Value *> &Indices, Twine NamePrefix) argument
1461 Type *TargetTy = PointerTy->getPointerElementType(); local
2205 Type *TargetTy = IsSplit ? Type::getIntNTy(LI.getContext(), SliceSize * 8) local
[all...]
/external/clang/lib/CodeGen/
H A DCGExpr.cpp2130 llvm::Type *TargetTy = IntPtrTy; local
2136 if (Bits <= TargetTy->getIntegerBitWidth())
2143 V->getType()->getIntegerBitWidth() <= TargetTy->getIntegerBitWidth())
2144 return Builder.CreateZExt(V, TargetTy);
2152 return Builder.CreatePtrToInt(V, TargetTy);
/external/llvm/lib/IR/
H A DVerifier.cpp1850 Type *TargetTy = GEP.getPointerOperandType()->getScalarType(); local
1852 Assert1(isa<PointerType>(TargetTy),
1854 Assert1(cast<PointerType>(TargetTy)->getElementType()->isSized(),

Completed in 2571 milliseconds