Searched defs:IntPtr (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/SemaCXX/
H A Dwarn-cast-align.cpp20 typedef int *IntPtr; typedef
21 c = IntPtr(P); // expected-warning {{cast from 'char *' to 'IntPtr' (aka 'int *') increases required alignment from 1 to 4}}
43 typedef int *IntPtr; typedef
44 c = IntPtr(P);
H A Dcomposite-pointer-type.cpp39 typedef int *IntPtr; typedef
40 typedef IntPtr *IntPtrPtr;
41 typedef IntPtr const *IntPtrConstPtr;
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp466 Type *IntPtr = TD.getIntPtrType(Context); local
467 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr,
477 Type *IntPtr = TD.getIntPtrType(Context); local
478 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr,
488 Type *IntPtr = TD.getIntPtrType(Context); local
489 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr,
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp56 EVT IntPtr = TLI.getPointerTy(); local
70 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args,
/external/llvm/lib/Target/R600/
H A DAMDGPUISelDAGToDAG.cpp80 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr);
699 SDValue& IntPtr) {
701 IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true);
698 SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr) argument
/external/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp1005 Type *IntPtr = TD->getIntPtrType(DestPtr->getContext()); local
1006 BECount = SE->getTruncateOrZeroExtend(BECount, IntPtr);
1008 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1),
1011 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize),
1015 Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator());
1025 Builder.getInt8PtrTy(), IntPtr,
1111 Type *IntPtr = TD->getIntPtrType(SI->getContext()); local
1112 BECount = SE->getTruncateOrZeroExtend(BECount, IntPtr);
1114 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1),
1117 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSiz
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3243 EVT IntPtr = TLI->getPointerTy(); local
3244 if (AllocSize.getValueType() != IntPtr)
3245 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurSDLoc(), IntPtr);
3247 AllocSize = DAG.getNode(ISD::MUL, getCurSDLoc(), IntPtr,
3249 DAG.getConstant(TySize, IntPtr));

Completed in 3256 milliseconds