Searched refs:LValuePathEntry (Results 1 – 11 of 11) sorted by relevance
| /openbsd-src/gnu/llvm/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; 246 LValuePathSerializationHelper(ArrayRef<LValuePathEntry>, QualType); [all …]
|
| 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 | 121 def LValuePathEntry : PropertyType<"APValue::LValuePathEntry">; 124 let BufferElementTypes = [ LValuePathEntry ]; 540 APValue::LValuePathEntry *path = result.setLValueUninit(
|
| /openbsd-src/gnu/llvm/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() 604 for (LValuePathEntry E : getLValuePath()) in Profile() [all …]
|
| H A D | Expr.cpp | 2276 using LValuePathEntry = APValue::LValuePathEntry; in EvaluateInContext() typedef 2279 LValuePathEntry Path[1] = {LValuePathEntry::ArrayIndex(0)}; in EvaluateInContext() 2350 return APValue(GV, CharUnits::Zero(), ArrayRef<APValue::LValuePathEntry>{}, in EvaluateInContext()
|
| H A D | ItaniumMangle.cpp | 5415 {APValue::LValuePathEntry::ArrayIndex(0)}, in mangleTemplateArg() 5420 ArrayRef<APValue::LValuePathEntry>(), in mangleTemplateArg() 5564 for (APValue::LValuePathEntry E : LV.getLValuePath()) { in getLValueType() 5910 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleValueInTemplateArg()
|
| H A D | MicrosoftMangle.cpp | 1755 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleTemplateArgValue() 1777 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; 717 ArrayRef<APValue::LValuePathEntry> Path; 908 ArrayRef<APValue::LValuePathEntry> Path) { in isEvaluatingCtorDtor() 5699 ArrayRef<APValue::LValuePathEntry> Path = This.Designator.Entries; in ComputeDynamicType()
|
| H A D | ASTImporter.cpp | 9935 MutableArrayRef<APValue::LValuePathEntry> ToPath = Result.setLValueUninit( in ImportAPValue() 9938 llvm::ArrayRef<APValue::LValuePathEntry> FromPath = in ImportAPValue() 9951 ToPath[LoopIdx] = APValue::LValuePathEntry(APValue::BaseOrMemberType( in ImportAPValue() 9956 ToPath[LoopIdx] = APValue::LValuePathEntry::ArrayIndex( in ImportAPValue()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/Interp/ |
| H A D | Pointer.cpp | 80 llvm::SmallVector<APValue::LValuePathEntry, 5> Path; in toAPValue() 114 Path.push_back(APValue::LValuePathEntry::ArrayIndex(Ptr.getIndex())); in toAPValue() 123 Path.push_back(APValue::LValuePathEntry({BaseOrMember, IsVirtual})); in toAPValue()
|