Home
last modified time | relevance | path

Searched refs:PathLength (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/
H A DAPValue.cpp169 unsigned PathLength; member
233 LV() { PathLength = (unsigned)-1; } in LV()
237 if (Length == PathLength) in resizePath()
241 PathLength = Length; in resizePath()
246 bool hasPath() const { return PathLength != (unsigned)-1; } in hasPath()
258 unsigned PathLength; member
271 MemberPointerData() { PathLength = 0; } in MemberPointerData()
275 if (Length == PathLength) in resizePath()
279 PathLength = Length; in resizePath()
1065 return llvm::makeArrayRef(MPD.getPath(), MPD.PathLength); in getMemberPointerPath()
[all …]
H A DExprConstant.cpp5653 unsigned PathLength; member
5658 assert(PathLength >= Designator.MostDerivedPathLength && PathLength <= in getBaseClassType()
5693 PathLength <= Path.size(); ++PathLength) { in ComputeDynamicType()
5709 PathLength}; in ComputeDynamicType()
5735 unsigned PathLength = DynType->PathLength; in HandleVirtualDispatch() local
5736 for (/**/; PathLength <= This.Designator.Entries.size(); ++PathLength) { in HandleVirtualDispatch()
5890 PathLength >= (int)DynType->PathLength; --PathLength) { in HandleDynamicCast()
5895 if (PathLength > (int)DynType->PathLength && in HandleDynamicCast()
6005 --PathLength; in HandleUnionActiveMemberChange()
6019 --PathLength; in HandleUnionActiveMemberChange()
[all …]
H A DASTImporter.cpp9778 unsigned PathLength = FromValue.getLValuePath().size(); in ImportAPValue() local
9782 Base, Offset, PathLength, FromValue.isLValueOnePastTheEnd(), in ImportAPValue()
9786 for (unsigned LoopIdx = 0; LoopIdx < PathLength; LoopIdx++) { in ImportAPValue()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DVLIWMachineScheduler.h202 unsigned PathLength = isTop() ? SU->getHeight() : SU->getDepth(); in isLatencyBound() local
203 return CriticalPathLength - CurrCycle <= PathLength; in isLatencyBound()