Home
last modified time | relevance | path

Searched refs:LValuePathEntry (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DAPValue.h208 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 DAbstractBasicReader.h192 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 DAbstractBasicWriter.h177 ArrayRef<APValue::LValuePathEntry> path = lvaluePath.Path; in writeLValuePathSerializationHelper()
H A DPropertiesBase.td118 def LValuePathEntry : PropertyType<"APValue::LValuePathEntry">;
121 let BufferElementTypes = [ LValuePathEntry ];
540 APValue::LValuePathEntry *path = result.setLValueUninit(
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DAPValue.cpp147 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 DItaniumMangle.cpp5314 {APValue::LValuePathEntry::ArrayIndex(0)}, in mangleTemplateArg()
5319 ArrayRef<APValue::LValuePathEntry>(), in mangleTemplateArg()
5463 for (APValue::LValuePathEntry E : LV.getLValuePath()) { in getLValueType()
5766 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleValueInTemplateArg()
H A DExpr.cpp2159 using LValuePathEntry = APValue::LValuePathEntry; in EvaluateInContext() typedef
2162 LValuePathEntry Path[1] = {LValuePathEntry::ArrayIndex(0)}; in EvaluateInContext()
H A DMicrosoftMangle.cpp1720 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleTemplateArgValue()
1742 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleTemplateArgValue()
H A DExprConstant.cpp87 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()
5606 ArrayRef<APValue::LValuePathEntry> Path = This.Designator.Entries; in ComputeDynamicType()
H A DASTImporter.cpp9271 MutableArrayRef<APValue::LValuePathEntry> ToPath = Result.setLValueUninit( in ImportAPValue()
9274 llvm::ArrayRef<APValue::LValuePathEntry> FromPath = in ImportAPValue()
9287 ToPath[LoopIdx] = APValue::LValuePathEntry(APValue::BaseOrMemberType( in ImportAPValue()
9292 ToPath[LoopIdx] = APValue::LValuePathEntry::ArrayIndex( in ImportAPValue()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DPointer.cpp77 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()