HomeSort by relevance Sort by last modified time
    Searched refs:IntPtrTy (Results 1 - 25 of 40) sorted by null

1 2

  /external/llvm/include/llvm/Transforms/Utils/
Local.h 190 Type *IntPtrTy = TD.getIntPtrType(GEP->getType());
191 Value *Result = Constant::getNullValue(IntPtrTy);
198 unsigned IntPtrWidth = IntPtrTy->getScalarType()->getIntegerBitWidth();
219 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
224 Constant *Scale = ConstantInt::get(IntPtrTy, Size);
225 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
232 if (Op->getType() != IntPtrTy)
233 Op = Builder->CreateIntCast(Op, IntPtrTy, true, Op->getName()+".c");
236 Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 43 Type *IntPtrTy = getDataLayout()->getIntPtrType(*DAG.getContext());
47 Entry.Ty = IntPtrTy;
  /external/llvm/include/llvm/Analysis/
PtrUseVisitor.h 208 IntegerType *IntPtrTy = cast<IntegerType>(DL.getIntPtrType(I.getType()));
210 Offset = APInt(IntPtrTy->getBitWidth(), 0);
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 165 Type *IntPtrTy = TLI.getDataLayout()->getIntPtrType(*DAG.getContext());
167 Entry.Ty = IntPtrTy;
172 Entry.Ty = IntPtrTy;
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 678 Type *IntPtrTy = TD->getIntPtrType(ResultTy);
687 Ops[i]->getType() != IntPtrTy) {
691 IntPtrTy,
693 Ops[i], IntPtrTy));
736 Type *IntPtrTy = TD->getIntPtrType(Ptr->getType());
748 assert((!CE || CE->getType() == IntPtrTy) &&
763 unsigned BitWidth = TD->getTypeSizeInBits(IntPtrTy);
832 NewIdxs.push_back(ConstantInt::get(IntPtrTy, 0));
838 NewIdxs.push_back(ConstantInt::get(IntPtrTy, NewIdx));
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 601 Type *IntPtrTy = DL->getIntPtrType(GEP->getType());
607 if ((*I)->getType() != IntPtrTy) {
608 *I = CastInst::CreateIntegerCast(*I, IntPtrTy, true, "idxprom", GEP);
776 Type *IntPtrTy = DL->getIntPtrType(GEP->getType());
    [all...]
LoopIdiomRecognize.cpp     [all...]
  /external/llvm/examples/BrainF/
BrainF.cpp 83 Type* IntPtrTy = IntegerType::getInt32Ty(C);
86 allocsize = ConstantExpr::getTruncOrBitCast(allocsize, IntPtrTy);
87 ptr_arr = CallInst::CreateMalloc(BB, IntPtrTy, Int8Ty, allocsize, val_mem,
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]