[Lldb-commits] [PATCH] D86090: Make DWARFExpression::GetLocationExpression public

Derek Schuff via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 20 15:14:55 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG4e266eaf132f: Make DWARFExpression::GetLocationExpression public (authored by Eric, committed by dschuff).
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D86090/new/

https://reviews.llvm.org/D86090

Files:
  lldb/include/lldb/Expression/DWARFExpression.h


Index: lldb/include/lldb/Expression/DWARFExpression.h
===================================================================
--- lldb/include/lldb/Expression/DWARFExpression.h
+++ lldb/include/lldb/Expression/DWARFExpression.h
@@ -219,6 +219,10 @@
 
   bool MatchesOperand(StackFrame &frame, const Instruction::Operand &op);
 
+  llvm::Optional<DataExtractor>
+  GetLocationExpression(lldb::addr_t load_function_start,
+                        lldb::addr_t addr) const;
+
 private:
   /// Pretty-prints the location expression to a stream
   ///
@@ -237,10 +241,6 @@
   void DumpLocation(Stream *s, const DataExtractor &data,
                     lldb::DescriptionLevel level, ABI *abi) const;
 
-  llvm::Optional<DataExtractor>
-  GetLocationExpression(lldb::addr_t load_function_start,
-                        lldb::addr_t addr) const;
-
   /// Module which defined this expression.
   lldb::ModuleWP m_module_wp;
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D86090.286905.patch
Type: text/x-patch
Size: 916 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200820/bff62a33/attachment.bin>


More information about the lldb-commits mailing list