Searched refs:PtrValue (Results 1 – 8 of 8) sorted by relevance
/external/protobuf/src/google/protobuf/ |
D | metadata.h | 67 delete PtrValue<Container>(); in ~InternalMetadataWithArena() 74 return PtrValue<Container>()->unknown_fields_; in unknown_fields() 82 return &PtrValue<Container>()->unknown_fields_; in mutable_unknown_fields() 90 return PtrValue<Container>()->arena_; in arena() 92 return PtrValue<Arena>(); in arena() 134 template<typename T> T* PtrValue() const { in PtrValue() function
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopDataPrefetch.cpp | 223 Value *PtrValue; in runOnLoop() local 228 PtrValue = LMemI->getPointerOperand(); in runOnLoop() 232 PtrValue = SMemI->getPointerOperand(); in runOnLoop() 235 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in runOnLoop() 239 if (L->isLoopInvariant(PtrValue)) in runOnLoop() 242 const SCEV *LSCEV = SE->getSCEV(PtrValue); in runOnLoop() 292 DEBUG(dbgs() << " Access: " << *PtrValue << ", SCEV: " << *LSCEV in runOnLoop()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCLoopPreIncPrep.cpp | 188 Value *PtrValue; in runOnLoop() local 193 PtrValue = LMemI->getPointerOperand(); in runOnLoop() 196 PtrValue = SMemI->getPointerOperand(); in runOnLoop() 200 PtrValue = IMemI->getArgOperand(0); in runOnLoop() 204 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in runOnLoop() 210 PtrValue->getType()->getPointerElementType()->isVectorTy()) in runOnLoop() 213 if (L->isLoopInvariant(PtrValue)) in runOnLoop() 216 const SCEV *LSCEV = SE->getSCEVAtScope(PtrValue, L); in runOnLoop()
|
/external/llvm/include/llvm/IR/ |
D | IRBuilder.h | 1765 CallInst *CreateAlignmentAssumption(const DataLayout &DL, Value *PtrValue, 1768 assert(isa<PointerType>(PtrValue->getType()) && 1771 PointerType *PtrTy = cast<PointerType>(PtrValue->getType()); 1773 Value *PtrIntValue = CreatePtrToInt(PtrValue, IntPtrTy, "ptrint");
|
/external/clang/lib/Sema/ |
D | SemaExprObjC.cpp | 934 const PointerType *PtrValue = ValueT->getAs<PointerType>(); in BuildObjCDictionaryLiteral() local 935 if (!PtrValue || in BuildObjCDictionaryLiteral() 936 !Context.hasSameUnqualifiedType(PtrValue->getPointeeType(), IdT)) { in BuildObjCDictionaryLiteral()
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.h | 2088 void EmitAlignmentAssumption(llvm::Value *PtrValue, unsigned Alignment, 2090 Builder.CreateAlignmentAssumption(CGM.getDataLayout(), PtrValue, Alignment,
|
D | CGStmtOpenMP.cpp | 1417 llvm::Value *PtrValue = CGF.EmitScalarExpr(E); in emitAlignedClause() local 1418 CGF.EmitAlignmentAssumption(PtrValue, Alignment); in emitAlignedClause()
|
D | CGBuiltin.cpp | 722 Value *PtrValue = EmitScalarExpr(E->getArg(0)); in EmitBuiltinExpr() local 730 EmitAlignmentAssumption(PtrValue, Alignment, OffsetValue); in EmitBuiltinExpr() 731 return RValue::get(PtrValue); in EmitBuiltinExpr()
|