Searched refs:LValuePathEntry (Results 1 – 11 of 11) sorted by relevance
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | APValue.h | 208 class LValuePathEntry { 214 LValuePathEntry() : Value() {} 215 LValuePathEntry(BaseOrMemberType BaseOrMember); 216 static LValuePathEntry ArrayIndex(uint64_t Index) { 217 LValuePathEntry Result; 230 friend bool operator==(LValuePathEntry A, LValuePathEntry B) { 233 friend bool operator!=(LValuePathEntry A, LValuePathEntry B) { 236 friend llvm::hash_code hash_value(LValuePathEntry A) { 244 ArrayRef<LValuePathEntry> Path; 484 ArrayRef<LValuePathEntry> getLValuePath() const; [all …]
|
| H A D | AbstractBasicReader.h | 192 SmallVectorImpl<APValue::LValuePathEntry> &path) { in readLValuePathSerializationHelper() 204 APValue::LValuePathEntry(APValue::BaseOrMemberType(decl, int_))); in readLValuePathSerializationHelper() 208 APValue::LValuePathEntry::ArrayIndex(asImpl().readUInt32())); in readLValuePathSerializationHelper()
|
| H A D | AbstractBasicWriter.h | 177 ArrayRef<APValue::LValuePathEntry> path = lvaluePath.Path; in writeLValuePathSerializationHelper()
|
| H A D | PropertiesBase.td | 121 def LValuePathEntry : PropertyType<"APValue::LValuePathEntry">; 124 let BufferElementTypes = [ LValuePathEntry ]; 543 APValue::LValuePathEntry *path = result.setLValueUninit(
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | APValue.cpp | 147 APValue::LValuePathEntry::LValuePathEntry(BaseOrMemberType BaseOrMember) { in LValuePathEntry() function in APValue::LValuePathEntry 158 ArrayRef<LValuePathEntry> Path, QualType ElemTy) in LValuePathSerializationHelper() 229 LValuePathEntry Path[InlinePathSpace]; 230 LValuePathEntry *PathPtr; 243 PathPtr = new LValuePathEntry[Length]; in resizePath() 250 const LValuePathEntry *getPath() const { in getPath() 604 for (LValuePathEntry E : getLValuePath()) in Profile() 823 ArrayRef<LValuePathEntry> Path = getLValuePath(); in printPretty() 1016 MutableArrayRef<APValue::LValuePathEntry> 1036 Path.size() * sizeof(LValuePathEntry)); in setLValue() [all …]
|
| H A D | Expr.cpp | 2189 using LValuePathEntry = APValue::LValuePathEntry; in EvaluateInContext() typedef 2192 LValuePathEntry Path[1] = {LValuePathEntry::ArrayIndex(0)}; in EvaluateInContext() 2263 return APValue(GV, CharUnits::Zero(), ArrayRef<APValue::LValuePathEntry>{}, in EvaluateInContext()
|
| H A D | ItaniumMangle.cpp | 5414 {APValue::LValuePathEntry::ArrayIndex(0)}, in mangleTemplateArg() 5419 ArrayRef<APValue::LValuePathEntry>(), in mangleTemplateArg() 5563 for (APValue::LValuePathEntry E : LV.getLValuePath()) { in getLValueType() 5909 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleValueInTemplateArg()
|
| H A D | MicrosoftMangle.cpp | 1751 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleTemplateArgValue() 1773 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleTemplateArgValue()
|
| H A D | ExprConstant.cpp | 87 static const FieldDecl *getAsField(APValue::LValuePathEntry E) { in getAsField() 92 static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) { in getAsBaseClass() 97 static bool isVirtualBaseClass(APValue::LValuePathEntry E) { in isVirtualBaseClass() 191 ArrayRef<APValue::LValuePathEntry> Path, in findMostDerivedSubobject() 267 typedef APValue::LValuePathEntry PathEntry; 709 ArrayRef<APValue::LValuePathEntry> Path; 900 ArrayRef<APValue::LValuePathEntry> Path) { in isEvaluatingCtorDtor() 5691 ArrayRef<APValue::LValuePathEntry> Path = This.Designator.Entries; in ComputeDynamicType()
|
| H A D | ASTImporter.cpp | 9781 MutableArrayRef<APValue::LValuePathEntry> ToPath = Result.setLValueUninit( in ImportAPValue() 9784 llvm::ArrayRef<APValue::LValuePathEntry> FromPath = in ImportAPValue() 9797 ToPath[LoopIdx] = APValue::LValuePathEntry(APValue::BaseOrMemberType( in ImportAPValue() 9802 ToPath[LoopIdx] = APValue::LValuePathEntry::ArrayIndex( in ImportAPValue()
|
| /llvm-project-15.0.7/clang/lib/AST/Interp/ |
| H A D | Pointer.cpp | 77 llvm::SmallVector<APValue::LValuePathEntry, 5> Path; in toAPValue() 111 Path.push_back(APValue::LValuePathEntry::ArrayIndex(Ptr.getIndex())); in toAPValue() 120 Path.push_back(APValue::LValuePathEntry({BaseOrMember, IsVirtual})); in toAPValue()
|