Searched refs:PtrOperand (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | HWAddressSanitizer.cpp | 515 Value *PtrOperand = nullptr; in isInterestingMemoryAccess() local 522 PtrOperand = LI->getPointerOperand(); in isInterestingMemoryAccess() 528 PtrOperand = SI->getPointerOperand(); in isInterestingMemoryAccess() 534 PtrOperand = RMW->getPointerOperand(); in isInterestingMemoryAccess() 540 PtrOperand = XCHG->getPointerOperand(); in isInterestingMemoryAccess() 543 if (PtrOperand) { in isInterestingMemoryAccess() 546 Type *PtrTy = cast<PointerType>(PtrOperand->getType()->getScalarType()); in isInterestingMemoryAccess() 554 if (PtrOperand->isSwiftError()) in isInterestingMemoryAccess() 558 return PtrOperand; in isInterestingMemoryAccess()
|
D | AddressSanitizer.cpp | 1356 Value *PtrOperand = nullptr; in isInterestingMemoryAccess() local 1363 PtrOperand = LI->getPointerOperand(); in isInterestingMemoryAccess() 1369 PtrOperand = SI->getPointerOperand(); in isInterestingMemoryAccess() 1375 PtrOperand = RMW->getPointerOperand(); in isInterestingMemoryAccess() 1381 PtrOperand = XCHG->getPointerOperand(); in isInterestingMemoryAccess() 1409 PtrOperand = BasePtr; in isInterestingMemoryAccess() 1413 if (PtrOperand) { in isInterestingMemoryAccess() 1416 Type *PtrTy = cast<PointerType>(PtrOperand->getType()->getScalarType()); in isInterestingMemoryAccess() 1424 if (PtrOperand->isSwiftError()) in isInterestingMemoryAccess() 1432 if (auto AI = dyn_cast_or_null<AllocaInst>(PtrOperand)) in isInterestingMemoryAccess() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | InferAddressSpaces.cpp | 402 for (Value *PtrOperand : getPointerOperands(*TopVal)) { in collectFlatAddressExpressions() 403 appendsFlatAddressExpressionToPostorderStack(PtrOperand, PostorderStack, in collectFlatAddressExpressions() 732 for (Value *PtrOperand : getPointerOperands(V)) { in updateAddressSpace() 733 auto I = InferredAddrSpace.find(PtrOperand); in updateAddressSpace() 735 I->second : PtrOperand->getType()->getPointerAddressSpace(); in updateAddressSpace()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoadStoreVectorizer.cpp | 572 Value *PtrOperand = getLoadStorePointerOperand(I); in eraseInstructions() local 573 assert(PtrOperand && "Instruction must have a pointer operand."); in eraseInstructions() 575 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(PtrOperand)) in eraseInstructions()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 4324 Value *PtrOperand, *MaskOperand, *Src0Operand; in visitMaskedStore() local 4327 getCompressingStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment); in visitMaskedStore() 4329 getMaskedStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment); in visitMaskedStore() 4331 SDValue Ptr = getValue(PtrOperand); in visitMaskedStore() 4345 getMachineMemOperand(MachinePointerInfo(PtrOperand), in visitMaskedStore() 4513 Value *PtrOperand, *MaskOperand, *Src0Operand; in visitMaskedLoad() local 4516 getExpandingLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment); in visitMaskedLoad() 4518 getMaskedLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment); in visitMaskedLoad() 4520 SDValue Ptr = getValue(PtrOperand); in visitMaskedLoad() 4536 ML = MemoryLocation(PtrOperand); in visitMaskedLoad() [all …]
|