Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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;
492 ArrayRef<LValuePathEntry> getLValuePath() const;
[all …]
H A DAbstractBasicReader.h192 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 DAbstractBasicWriter.h174 ArrayRef<APValue::LValuePathEntry> path = lvaluePath.Path; in writeLValuePathSerializationHelper()
H A DPropertiesBase.td121 def LValuePathEntry : PropertyType<"APValue::LValuePathEntry">;
124 let BufferElementTypes = [ LValuePathEntry ];
557 APValue::LValuePathEntry *path = result.setLValueUninit(
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp147 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()
606 for (LValuePathEntry E : getLValuePath()) in Profile()
825 ArrayRef<LValuePathEntry> Path = getLValuePath(); in printPretty()
1022 MutableArrayRef<APValue::LValuePathEntry>
1042 Path.size() * sizeof(LValuePathEntry)); in setLValue()
[all …]
H A DExpr.cpp2269 using LValuePathEntry = APValue::LValuePathEntry; in EvaluateInContext() typedef
2272 LValuePathEntry Path[1] = {LValuePathEntry::ArrayIndex(0)}; in EvaluateInContext()
2344 return APValue(GV, CharUnits::Zero(), ArrayRef<APValue::LValuePathEntry>{}, in EvaluateInContext()
H A DODRHash.cpp1279 for (APValue::LValuePathEntry E : Value.getLValuePath()) { in AddStructuralValue()
H A DItaniumMangle.cpp6075 {APValue::LValuePathEntry::ArrayIndex(0)}, in mangleTemplateArg()
6080 ArrayRef<APValue::LValuePathEntry>(), in mangleTemplateArg()
6228 for (APValue::LValuePathEntry E : LV.getLValuePath()) { in getLValueType()
6586 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleValueInTemplateArg()
H A DExprConstant.cpp90 static const FieldDecl *getAsField(APValue::LValuePathEntry E) { in getAsField()
95 static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) { in getAsBaseClass()
100 static bool isVirtualBaseClass(APValue::LValuePathEntry E) { in isVirtualBaseClass()
194 ArrayRef<APValue::LValuePathEntry> Path, in findMostDerivedSubobject()
270 typedef APValue::LValuePathEntry PathEntry;
740 ArrayRef<APValue::LValuePathEntry> Path;
931 ArrayRef<APValue::LValuePathEntry> Path) { in isEvaluatingCtorDtor()
5784 ArrayRef<APValue::LValuePathEntry> Path = This.Designator.Entries; in ComputeDynamicType()
H A DASTImporter.cpp10275 MutableArrayRef<APValue::LValuePathEntry> ToPath = Result.setLValueUninit( in ImportAPValue()
10278 llvm::ArrayRef<APValue::LValuePathEntry> FromPath = in ImportAPValue()
10291 ToPath[LoopIdx] = APValue::LValuePathEntry(APValue::BaseOrMemberType( in ImportAPValue()
10296 ToPath[LoopIdx] = APValue::LValuePathEntry::ArrayIndex( in ImportAPValue()
H A DMicrosoftMangle.cpp1854 for (APValue::LValuePathEntry E : V.getLValuePath()) { in mangleTemplateArgValue()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DPointer.cpp85 llvm::SmallVector<APValue::LValuePathEntry, 5> Path; in toAPValue()
123 Path.push_back(APValue::LValuePathEntry::ArrayIndex(Ptr.getIndex())); in toAPValue()
132 Path.push_back(APValue::LValuePathEntry({BaseOrMember, IsVirtual})); in toAPValue()