Searched refs:PtrValue (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/Target/PowerPC/ |
D | PPCLoopDataPrefetch.cpp | 160 Value *PtrValue; in runOnLoop() local 165 PtrValue = LMemI->getPointerOperand(); in runOnLoop() 169 PtrValue = SMemI->getPointerOperand(); in runOnLoop() 172 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in runOnLoop() 176 if (L->isLoopInvariant(PtrValue)) in runOnLoop() 179 const SCEV *LSCEV = SE->getSCEV(PtrValue); in runOnLoop()
|
D | PPCLoopPreIncPrep.cpp | 178 Value *PtrValue; in runOnLoop() local 183 PtrValue = LMemI->getPointerOperand(); in runOnLoop() 186 PtrValue = SMemI->getPointerOperand(); in runOnLoop() 190 PtrValue = IMemI->getArgOperand(0); in runOnLoop() 194 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in runOnLoop() 200 PtrValue->getType()->getPointerElementType()->isVectorTy()) in runOnLoop() 203 if (L->isLoopInvariant(PtrValue)) in runOnLoop() 206 const SCEV *LSCEV = SE->getSCEVAtScope(PtrValue, L); in runOnLoop()
|
/external/llvm/include/llvm/IR/ |
D | IRBuilder.h | 1621 CallInst *CreateAlignmentAssumption(const DataLayout &DL, Value *PtrValue, 1624 assert(isa<PointerType>(PtrValue->getType()) && 1627 PointerType *PtrTy = cast<PointerType>(PtrValue->getType()); 1629 Value *PtrIntValue = CreatePtrToInt(PtrValue, IntPtrTy, "ptrint");
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 658 llvm::Value *PtrValue = CGF.EmitScalarExpr(E); in EmitOMPAlignedClause() local 659 CGF.EmitAlignmentAssumption(PtrValue, Alignment); in EmitOMPAlignedClause()
|
D | CGExprCXX.cpp | 1473 llvm::Value *PtrValue = CGF.Builder.CreateLoad(Ptr, in EmitObjectDelete() local 1476 CGF.EmitARCRelease(PtrValue, ARCPreciseLifetime); in EmitObjectDelete()
|
D | CodeGenFunction.h | 1800 void EmitAlignmentAssumption(llvm::Value *PtrValue, unsigned Alignment, 1802 Builder.CreateAlignmentAssumption(CGM.getDataLayout(), PtrValue, Alignment,
|
D | CGBuiltin.cpp | 429 Value *PtrValue = EmitScalarExpr(E->getArg(0)); in EmitBuiltinExpr() local 437 EmitAlignmentAssumption(PtrValue, Alignment, OffsetValue); in EmitBuiltinExpr() 438 return RValue::get(PtrValue); in EmitBuiltinExpr()
|
/external/clang/lib/Sema/ |
D | SemaExprObjC.cpp | 822 const PointerType *PtrValue = ValueT->getAs<PointerType>(); in BuildObjCDictionaryLiteral() local 823 if (!PtrValue || in BuildObjCDictionaryLiteral() 824 !Context.hasSameUnqualifiedType(PtrValue->getPointeeType(), IdT)) { in BuildObjCDictionaryLiteral()
|