Home
last modified time | relevance | path

Searched refs:PtrValue (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/Target/PowerPC/
DPPCLoopDataPrefetch.cpp161 Value *PtrValue; in runOnLoop() local
166 PtrValue = LMemI->getPointerOperand(); in runOnLoop()
170 PtrValue = SMemI->getPointerOperand(); in runOnLoop()
173 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in runOnLoop()
177 if (L->isLoopInvariant(PtrValue)) in runOnLoop()
180 const SCEV *LSCEV = SE->getSCEV(PtrValue); in runOnLoop()
DPPCLoopPreIncPrep.cpp185 Value *PtrValue; in runOnLoop() local
190 PtrValue = LMemI->getPointerOperand(); in runOnLoop()
193 PtrValue = SMemI->getPointerOperand(); in runOnLoop()
197 PtrValue = IMemI->getArgOperand(0); in runOnLoop()
201 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in runOnLoop()
207 PtrValue->getType()->getPointerElementType()->isVectorTy()) in runOnLoop()
210 if (L->isLoopInvariant(PtrValue)) in runOnLoop()
213 const SCEV *LSCEV = SE->getSCEVAtScope(PtrValue, L); in runOnLoop()
/external/llvm/include/llvm/IR/
DIRBuilder.h1744 CallInst *CreateAlignmentAssumption(const DataLayout &DL, Value *PtrValue,
1747 assert(isa<PointerType>(PtrValue->getType()) &&
1750 PointerType *PtrTy = cast<PointerType>(PtrValue->getType());
1752 Value *PtrIntValue = CreatePtrToInt(PtrValue, IntPtrTy, "ptrint");
/external/clang/lib/Sema/
DSemaExprObjC.cpp936 const PointerType *PtrValue = ValueT->getAs<PointerType>(); in BuildObjCDictionaryLiteral() local
937 if (!PtrValue || in BuildObjCDictionaryLiteral()
938 !Context.hasSameUnqualifiedType(PtrValue->getPointeeType(), IdT)) { in BuildObjCDictionaryLiteral()
/external/clang/lib/CodeGen/
DCodeGenFunction.h1959 void EmitAlignmentAssumption(llvm::Value *PtrValue, unsigned Alignment,
1961 Builder.CreateAlignmentAssumption(CGM.getDataLayout(), PtrValue, Alignment,
DCGStmtOpenMP.cpp1054 llvm::Value *PtrValue = CGF.EmitScalarExpr(E); in emitAlignedClause() local
1055 CGF.EmitAlignmentAssumption(PtrValue, Alignment); in emitAlignedClause()
DCGBuiltin.cpp625 Value *PtrValue = EmitScalarExpr(E->getArg(0)); in EmitBuiltinExpr() local
633 EmitAlignmentAssumption(PtrValue, Alignment, OffsetValue); in EmitBuiltinExpr()
634 return RValue::get(PtrValue); in EmitBuiltinExpr()