Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCLoopInstrFormPrep.cpp339 Value *PtrValue; in collectCandidates() local
344 PtrValue = LMemI->getPointerOperand(); in collectCandidates()
347 PtrValue = SMemI->getPointerOperand(); in collectCandidates()
352 PtrValue = IMemI->getArgOperand(0); in collectCandidates()
355 PtrValue = IMemI->getArgOperand(1); in collectCandidates()
359 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in collectCandidates()
363 if (L->isLoopInvariant(PtrValue)) in collectCandidates()
366 const SCEV *LSCEV = SE->getSCEVAtScope(PtrValue, L); in collectCandidates()
371 if (isValidCandidate(&J, PtrValue)) in collectCandidates()
829 const Value *PtrValue) { in runOnLoop() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopDataPrefetch.cpp320 Value *PtrValue; in runOnLoop() local
325 PtrValue = LMemI->getPointerOperand(); in runOnLoop()
329 PtrValue = SMemI->getPointerOperand(); in runOnLoop()
332 unsigned PtrAddrSpace = PtrValue->getType()->getPointerAddressSpace(); in runOnLoop()
336 if (L->isLoopInvariant(PtrValue)) in runOnLoop()
339 const SCEV *LSCEV = SE->getSCEV(PtrValue); in runOnLoop()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DIRBuilder.cpp1176 Value *PtrValue, in CreateAlignmentAssumptionHelper() argument
1179 SmallVector<Value *, 4> Vals({PtrValue, AlignValue}); in CreateAlignmentAssumptionHelper()
1187 Value *PtrValue, in CreateAlignmentAssumption() argument
1190 assert(isa<PointerType>(PtrValue->getType()) && in CreateAlignmentAssumption()
1193 auto *PtrTy = cast<PointerType>(PtrValue->getType()); in CreateAlignmentAssumption()
1196 return CreateAlignmentAssumptionHelper(DL, PtrValue, AlignValue, OffsetValue); in CreateAlignmentAssumption()
1200 Value *PtrValue, in CreateAlignmentAssumption() argument
1203 assert(isa<PointerType>(PtrValue->getType()) && in CreateAlignmentAssumption()
1205 return CreateAlignmentAssumptionHelper(DL, PtrValue, Alignment, OffsetValue); in CreateAlignmentAssumption()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64FalkorHWPFFix.cpp160 Value *PtrValue = LoadI->getPointerOperand(); in runOnLoop() local
161 if (L.isLoopInvariant(PtrValue)) in runOnLoop()
164 const SCEV *LSCEV = SE.getSCEV(PtrValue); in runOnLoop()
H A DAArch64TargetTransformInfo.cpp1326 Value *PtrValue = LMemI->getPointerOperand(); in getFalkorUnrollingPreferences() local
1327 if (L->isLoopInvariant(PtrValue)) in getFalkorUnrollingPreferences()
1330 const SCEV *LSCEV = SE.getSCEV(PtrValue); in getFalkorUnrollingPreferences()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2303 void CodeGenFunction::emitAlignmentAssumption(llvm::Value *PtrValue, in emitAlignmentAssumption() argument
2317 Builder.CreatePtrToInt(PtrValue, IntPtrTy, "ptrint"); in emitAlignmentAssumption()
2335 CGM.getDataLayout(), PtrValue, Alignment, OffsetValue); in emitAlignmentAssumption()
2339 emitAlignmentAssumptionCheck(PtrValue, Ty, Loc, AssumptionLoc, Alignment, in emitAlignmentAssumption()
2343 void CodeGenFunction::emitAlignmentAssumption(llvm::Value *PtrValue, in emitAlignmentAssumption() argument
2353 emitAlignmentAssumption(PtrValue, Ty, Loc, AssumptionLoc, Alignment, in emitAlignmentAssumption()
H A DCodeGenFunction.h3134 void emitAlignmentAssumption(llvm::Value *PtrValue, QualType Ty,
3139 void emitAlignmentAssumption(llvm::Value *PtrValue, const Expr *E,
H A DCGStmtOpenMP.cpp2192 llvm::Value *PtrValue = CGF.EmitScalarExpr(E); in emitAlignedClause() local
2194 PtrValue, E, /*No second loc needed*/ SourceLocation(), in emitAlignedClause()
H A DCGBuiltin.cpp2812 Value *PtrValue = EmitScalarExpr(Ptr); in EmitBuiltinExpr() local
2822 emitAlignmentAssumption(PtrValue, Ptr, in EmitBuiltinExpr()
2825 return RValue::get(PtrValue); in EmitBuiltinExpr()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DIRBuilder.h2552 Value *PtrValue, Value *AlignValue,
2562 CallInst *CreateAlignmentAssumption(const DataLayout &DL, Value *PtrValue,
2575 CallInst *CreateAlignmentAssumption(const DataLayout &DL, Value *PtrValue,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprObjC.cpp1015 const PointerType *PtrValue = ValueT->getAs<PointerType>(); in BuildObjCDictionaryLiteral() local
1016 if (!PtrValue || in BuildObjCDictionaryLiteral()
1017 !Context.hasSameUnqualifiedType(PtrValue->getPointeeType(), IdT)) { in BuildObjCDictionaryLiteral()