Searched refs:PtrOperand (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp515 Value *PtrOperand = nullptr;
522 PtrOperand = LI->getPointerOperand();
528 PtrOperand = SI->getPointerOperand();
534 PtrOperand = RMW->getPointerOperand();
540 PtrOperand = XCHG->getPointerOperand();
543 if (PtrOperand) {
546 Type *PtrTy = cast<PointerType>(PtrOperand->getType()->getScalarType());
554 if (PtrOperand->isSwiftError())
558 return PtrOperand;
H A DAddressSanitizer.cpp1356 Value *PtrOperand = nullptr;
1363 PtrOperand = LI->getPointerOperand();
1369 PtrOperand = SI->getPointerOperand();
1375 PtrOperand = RMW->getPointerOperand();
1381 PtrOperand = XCHG->getPointerOperand();
1409 PtrOperand = BasePtr;
1413 if (PtrOperand) {
1416 Type *PtrTy = cast<PointerType>(PtrOperand->getType()->getScalarType());
1424 if (PtrOperand->isSwiftError())
1432 if (auto AI = dyn_cast_or_null<AllocaInst>(PtrOperand))
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp402 for (Value *PtrOperand : getPointerOperands(*TopVal)) {
403 appendsFlatAddressExpressionToPostorderStack(PtrOperand, PostorderStack,
732 for (Value *PtrOperand : getPointerOperands(V)) {
733 auto I = InferredAddrSpace.find(PtrOperand);
735 I->second : PtrOperand->getType()->getPointerAddressSpace();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp572 Value *PtrOperand = getLoadStorePointerOperand(I); local
573 assert(PtrOperand && "Instruction must have a pointer operand.");
575 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(PtrOperand))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp4324 Value *PtrOperand, *MaskOperand, *Src0Operand; local
4327 getCompressingStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
4329 getMaskedStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
4331 SDValue Ptr = getValue(PtrOperand);
4345 getMachineMemOperand(MachinePointerInfo(PtrOperand),
4513 Value *PtrOperand, *MaskOperand, *Src0Operand; local
4516 getExpandingLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
4518 getMaskedLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
4520 SDValue Ptr = getValue(PtrOperand);
4536 ML = MemoryLocation(PtrOperand);
[all...]

Completed in 205 milliseconds