Home
last modified time | relevance | path

Searched refs:UnderlyingObject (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp390 Value *UnderlyingObject = findValue(Ptr, /*OffsetOk=*/true); in visitMemoryReference() local
391 Check(!isa<ConstantPointerNull>(UnderlyingObject), in visitMemoryReference()
393 Check(!isa<UndefValue>(UnderlyingObject), in visitMemoryReference()
395 Check(!isa<ConstantInt>(UnderlyingObject) || in visitMemoryReference()
396 !cast<ConstantInt>(UnderlyingObject)->isMinusOne(), in visitMemoryReference()
398 Check(!isa<ConstantInt>(UnderlyingObject) || in visitMemoryReference()
399 !cast<ConstantInt>(UnderlyingObject)->isOne(), in visitMemoryReference()
403 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(UnderlyingObject)) in visitMemoryReference()
406 Check(!isa<Function>(UnderlyingObject) && in visitMemoryReference()
407 !isa<BlockAddress>(UnderlyingObject), in visitMemoryReference()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDAGInstrs.h103 struct UnderlyingObject : PointerIntPair<ValueType, 1, bool> { struct
104 UnderlyingObject(ValueType V, bool MayAlias) in UnderlyingObject() argument
111 using UnderlyingObjectsVector = SmallVector<UnderlyingObject, 4>; argument
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp966 for (const UnderlyingObject &UnderlObj : Objs) { in buildSchedGraph()
976 for (const UnderlyingObject &UnderlObj : Objs) { in buildSchedGraph()
996 for (const UnderlyingObject &UnderlObj : Objs) { in buildSchedGraph()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp140 const auto &[UnderlyingObject, AddrSpace, ElementSize, IsLoad] = K; in operator <<()
141 return OS << (IsLoad ? "load" : "store") << " of " << *UnderlyingObject in operator <<()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp3060 Value *UnderlyingObject = getUnderlyingObject(Hint, /*MaxLookup*/ 0); in visitCallInst() local
3061 if (Hint != UnderlyingObject) in visitCallInst()
3062 replaceUse(const_cast<Use &>(U), UnderlyingObject); in visitCallInst()