Searched refs:TargetTy (Results 1 - 3 of 3) sorted by relevance
/external/llvm/lib/Transforms/Scalar/ |
H A D | SROA.cpp | 1174 /// TargetTy without changing the offset of the pointer. 1179 /// TargetTy. If we can't find one with the same type, we at least try to use 1183 Value *BasePtr, Type *Ty, Type *TargetTy, 1185 if (Ty == TargetTy) 1209 } while (ElementTy != TargetTy); 1210 if (ElementTy != TargetTy) 1222 Type *TargetTy, 1225 return getNaturalGEPWithType(IRB, DL, Ptr, Ty, TargetTy, Indices); 1245 Offset, TargetTy, Indices); 1257 return getNaturalGEPRecursively(IRB, DL, Ptr, ElementTy, Offset, TargetTy, 1182 getNaturalGEPWithType(IRBuilderTy &IRB, const DataLayout &DL, Value *BasePtr, Type *Ty, Type *TargetTy, SmallVectorImpl<Value *> &Indices) argument 1220 getNaturalGEPRecursively(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, Type *Ty, APInt &Offset, Type *TargetTy, SmallVectorImpl<Value *> &Indices) argument 1290 getNaturalGEPWithOffset(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, APInt Offset, Type *TargetTy, SmallVectorImpl<Value *> &Indices) argument 1347 Type *TargetTy = PointerTy->getPointerElementType(); local 2038 Type *TargetTy = IsSplit ? Type::getIntNTy(LI.getContext(), Size * 8) local [all...] |
/external/clang/lib/CodeGen/ |
H A D | CGExpr.cpp | 2044 llvm::Type *TargetTy = IntPtrTy; local 2050 if (Bits <= TargetTy->getIntegerBitWidth()) 2057 V->getType()->getIntegerBitWidth() <= TargetTy->getIntegerBitWidth()) 2058 return Builder.CreateZExt(V, TargetTy); 2066 return Builder.CreatePtrToInt(V, TargetTy);
|
/external/llvm/lib/IR/ |
H A D | Verifier.cpp | 1689 Type *TargetTy = GEP.getPointerOperandType()->getScalarType(); local 1691 Assert1(isa<PointerType>(TargetTy), 1693 Assert1(cast<PointerType>(TargetTy)->getElementType()->isSized(),
|
Completed in 441 milliseconds