Searched refs:LValuePathEntry (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | APValue.cpp | 147 APValue::LValuePathEntry::LValuePathEntry(BaseOrMemberType BaseOrMember) { in LValuePathEntry() function in APValue::LValuePathEntry 153 void APValue::LValuePathEntry::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() 158 ArrayRef<LValuePathEntry> Path, QualType ElemTy) in LValuePathSerializationHelper() 223 (DataSize - sizeof(LVBase)) / sizeof(LValuePathEntry); 229 LValuePathEntry Path[InlinePathSpace]; 230 LValuePathEntry *PathPtr; 243 PathPtr = new LValuePathEntry[Length]; in resizePath() 249 LValuePathEntry *getPath() { return hasPathPtr() ? PathPtr : Path; } in getPath() 250 const LValuePathEntry *getPath() const { in getPath() 606 for (LValuePathEntry E : getLValuePath()) in Profile() [all …]
|
H A D | Expr.cpp | 2294 using LValuePathEntry = APValue::LValuePathEntry; in EvaluateInContext() typedef 2297 LValuePathEntry Path[1] = {LValuePathEntry::ArrayIndex(0)}; in EvaluateInContext() 2369 return APValue(GV, CharUnits::Zero(), ArrayRef<APValue::LValuePathEntry>{}, in EvaluateInContext()
|
H A D | ODRHash.cpp | 1296 for (APValue::LValuePathEntry E : Value.getLValuePath()) { in AddStructuralValue()
|
H A D | ItaniumMangle.cpp | 6106 {APValue::LValuePathEntry::ArrayIndex(0)}, in mangleTemplateArg() 6111 ArrayRef<APValue::LValuePathEntry>(), in mangleTemplateArg() 6259 for (APValue::LValuePathEntry E : LV.getLValuePath()) { in getLValueType() 6617 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleValueInTemplateArg()
|
H A D | ExprConstant.cpp | 91 static const FieldDecl *getAsField(APValue::LValuePathEntry E) { in getAsField() 96 static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) { in getAsBaseClass() 101 static bool isVirtualBaseClass(APValue::LValuePathEntry E) { in isVirtualBaseClass() 195 ArrayRef<APValue::LValuePathEntry> Path, in findMostDerivedSubobject() 275 typedef APValue::LValuePathEntry PathEntry; 745 ArrayRef<APValue::LValuePathEntry> Path; 936 ArrayRef<APValue::LValuePathEntry> Path) { in isEvaluatingCtorDtor() 5845 ArrayRef<APValue::LValuePathEntry> Path = This.Designator.Entries; in ComputeDynamicType()
|
H A D | ASTImporter.cpp | 10369 MutableArrayRef<APValue::LValuePathEntry> ToPath = Result.setLValueUninit( in ImportAPValue() 10372 llvm::ArrayRef<APValue::LValuePathEntry> FromPath = in ImportAPValue() 10385 ToPath[LoopIdx] = APValue::LValuePathEntry(APValue::BaseOrMemberType( in ImportAPValue() 10390 ToPath[LoopIdx] = APValue::LValuePathEntry::ArrayIndex( in ImportAPValue()
|
H A D | MicrosoftMangle.cpp | 1956 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleTemplateArgValue()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | AbstractBasicReader.h | 192 SmallVectorImpl<APValue::LValuePathEntry> &path) { in readLValuePathSerializationHelper() 205 APValue::LValuePathEntry(APValue::BaseOrMemberType(decl, int_))); in readLValuePathSerializationHelper() 209 APValue::LValuePathEntry::ArrayIndex(asImpl().readUInt32())); in readLValuePathSerializationHelper()
|
H A D | AbstractBasicWriter.h | 174 ArrayRef<APValue::LValuePathEntry> path = lvaluePath.Path; in writeLValuePathSerializationHelper()
|
H A D | PropertiesBase.td | 123 def LValuePathEntry : PropertyType<"APValue::LValuePathEntry">; 126 let BufferElementTypes = [ LValuePathEntry ]; 560 APValue::LValuePathEntry *path = result.setLValueUninit(
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Pointer.cpp | 124 llvm::SmallVector<APValue::LValuePathEntry, 5> Path; in toAPValue() 165 Path.push_back(APValue::LValuePathEntry( in toAPValue() 180 Path.push_back(APValue::LValuePathEntry::ArrayIndex(Index)); in toAPValue() 206 Path.push_back(APValue::LValuePathEntry({BaseOrMember, IsVirtual})); in toAPValue()
|