/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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | LoopDataPrefetch.cpp | 254 Value *PtrValue; in runOnLoop() local 259 PtrValue = LMemI->getPointerOperand(); in runOnLoop() 263 PtrValue = SMemI->getPointerOperand(); in runOnLoop() 266 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in runOnLoop() 270 if (L->isLoopInvariant(PtrValue)) in runOnLoop() 273 const SCEV *LSCEV = SE->getSCEV(PtrValue); in runOnLoop() 323 LLVM_DEBUG(dbgs() << " Access: " << *PtrValue << ", SCEV: " << *LSCEV in runOnLoop()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCLoopPreIncPrep.cpp | 265 Value *PtrValue; in runOnLoop() local 270 PtrValue = LMemI->getPointerOperand(); in runOnLoop() 273 PtrValue = SMemI->getPointerOperand(); in runOnLoop() 277 PtrValue = IMemI->getArgOperand(0); in runOnLoop() 281 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in runOnLoop() 287 PtrValue->getType()->getPointerElementType()->isVectorTy()) in runOnLoop() 290 if (L->isLoopInvariant(PtrValue)) in runOnLoop() 293 const SCEV *LSCEV = SE->getSCEVAtScope(PtrValue, L); in runOnLoop() 302 if (PtrValue->getType()->getPointerElementType()->isIntegerTy(64)) { 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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64FalkorHWPFFix.cpp | 160 Value *PtrValue = LoadI->getPointerOperand(); in runOnLoop() local 161 if (L.isLoopInvariant(PtrValue)) in runOnLoop() 164 const SCEV *LSCEV = SE.getSCEV(PtrValue); in runOnLoop()
|
D | AArch64TargetTransformInfo.cpp | 716 Value *PtrValue = LMemI->getPointerOperand(); in getFalkorUnrollingPreferences() local 717 if (L->isLoopInvariant(PtrValue)) in getFalkorUnrollingPreferences() 720 const SCEV *LSCEV = SE.getSCEV(PtrValue); in getFalkorUnrollingPreferences()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | IRBuilder.h | 2119 Value *PtrValue, Value *Mask, in CreateAlignmentAssumptionHelper() argument 2122 Value *PtrIntValue = CreatePtrToInt(PtrValue, IntPtrTy, "ptrint"); in CreateAlignmentAssumptionHelper() 2150 CallInst *CreateAlignmentAssumption(const DataLayout &DL, Value *PtrValue, 2153 assert(isa<PointerType>(PtrValue->getType()) && 2155 auto *PtrTy = cast<PointerType>(PtrValue->getType()); 2159 return CreateAlignmentAssumptionHelper(DL, PtrValue, Mask, IntPtrTy, 2172 CallInst *CreateAlignmentAssumption(const DataLayout &DL, Value *PtrValue, 2175 assert(isa<PointerType>(PtrValue->getType()) && 2177 auto *PtrTy = cast<PointerType>(PtrValue->getType()); 2191 return CreateAlignmentAssumptionHelper(DL, PtrValue, Mask, IntPtrTy,
|
/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()
|