Home
last modified time | relevance | path

Searched refs:GetLastPointerSymbol (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dtools.cpp1001 static const Symbol *GetLastPointerSymbol(const Symbol &symbol) { in GetLastPointerSymbol() function
1005 return GetLastPointerSymbol(*symbol); in GetLastPointerSymbol()
1007 static const Symbol *GetLastPointerSymbol(const Component &x) { in GetLastPointerSymbol() function
1009 return IsPointer(c) ? &c : GetLastPointerSymbol(x.base()); in GetLastPointerSymbol()
1011 static const Symbol *GetLastPointerSymbol(const NamedEntity &x) { in GetLastPointerSymbol() function
1013 return c ? GetLastPointerSymbol(*c) : GetLastPointerSymbol(x.GetLastSymbol()); in GetLastPointerSymbol()
1015 static const Symbol *GetLastPointerSymbol(const ArrayRef &x) { in GetLastPointerSymbol() function
1016 return GetLastPointerSymbol(x.base()); in GetLastPointerSymbol()
1018 static const Symbol *GetLastPointerSymbol(const CoarrayRef &x) { in GetLastPointerSymbol() function
1021 const Symbol *GetLastPointerSymbol(const DataRef &x) { in GetLastPointerSymbol() function
[all …]
/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dtools.h469 const Symbol *GetLastPointerSymbol(const evaluate::DataRef &);
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dtools.cpp884 if (!GetLastPointerSymbol(*dataRef)) { in WhyNotModifiable()