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

1 2 3

  /external/llvm/lib/Target/
Target.cpp 78 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext()));
82 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext(), AS));
86 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C)));
90 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C), AS));
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 52 TD->getIntPtrType(Context),
81 TD->getIntPtrType(Context),
83 TD->getIntPtrType(Context),
141 TD->getIntPtrType(Context), NULL);
220 TD->getIntPtrType(Context),
221 TD->getIntPtrType(Context), NULL);
249 TD->getIntPtrType(Context),
280 TD->getIntPtrType(Context), NULL);
477 TD->getIntPtrType(Context),
479 TD->getIntPtrType(Context)
    [all...]
SimplifyLibCalls.cpp 188 FT->getParamType(2) != DL->getIntPtrType(Context) ||
189 FT->getParamType(3) != DL->getIntPtrType(Context))
212 FT->getParamType(2) != DL->getIntPtrType(Context) ||
213 FT->getParamType(3) != DL->getIntPtrType(Context))
236 FT->getParamType(2) != DL->getIntPtrType(Context) ||
237 FT->getParamType(3) != DL->getIntPtrType(Context))
263 FT->getParamType(2) != DL->getIntPtrType(Context))
288 ConstantInt::get(DL->getIntPtrType(Context), Len),
309 FT->getParamType(2) != DL->getIntPtrType(FT->getParamType(0)))
335 Value *LenV = ConstantInt::get(DL->getIntPtrType(PT), Len)
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 43 Type *IntPtrTy = getDataLayout()->getIntPtrType(*DAG.getContext());
  /external/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.cpp 39 Entry.Ty = TLI.getDataLayout()->getIntPtrType(*DAG.getContext());
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 118 DL.getIntPtrType(Context), nullptr);
125 DL.getIntPtrType(Context), nullptr);
132 DL.getIntPtrType(Context), nullptr);
466 Type *IntPtr = DL.getIntPtrType(Context);
477 Type *IntPtr = DL.getIntPtrType(Context);
489 Type *IntPtr = DL.getIntPtrType(Op0->getType());
  /external/llvm/include/llvm/IR/
DataLayout.h 397 /// getIntPtrType - Return an integer type with size at least as big as that
399 IntegerType *getIntPtrType(LLVMContext &C, unsigned AddressSpace = 0) const;
401 /// getIntPtrType - Return an integer (vector of integer) type with size at
404 Type *getIntPtrType(Type *) const;
  /external/llvm/include/llvm/Analysis/
PtrUseVisitor.h 208 IntegerType *IntPtrTy = cast<IntegerType>(DL.getIntPtrType(I.getType()));
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 190 Type *IntPtrTy = TD.getIntPtrType(GEP->getType());
  /external/llvm/bindings/ocaml/target/
llvm_target.mli 86 See the method [llvm::DataLayout::getIntPtrType]. *)
95 See the method [llvm::DataLayout::getIntPtrType]. *)
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 165 Type *IntPtrTy = TLI.getDataLayout()->getIntPtrType(*DAG.getContext());
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 144 Type *IntTy = DL->getIntPtrType(Ptr->getType());
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 383 CE->getOperand(0)->getType() == TD.getIntPtrType(CE->getType())) {
678 Type *IntPtrTy = TD->getIntPtrType(ResultTy);
736 Type *IntPtrTy = TD->getIntPtrType(Ptr->getType());
    [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 703 IntegerType *DataLayout::getIntPtrType(LLVMContext &C,
708 Type *DataLayout::getIntPtrType(Type *Ty) const {
  /external/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 601 Type *IntPtrTy = DL->getIntPtrType(GEP->getType());
776 Type *IntPtrTy = DL->getIntPtrType(GEP->getType());
    [all...]
GVN.cpp 877 StoredValTy = DL.getIntPtrType(StoredValTy);
883 TypeToCastTo = DL.getIntPtrType(TypeToCastTo);
902 StoredValTy = DL.getIntPtrType(StoredValTy);
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 213 IntType getIntPtrType() const { return IntPtrType; }
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 57 Type *IntPtrTy = getDataLayout()->getIntPtrType(*DAG.getContext());
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 614 DefineTypeSize("__INTPTR_MAX__", TI.getIntPtrType(), TI, Builder);
642 DefineType("__INTPTR_TYPE__", TI.getIntPtrType(), Builder);
643 DefineTypeWidth("__INTPTR_WIDTH__", TI.getIntPtrType(), TI, Builder);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 169 Type *IntPtrTy = DL->getIntPtrType(AI.getType());
196 ? DL->getIntPtrType(AI.getType())
319 ? DL->getIntPtrType(SrcTy)
    [all...]
InstructionCombining.cpp     [all...]
InstCombineCasts.cpp 251 DL->getIntPtrType(SrcTy) : nullptr;
253 DL->getIntPtrType(MidTy) : nullptr;
255 DL->getIntPtrType(DstTy) : nullptr;
    [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 460 IntegerType *Int16SizePtr = DL.getIntPtrType(C, 1);
461 IntegerType *Int64SizePtr = DL.getIntPtrType(C, 2);
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 624 if (PTyL && PTyL->getAddressSpace() == 0) TyL = DL->getIntPtrType(TyL);
625 if (PTyR && PTyR->getAddressSpace() == 0) TyR = DL->getIntPtrType(TyR);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 125 if (Cast->isNoopCast(DL.getIntPtrType(Cast->getContext())) &&
199 getRegForValue(Constant::getNullValue(DL.getIntPtrType(V->getContext())));
    [all...]

Completed in 746 milliseconds

1 2 3