Searched refs:PtrOperand (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | HWAddressSanitizer.cpp | 433 Value *PtrOperand = nullptr; in isInterestingMemoryAccess() local 440 PtrOperand = LI->getPointerOperand(); in isInterestingMemoryAccess() 446 PtrOperand = SI->getPointerOperand(); in isInterestingMemoryAccess() 452 PtrOperand = RMW->getPointerOperand(); in isInterestingMemoryAccess() 458 PtrOperand = XCHG->getPointerOperand(); in isInterestingMemoryAccess() 461 if (PtrOperand) { in isInterestingMemoryAccess() 464 Type *PtrTy = cast<PointerType>(PtrOperand->getType()->getScalarType()); in isInterestingMemoryAccess() 472 if (PtrOperand->isSwiftError()) in isInterestingMemoryAccess() 476 return PtrOperand; in isInterestingMemoryAccess()
|
| H A D | AddressSanitizer.cpp | 1226 Value *PtrOperand = nullptr; in isInterestingMemoryAccess() local 1233 PtrOperand = LI->getPointerOperand(); in isInterestingMemoryAccess() 1239 PtrOperand = SI->getPointerOperand(); in isInterestingMemoryAccess() 1245 PtrOperand = RMW->getPointerOperand(); in isInterestingMemoryAccess() 1251 PtrOperand = XCHG->getPointerOperand(); in isInterestingMemoryAccess() 1279 PtrOperand = BasePtr; in isInterestingMemoryAccess() 1283 if (PtrOperand) { in isInterestingMemoryAccess() 1286 Type *PtrTy = cast<PointerType>(PtrOperand->getType()->getScalarType()); in isInterestingMemoryAccess() 1294 if (PtrOperand->isSwiftError()) in isInterestingMemoryAccess() 1302 if (auto AI = dyn_cast_or_null<AllocaInst>(PtrOperand)) in isInterestingMemoryAccess() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | InferAddressSpaces.cpp | 404 for (Value *PtrOperand : getPointerOperands(*TopVal)) { in collectFlatAddressExpressions() 405 appendsFlatAddressExpressionToPostorderStack(PtrOperand, PostorderStack, in collectFlatAddressExpressions() 725 for (Value *PtrOperand : getPointerOperands(V)) { in updateAddressSpace() 726 auto I = InferredAddrSpace.find(PtrOperand); in updateAddressSpace() 728 I->second : PtrOperand->getType()->getPointerAddressSpace(); in updateAddressSpace()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/ |
| H A D | LoadStoreVectorizer.cpp | 557 Value *PtrOperand = getLoadStorePointerOperand(I); in eraseInstructions() local 558 assert(PtrOperand && "Instruction must have a pointer operand."); in eraseInstructions() 560 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(PtrOperand)) in eraseInstructions()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 3934 Value *PtrOperand, *MaskOperand, *Src0Operand; in visitMaskedStore() local 3937 getCompressingStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment); in visitMaskedStore() 3939 getMaskedStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment); in visitMaskedStore() 3941 SDValue Ptr = getValue(PtrOperand); in visitMaskedStore() 3954 getMachineMemOperand(MachinePointerInfo(PtrOperand), in visitMaskedStore() 4084 Value *PtrOperand, *MaskOperand, *Src0Operand; in visitMaskedLoad() local 4087 getExpandingLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment); in visitMaskedLoad() 4089 getMaskedLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment); in visitMaskedLoad() 4091 SDValue Ptr = getValue(PtrOperand); in visitMaskedLoad() 4106 PtrOperand, in visitMaskedLoad() [all …]
|