This revision was automatically updated to reflect the committed changes.
Closed by commit rL357639: [Reproducers] Capture return values of functions 
returning by ptr/ref (authored by JDevlieghere, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D60178?vs=193581&id=193599#toc

Repository:
  rL LLVM

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

https://reviews.llvm.org/D60178

Files:
  lldb/trunk/include/lldb/Utility/ReproducerInstrumentation.h
  lldb/trunk/lit/tools/lldb-instr/Inputs/foo.cpp
  lldb/trunk/lit/tools/lldb-instr/Inputs/foo.h
  lldb/trunk/lit/tools/lldb-instr/TestInstrumentationRecord.test
  lldb/trunk/lit/tools/lldb-instr/TestInstrumentationRegister.test
  lldb/trunk/source/API/SBAddress.cpp
  lldb/trunk/source/API/SBAttachInfo.cpp
  lldb/trunk/source/API/SBBlock.cpp
  lldb/trunk/source/API/SBBreakpoint.cpp
  lldb/trunk/source/API/SBBreakpointLocation.cpp
  lldb/trunk/source/API/SBBreakpointName.cpp
  lldb/trunk/source/API/SBBroadcaster.cpp
  lldb/trunk/source/API/SBCommandInterpreter.cpp
  lldb/trunk/source/API/SBCommandReturnObject.cpp
  lldb/trunk/source/API/SBCompileUnit.cpp
  lldb/trunk/source/API/SBData.cpp
  lldb/trunk/source/API/SBDebugger.cpp
  lldb/trunk/source/API/SBDeclaration.cpp
  lldb/trunk/source/API/SBError.cpp
  lldb/trunk/source/API/SBEvent.cpp
  lldb/trunk/source/API/SBExecutionContext.cpp
  lldb/trunk/source/API/SBExpressionOptions.cpp
  lldb/trunk/source/API/SBFileSpec.cpp
  lldb/trunk/source/API/SBFileSpecList.cpp
  lldb/trunk/source/API/SBFrame.cpp
  lldb/trunk/source/API/SBFunction.cpp
  lldb/trunk/source/API/SBInstruction.cpp
  lldb/trunk/source/API/SBInstructionList.cpp
  lldb/trunk/source/API/SBLineEntry.cpp
  lldb/trunk/source/API/SBListener.cpp
  lldb/trunk/source/API/SBMemoryRegionInfo.cpp
  lldb/trunk/source/API/SBMemoryRegionInfoList.cpp
  lldb/trunk/source/API/SBModule.cpp
  lldb/trunk/source/API/SBModuleSpec.cpp
  lldb/trunk/source/API/SBProcess.cpp
  lldb/trunk/source/API/SBProcessInfo.cpp
  lldb/trunk/source/API/SBQueue.cpp
  lldb/trunk/source/API/SBSection.cpp
  lldb/trunk/source/API/SBSourceManager.cpp
  lldb/trunk/source/API/SBStringList.cpp
  lldb/trunk/source/API/SBStructuredData.cpp
  lldb/trunk/source/API/SBSymbol.cpp
  lldb/trunk/source/API/SBSymbolContext.cpp
  lldb/trunk/source/API/SBSymbolContextList.cpp
  lldb/trunk/source/API/SBTarget.cpp
  lldb/trunk/source/API/SBThread.cpp
  lldb/trunk/source/API/SBThreadCollection.cpp
  lldb/trunk/source/API/SBThreadPlan.cpp
  lldb/trunk/source/API/SBType.cpp
  lldb/trunk/source/API/SBTypeCategory.cpp
  lldb/trunk/source/API/SBTypeEnumMember.cpp
  lldb/trunk/source/API/SBTypeFilter.cpp
  lldb/trunk/source/API/SBTypeFormat.cpp
  lldb/trunk/source/API/SBTypeNameSpecifier.cpp
  lldb/trunk/source/API/SBTypeSummary.cpp
  lldb/trunk/source/API/SBTypeSynthetic.cpp
  lldb/trunk/source/API/SBUnixSignals.cpp
  lldb/trunk/source/API/SBValue.cpp
  lldb/trunk/source/API/SBValueList.cpp
  lldb/trunk/source/API/SBVariablesOptions.cpp
  lldb/trunk/source/API/SBWatchpoint.cpp
  lldb/trunk/source/Utility/ReproducerInstrumentation.cpp
  lldb/trunk/tools/lldb-instr/Instrument.cpp
  lldb/trunk/unittests/Utility/ReproducerInstrumentationTest.cpp

Index: lldb/trunk/tools/lldb-instr/Instrument.cpp
===================================================================
--- lldb/trunk/tools/lldb-instr/Instrument.cpp
+++ lldb/trunk/tools/lldb-instr/Instrument.cpp
@@ -245,7 +245,9 @@
 
     // If the function returns a class or struct, we need to wrap its return
     // statement(s).
-    if (!ShouldInsertDummy && ReturnType->isStructureOrClassType()) {
+    bool ShouldRecordResult = ReturnType->isStructureOrClassType() ||
+                              ReturnType->getPointeeCXXRecordDecl();
+    if (!ShouldInsertDummy && ShouldRecordResult) {
       SBReturnVisitor Visitor(MyRewriter);
       Visitor.TraverseDecl(Decl);
     }
Index: lldb/trunk/source/API/SBType.cpp
===================================================================
--- lldb/trunk/source/API/SBType.cpp
+++ lldb/trunk/source/API/SBType.cpp
@@ -86,7 +86,7 @@
   if (this != &rhs) {
     m_opaque_sp = rhs.m_opaque_sp;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBType::~SBType() {}
@@ -592,7 +592,7 @@
          i < rhs_size; i++)
       Append(const_cast<SBTypeList &>(rhs).GetTypeAtIndex(i));
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 void SBTypeList::Append(SBType type) {
@@ -642,7 +642,7 @@
     if (rhs.IsValid())
       m_opaque_up.reset(new TypeMemberImpl(rhs.ref()));
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBTypeMember::IsValid() const {
@@ -771,7 +771,7 @@
 
   if (this != &rhs)
     m_opaque_sp = rhs.m_opaque_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBTypeMemberFunction::IsValid() const {
Index: lldb/trunk/source/API/SBValue.cpp
===================================================================
--- lldb/trunk/source/API/SBValue.cpp
+++ lldb/trunk/source/API/SBValue.cpp
@@ -236,7 +236,7 @@
   if (this != &rhs) {
     SetSP(rhs.m_opaque_sp);
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBValue::~SBValue() {}
Index: lldb/trunk/source/API/SBThreadPlan.cpp
===================================================================
--- lldb/trunk/source/API/SBThreadPlan.cpp
+++ lldb/trunk/source/API/SBThreadPlan.cpp
@@ -82,7 +82,7 @@
 
   if (this != &rhs)
     m_opaque_sp = rhs.m_opaque_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 //----------------------------------------------------------------------
 // Destructor
@@ -92,7 +92,7 @@
 lldb_private::ThreadPlan *SBThreadPlan::get() {
   LLDB_RECORD_METHOD_NO_ARGS(lldb_private::ThreadPlan *, SBThreadPlan, get);
 
-  return m_opaque_sp.get();
+  return LLDB_RECORD_RESULT(m_opaque_sp.get());
 }
 
 bool SBThreadPlan::IsValid() const {
Index: lldb/trunk/source/API/SBSymbol.cpp
===================================================================
--- lldb/trunk/source/API/SBSymbol.cpp
+++ lldb/trunk/source/API/SBSymbol.cpp
@@ -34,7 +34,7 @@
                      SBSymbol, operator=,(const lldb::SBSymbol &), rhs);
 
   m_opaque_ptr = rhs.m_opaque_ptr;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBSymbol::~SBSymbol() { m_opaque_ptr = NULL; }
Index: lldb/trunk/source/API/SBModuleSpec.cpp
===================================================================
--- lldb/trunk/source/API/SBModuleSpec.cpp
+++ lldb/trunk/source/API/SBModuleSpec.cpp
@@ -35,7 +35,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBModuleSpec::~SBModuleSpec() {}
@@ -166,7 +166,7 @@
 
   if (this != &rhs)
     *m_opaque_up = *rhs.m_opaque_up;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBModuleSpecList::~SBModuleSpecList() {}
Index: lldb/trunk/source/API/SBBreakpointName.cpp
===================================================================
--- lldb/trunk/source/API/SBBreakpointName.cpp
+++ lldb/trunk/source/API/SBBreakpointName.cpp
@@ -166,12 +166,12 @@
 
   if (!rhs.m_impl_up) {
     m_impl_up.reset();
-    return *this;
+    return LLDB_RECORD_RESULT(*this);
   }
 
   m_impl_up.reset(new SBBreakpointNameImpl(rhs.m_impl_up->GetTarget(),
                                            rhs.m_impl_up->GetName()));
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBBreakpointName::operator==(const lldb::SBBreakpointName &rhs) {
Index: lldb/trunk/source/API/SBFileSpec.cpp
===================================================================
--- lldb/trunk/source/API/SBFileSpec.cpp
+++ lldb/trunk/source/API/SBFileSpec.cpp
@@ -59,7 +59,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBFileSpec::operator==(const SBFileSpec &rhs) const {
Index: lldb/trunk/source/API/SBBroadcaster.cpp
===================================================================
--- lldb/trunk/source/API/SBBroadcaster.cpp
+++ lldb/trunk/source/API/SBBroadcaster.cpp
@@ -45,7 +45,7 @@
     m_opaque_sp = rhs.m_opaque_sp;
     m_opaque_ptr = rhs.m_opaque_ptr;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBBroadcaster::~SBBroadcaster() { reset(NULL, false); }
Index: lldb/trunk/source/API/SBMemoryRegionInfo.cpp
===================================================================
--- lldb/trunk/source/API/SBMemoryRegionInfo.cpp
+++ lldb/trunk/source/API/SBMemoryRegionInfo.cpp
@@ -43,7 +43,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBMemoryRegionInfo::~SBMemoryRegionInfo() {}
Index: lldb/trunk/source/API/SBTarget.cpp
===================================================================
--- lldb/trunk/source/API/SBTarget.cpp
+++ lldb/trunk/source/API/SBTarget.cpp
@@ -118,7 +118,7 @@
 
   if (this != &rhs)
     m_opaque_sp = rhs.m_opaque_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 //----------------------------------------------------------------------
Index: lldb/trunk/source/API/SBDeclaration.cpp
===================================================================
--- lldb/trunk/source/API/SBDeclaration.cpp
+++ lldb/trunk/source/API/SBDeclaration.cpp
@@ -42,7 +42,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 void SBDeclaration::SetDeclaration(
Index: lldb/trunk/source/API/SBInstructionList.cpp
===================================================================
--- lldb/trunk/source/API/SBInstructionList.cpp
+++ lldb/trunk/source/API/SBInstructionList.cpp
@@ -37,7 +37,7 @@
 
   if (this != &rhs)
     m_opaque_sp = rhs.m_opaque_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBInstructionList::~SBInstructionList() {}
Index: lldb/trunk/source/API/SBData.cpp
===================================================================
--- lldb/trunk/source/API/SBData.cpp
+++ lldb/trunk/source/API/SBData.cpp
@@ -38,7 +38,7 @@
 
   if (this != &rhs)
     m_opaque_sp = rhs.m_opaque_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBData::~SBData() {}
Index: lldb/trunk/source/API/SBExecutionContext.cpp
===================================================================
--- lldb/trunk/source/API/SBExecutionContext.cpp
+++ lldb/trunk/source/API/SBExecutionContext.cpp
@@ -75,7 +75,7 @@
       SBExecutionContext, operator=,(const lldb::SBExecutionContext &), rhs);
 
   m_exe_ctx_sp = rhs.m_exe_ctx_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 ExecutionContextRef *SBExecutionContext::get() const {
Index: lldb/trunk/source/API/SBThread.cpp
===================================================================
--- lldb/trunk/source/API/SBThread.cpp
+++ lldb/trunk/source/API/SBThread.cpp
@@ -84,7 +84,7 @@
 
   if (this != &rhs)
     m_opaque_sp = clone(rhs.m_opaque_sp);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 //----------------------------------------------------------------------
@@ -1402,9 +1402,8 @@
 
   ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
   if (thread_sp)
-    return thread_sp.get();
-  else
-    return NULL;
+    return LLDB_RECORD_RESULT(thread_sp.get());
+  return nullptr;
 }
 
 lldb_private::Thread *SBThread::get() {
@@ -1412,9 +1411,8 @@
 
   ThreadSP thread_sp(m_opaque_sp->GetThreadSP());
   if (thread_sp)
-    return thread_sp.get();
-  else
-    return NULL;
+    return LLDB_RECORD_RESULT(thread_sp.get());
+  return nullptr;
 }
 
 namespace lldb_private {
Index: lldb/trunk/source/API/SBSymbolContextList.cpp
===================================================================
--- lldb/trunk/source/API/SBSymbolContextList.cpp
+++ lldb/trunk/source/API/SBSymbolContextList.cpp
@@ -38,7 +38,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 uint32_t SBSymbolContextList::GetSize() const {
Index: lldb/trunk/source/API/SBCommandReturnObject.cpp
===================================================================
--- lldb/trunk/source/API/SBCommandReturnObject.cpp
+++ lldb/trunk/source/API/SBCommandReturnObject.cpp
@@ -43,7 +43,7 @@
   LLDB_RECORD_METHOD_NO_ARGS(lldb_private::CommandReturnObject *,
                              SBCommandReturnObject, Release);
 
-  return m_opaque_up.release();
+  return LLDB_RECORD_RESULT(m_opaque_up.release());
 }
 
 const SBCommandReturnObject &SBCommandReturnObject::
@@ -55,7 +55,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBCommandReturnObject::IsValid() const {
Index: lldb/trunk/source/API/SBBreakpoint.cpp
===================================================================
--- lldb/trunk/source/API/SBBreakpoint.cpp
+++ lldb/trunk/source/API/SBBreakpoint.cpp
@@ -62,7 +62,7 @@
                      SBBreakpoint, operator=,(const lldb::SBBreakpoint &), rhs);
 
   m_opaque_wp = rhs.m_opaque_wp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBBreakpoint::operator==(const lldb::SBBreakpoint &rhs) {
Index: lldb/trunk/source/API/SBSourceManager.cpp
===================================================================
--- lldb/trunk/source/API/SBSourceManager.cpp
+++ lldb/trunk/source/API/SBSourceManager.cpp
@@ -101,7 +101,7 @@
                      rhs);
 
   m_opaque_up.reset(new SourceManagerImpl(*(rhs.m_opaque_up.get())));
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBSourceManager::~SBSourceManager() {}
Index: lldb/trunk/source/API/SBProcessInfo.cpp
===================================================================
--- lldb/trunk/source/API/SBProcessInfo.cpp
+++ lldb/trunk/source/API/SBProcessInfo.cpp
@@ -34,7 +34,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 ProcessInstanceInfo &SBProcessInfo::ref() {
Index: lldb/trunk/source/API/SBBreakpointLocation.cpp
===================================================================
--- lldb/trunk/source/API/SBBreakpointLocation.cpp
+++ lldb/trunk/source/API/SBBreakpointLocation.cpp
@@ -54,7 +54,7 @@
       rhs);
 
   m_opaque_wp = rhs.m_opaque_wp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBBreakpointLocation::~SBBreakpointLocation() {}
Index: lldb/trunk/source/API/SBFunction.cpp
===================================================================
--- lldb/trunk/source/API/SBFunction.cpp
+++ lldb/trunk/source/API/SBFunction.cpp
@@ -39,7 +39,7 @@
                      SBFunction, operator=,(const lldb::SBFunction &), rhs);
 
   m_opaque_ptr = rhs.m_opaque_ptr;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBFunction::~SBFunction() { m_opaque_ptr = NULL; }
Index: lldb/trunk/source/API/SBDebugger.cpp
===================================================================
--- lldb/trunk/source/API/SBDebugger.cpp
+++ lldb/trunk/source/API/SBDebugger.cpp
@@ -182,7 +182,7 @@
   if (this != &rhs) {
     m_opaque_sp = rhs.m_opaque_sp;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 void SBDebugger::Initialize() {
@@ -373,7 +373,7 @@
   if (m_opaque_sp) {
     StreamFileSP stream_file_sp(m_opaque_sp->GetInputFile());
     if (stream_file_sp)
-      return stream_file_sp->GetFile().GetStream();
+      return LLDB_RECORD_RESULT(stream_file_sp->GetFile().GetStream());
   }
   return nullptr;
 }
@@ -384,7 +384,7 @@
   if (m_opaque_sp) {
     StreamFileSP stream_file_sp(m_opaque_sp->GetOutputFile());
     if (stream_file_sp)
-      return stream_file_sp->GetFile().GetStream();
+      return LLDB_RECORD_RESULT(stream_file_sp->GetFile().GetStream());
   }
   return nullptr;
 }
@@ -395,7 +395,7 @@
   if (m_opaque_sp) {
     StreamFileSP stream_file_sp(m_opaque_sp->GetErrorFile());
     if (stream_file_sp)
-      return stream_file_sp->GetFile().GetStream();
+      return LLDB_RECORD_RESULT(stream_file_sp->GetFile().GetStream());
   }
   return nullptr;
 }
Index: lldb/trunk/source/API/SBQueue.cpp
===================================================================
--- lldb/trunk/source/API/SBQueue.cpp
+++ lldb/trunk/source/API/SBQueue.cpp
@@ -240,7 +240,7 @@
                      SBQueue, operator=,(const lldb::SBQueue &), rhs);
 
   m_opaque_sp = rhs.m_opaque_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBQueue::~SBQueue() {}
Index: lldb/trunk/source/API/SBThreadCollection.cpp
===================================================================
--- lldb/trunk/source/API/SBThreadCollection.cpp
+++ lldb/trunk/source/API/SBThreadCollection.cpp
@@ -32,7 +32,7 @@
 
   if (this != &rhs)
     m_opaque_sp = rhs.m_opaque_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBThreadCollection::SBThreadCollection(const ThreadCollectionSP &threads)
Index: lldb/trunk/source/API/SBEvent.cpp
===================================================================
--- lldb/trunk/source/API/SBEvent.cpp
+++ lldb/trunk/source/API/SBEvent.cpp
@@ -55,7 +55,7 @@
     m_event_sp = rhs.m_event_sp;
     m_opaque_ptr = rhs.m_opaque_ptr;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBEvent::~SBEvent() {}
Index: lldb/trunk/source/API/SBWatchpoint.cpp
===================================================================
--- lldb/trunk/source/API/SBWatchpoint.cpp
+++ lldb/trunk/source/API/SBWatchpoint.cpp
@@ -43,7 +43,7 @@
                      SBWatchpoint, operator=,(const lldb::SBWatchpoint &), rhs);
 
   m_opaque_wp = rhs.m_opaque_wp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBWatchpoint::~SBWatchpoint() {}
Index: lldb/trunk/source/API/SBTypeCategory.cpp
===================================================================
--- lldb/trunk/source/API/SBTypeCategory.cpp
+++ lldb/trunk/source/API/SBTypeCategory.cpp
@@ -616,7 +616,7 @@
   if (this != &rhs) {
     m_opaque_sp = rhs.m_opaque_sp;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBTypeCategory::operator==(lldb::SBTypeCategory &rhs) {
Index: lldb/trunk/source/API/SBTypeNameSpecifier.cpp
===================================================================
--- lldb/trunk/source/API/SBTypeNameSpecifier.cpp
+++ lldb/trunk/source/API/SBTypeNameSpecifier.cpp
@@ -108,7 +108,7 @@
   if (this != &rhs) {
     m_opaque_sp = rhs.m_opaque_sp;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBTypeNameSpecifier::operator==(lldb::SBTypeNameSpecifier &rhs) {
Index: lldb/trunk/source/API/SBTypeSynthetic.cpp
===================================================================
--- lldb/trunk/source/API/SBTypeSynthetic.cpp
+++ lldb/trunk/source/API/SBTypeSynthetic.cpp
@@ -143,7 +143,7 @@
   if (this != &rhs) {
     m_opaque_sp = rhs.m_opaque_sp;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBTypeSynthetic::operator==(lldb::SBTypeSynthetic &rhs) {
Index: lldb/trunk/source/API/SBExpressionOptions.cpp
===================================================================
--- lldb/trunk/source/API/SBExpressionOptions.cpp
+++ lldb/trunk/source/API/SBExpressionOptions.cpp
@@ -37,7 +37,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBExpressionOptions::~SBExpressionOptions() {}
Index: lldb/trunk/source/API/SBValueList.cpp
===================================================================
--- lldb/trunk/source/API/SBValueList.cpp
+++ lldb/trunk/source/API/SBValueList.cpp
@@ -111,7 +111,7 @@
     else
       m_opaque_up.reset();
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 ValueListImpl *SBValueList::operator->() { return m_opaque_up.get(); }
Index: lldb/trunk/source/API/SBCommandInterpreter.cpp
===================================================================
--- lldb/trunk/source/API/SBCommandInterpreter.cpp
+++ lldb/trunk/source/API/SBCommandInterpreter.cpp
@@ -196,7 +196,7 @@
       rhs);
 
   m_opaque_ptr = rhs.m_opaque_ptr;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBCommandInterpreter::IsValid() const {
Index: lldb/trunk/source/API/SBStringList.cpp
===================================================================
--- lldb/trunk/source/API/SBStringList.cpp
+++ lldb/trunk/source/API/SBStringList.cpp
@@ -36,7 +36,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBStringList::~SBStringList() {}
Index: lldb/trunk/source/API/SBError.cpp
===================================================================
--- lldb/trunk/source/API/SBError.cpp
+++ lldb/trunk/source/API/SBError.cpp
@@ -33,7 +33,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 const char *SBError::GetCString() const {
Index: lldb/trunk/source/API/SBFileSpecList.cpp
===================================================================
--- lldb/trunk/source/API/SBFileSpecList.cpp
+++ lldb/trunk/source/API/SBFileSpecList.cpp
@@ -41,7 +41,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 uint32_t SBFileSpecList::GetSize() const {
Index: lldb/trunk/source/API/SBModule.cpp
===================================================================
--- lldb/trunk/source/API/SBModule.cpp
+++ lldb/trunk/source/API/SBModule.cpp
@@ -73,7 +73,7 @@
 
   if (this != &rhs)
     m_opaque_sp = rhs.m_opaque_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBModule::~SBModule() {}
Index: lldb/trunk/source/API/SBAddress.cpp
===================================================================
--- lldb/trunk/source/API/SBAddress.cpp
+++ lldb/trunk/source/API/SBAddress.cpp
@@ -60,7 +60,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool lldb::operator==(const SBAddress &lhs, const SBAddress &rhs) {
Index: lldb/trunk/source/API/SBMemoryRegionInfoList.cpp
===================================================================
--- lldb/trunk/source/API/SBMemoryRegionInfoList.cpp
+++ lldb/trunk/source/API/SBMemoryRegionInfoList.cpp
@@ -94,7 +94,7 @@
   if (this != &rhs) {
     *m_opaque_up = *rhs.m_opaque_up;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 uint32_t SBMemoryRegionInfoList::GetSize() const {
Index: lldb/trunk/source/API/SBInstruction.cpp
===================================================================
--- lldb/trunk/source/API/SBInstruction.cpp
+++ lldb/trunk/source/API/SBInstruction.cpp
@@ -87,7 +87,7 @@
 
   if (this != &rhs)
     m_opaque_sp = rhs.m_opaque_sp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBInstruction::~SBInstruction() {}
Index: lldb/trunk/source/API/SBAttachInfo.cpp
===================================================================
--- lldb/trunk/source/API/SBAttachInfo.cpp
+++ lldb/trunk/source/API/SBAttachInfo.cpp
@@ -64,7 +64,7 @@
 
   if (this != &rhs)
     m_opaque_sp = clone(rhs.m_opaque_sp);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 lldb::pid_t SBAttachInfo::GetProcessID() {
Index: lldb/trunk/source/API/SBProcess.cpp
===================================================================
--- lldb/trunk/source/API/SBProcess.cpp
+++ lldb/trunk/source/API/SBProcess.cpp
@@ -72,7 +72,7 @@
 
   if (this != &rhs)
     m_opaque_wp = rhs.m_opaque_wp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 //----------------------------------------------------------------------
Index: lldb/trunk/source/API/SBSymbolContext.cpp
===================================================================
--- lldb/trunk/source/API/SBSymbolContext.cpp
+++ lldb/trunk/source/API/SBSymbolContext.cpp
@@ -46,7 +46,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 void SBSymbolContext::SetSymbolContext(const SymbolContext *sc_ptr) {
Index: lldb/trunk/source/API/SBLineEntry.cpp
===================================================================
--- lldb/trunk/source/API/SBLineEntry.cpp
+++ lldb/trunk/source/API/SBLineEntry.cpp
@@ -41,7 +41,7 @@
 
   if (this != &rhs)
     m_opaque_up = clone(rhs.m_opaque_up);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 void SBLineEntry::SetLineEntry(const lldb_private::LineEntry &lldb_object_ref) {
Index: lldb/trunk/source/API/SBUnixSignals.cpp
===================================================================
--- lldb/trunk/source/API/SBUnixSignals.cpp
+++ lldb/trunk/source/API/SBUnixSignals.cpp
@@ -40,7 +40,7 @@
 
   if (this != &rhs)
     m_opaque_wp = rhs.m_opaque_wp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBUnixSignals::~SBUnixSignals() {}
Index: lldb/trunk/source/API/SBSection.cpp
===================================================================
--- lldb/trunk/source/API/SBSection.cpp
+++ lldb/trunk/source/API/SBSection.cpp
@@ -41,7 +41,7 @@
                      SBSection, operator=,(const lldb::SBSection &), rhs);
 
   m_opaque_wp = rhs.m_opaque_wp;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBSection::~SBSection() {}
Index: lldb/trunk/source/API/SBTypeSummary.cpp
===================================================================
--- lldb/trunk/source/API/SBTypeSummary.cpp
+++ lldb/trunk/source/API/SBTypeSummary.cpp
@@ -345,7 +345,7 @@
   if (this != &rhs) {
     m_opaque_sp = rhs.m_opaque_sp;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBTypeSummary::operator==(lldb::SBTypeSummary &rhs) {
Index: lldb/trunk/source/API/SBStructuredData.cpp
===================================================================
--- lldb/trunk/source/API/SBStructuredData.cpp
+++ lldb/trunk/source/API/SBStructuredData.cpp
@@ -54,7 +54,7 @@
       SBStructuredData, operator=,(const lldb::SBStructuredData &), rhs);
 
   *m_impl_up = *rhs.m_impl_up;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 lldb::SBError SBStructuredData::SetFromJSON(lldb::SBStream &stream) {
Index: lldb/trunk/source/API/SBTypeEnumMember.cpp
===================================================================
--- lldb/trunk/source/API/SBTypeEnumMember.cpp
+++ lldb/trunk/source/API/SBTypeEnumMember.cpp
@@ -40,12 +40,13 @@
 }
 
 SBTypeEnumMember &SBTypeEnumMember::operator=(const SBTypeEnumMember &rhs) {
-  LLDB_RECORD_CONSTRUCTOR(SBTypeEnumMember, (const lldb::SBTypeEnumMember &),
-                          rhs);
+  LLDB_RECORD_METHOD(
+      SBTypeEnumMember &,
+      SBTypeEnumMember, operator=,(const lldb::SBTypeEnumMember &), rhs);
 
   if (this != &rhs)
     m_opaque_sp = clone(rhs.m_opaque_sp);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBTypeEnumMember::IsValid() const {
@@ -147,7 +148,7 @@
       Append(
           const_cast<SBTypeEnumMemberList &>(rhs).GetTypeEnumMemberAtIndex(i));
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 void SBTypeEnumMemberList::Append(SBTypeEnumMember enum_member) {
Index: lldb/trunk/source/API/SBTypeFormat.cpp
===================================================================
--- lldb/trunk/source/API/SBTypeFormat.cpp
+++ lldb/trunk/source/API/SBTypeFormat.cpp
@@ -121,7 +121,7 @@
   if (this != &rhs) {
     m_opaque_sp = rhs.m_opaque_sp;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBTypeFormat::operator==(lldb::SBTypeFormat &rhs) {
Index: lldb/trunk/source/API/SBBlock.cpp
===================================================================
--- lldb/trunk/source/API/SBBlock.cpp
+++ lldb/trunk/source/API/SBBlock.cpp
@@ -41,7 +41,7 @@
                      SBBlock, operator=,(const lldb::SBBlock &), rhs);
 
   m_opaque_ptr = rhs.m_opaque_ptr;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBBlock::~SBBlock() { m_opaque_ptr = NULL; }
Index: lldb/trunk/source/API/SBFrame.cpp
===================================================================
--- lldb/trunk/source/API/SBFrame.cpp
+++ lldb/trunk/source/API/SBFrame.cpp
@@ -78,7 +78,7 @@
 
   if (this != &rhs)
     m_opaque_sp = clone(rhs.m_opaque_sp);
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 StackFrameSP SBFrame::GetFrameSP() const {
Index: lldb/trunk/source/API/SBCompileUnit.cpp
===================================================================
--- lldb/trunk/source/API/SBCompileUnit.cpp
+++ lldb/trunk/source/API/SBCompileUnit.cpp
@@ -38,7 +38,7 @@
                      rhs);
 
   m_opaque_ptr = rhs.m_opaque_ptr;
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBCompileUnit::~SBCompileUnit() { m_opaque_ptr = NULL; }
Index: lldb/trunk/source/API/SBTypeFilter.cpp
===================================================================
--- lldb/trunk/source/API/SBTypeFilter.cpp
+++ lldb/trunk/source/API/SBTypeFilter.cpp
@@ -126,7 +126,7 @@
   if (this != &rhs) {
     m_opaque_sp = rhs.m_opaque_sp;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 bool SBTypeFilter::operator==(lldb::SBTypeFilter &rhs) {
Index: lldb/trunk/source/API/SBListener.cpp
===================================================================
--- lldb/trunk/source/API/SBListener.cpp
+++ lldb/trunk/source/API/SBListener.cpp
@@ -42,7 +42,7 @@
     m_opaque_sp = rhs.m_opaque_sp;
     m_unused_ptr = nullptr;
   }
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBListener::SBListener(const lldb::ListenerSP &listener_sp)
Index: lldb/trunk/source/API/SBVariablesOptions.cpp
===================================================================
--- lldb/trunk/source/API/SBVariablesOptions.cpp
+++ lldb/trunk/source/API/SBVariablesOptions.cpp
@@ -99,7 +99,7 @@
       options);
 
   m_opaque_up.reset(new VariablesOptionsImpl(options.ref()));
-  return *this;
+  return LLDB_RECORD_RESULT(*this);
 }
 
 SBVariablesOptions::~SBVariablesOptions() = default;
Index: lldb/trunk/source/Utility/ReproducerInstrumentation.cpp
===================================================================
--- lldb/trunk/source/Utility/ReproducerInstrumentation.cpp
+++ lldb/trunk/source/Utility/ReproducerInstrumentation.cpp
@@ -117,4 +117,13 @@
   UpdateBoundary();
 }
 
+void Recorder::Log(unsigned id) {
+#ifndef LLDB_REPRO_INSTR_TRACE
+  LLDB_LOG(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API), "Recording {0}: {1}", id,
+           m_pretty_func);
+#else
+  llvm::errs() << "Recording " << id << ": " << m_pretty_func << "\n";
+#endif
+}
+
 bool lldb_private::repro::Recorder::g_global_boundary;
Index: lldb/trunk/lit/tools/lldb-instr/Inputs/foo.cpp
===================================================================
--- lldb/trunk/lit/tools/lldb-instr/Inputs/foo.cpp
+++ lldb/trunk/lit/tools/lldb-instr/Inputs/foo.cpp
@@ -16,3 +16,11 @@
 void Foo::I() const { MACRO_FOO; }
 Bar Foo::J() const { return MACRO_BAR(Bar()); }
 Bar Foo::K(void *v) const { return Bar(); }
+Bar &Foo::L() const {
+  Bar *b = new Bar();
+  return *b;
+};
+Bar *Foo::M() const {
+  Bar *b = new Bar();
+  return b;
+};
Index: lldb/trunk/lit/tools/lldb-instr/Inputs/foo.h
===================================================================
--- lldb/trunk/lit/tools/lldb-instr/Inputs/foo.h
+++ lldb/trunk/lit/tools/lldb-instr/Inputs/foo.h
@@ -14,4 +14,6 @@
   void I() const;
   Bar J() const;
   Bar K(void *v) const;
+  Bar &L() const;
+  Bar *M() const;
 };
Index: lldb/trunk/lit/tools/lldb-instr/TestInstrumentationRecord.test
===================================================================
--- lldb/trunk/lit/tools/lldb-instr/TestInstrumentationRecord.test
+++ lldb/trunk/lit/tools/lldb-instr/TestInstrumentationRecord.test
@@ -20,3 +20,5 @@
 # CHECK-NOT: LLDB_RECORD_RESULT(Bar());
 # CHECK: LLDB_RECORD_DUMMY(Bar, Foo, K, (void *), v);
 # CHECK-NOT: LLDB_RECORD_RESULT(Bar());
+# CHECK: LLDB_RECORD_RESULT(*b)
+# CHECK: LLDB_RECORD_RESULT(b)
Index: lldb/trunk/lit/tools/lldb-instr/TestInstrumentationRegister.test
===================================================================
--- lldb/trunk/lit/tools/lldb-instr/TestInstrumentationRegister.test
+++ lldb/trunk/lit/tools/lldb-instr/TestInstrumentationRegister.test
@@ -11,6 +11,9 @@
 # CHECK: LLDB_REGISTER_METHOD_CONST(int, Foo, D, (bool));
 # CHECK: LLDB_REGISTER_STATIC_METHOD(void, Foo, E, ());
 # CHECK: LLDB_REGISTER_STATIC_METHOD(int, Foo, F, (int));
+# CHECK: LLDB_REGISTER_METHOD_CONST(Bar, Foo, J, ());
+# CHECK: LLDB_REGISTER_METHOD_CONST(Bar &, Foo, L, ());
+# CHECK: LLDB_REGISTER_METHOD_CONST(Bar *, Foo, M, ());
 # CHECK-NOT: LLDB_REGISTER_STATIC_METHOD(void, Foo, G
 # CHECK-NOT: LLDB_REGISTER_METHOD_CONST(void, Foo, I, ());
 # CHECK-NOT: LLDB_REGISTER_METHOD_CONST(Bar, Foo, K, (void*));
Index: lldb/trunk/include/lldb/Utility/ReproducerInstrumentation.h
===================================================================
--- lldb/trunk/include/lldb/Utility/ReproducerInstrumentation.h
+++ lldb/trunk/include/lldb/Utility/ReproducerInstrumentation.h
@@ -185,7 +185,7 @@
   }
 
 #define LLDB_RECORD_RESULT(Result)                                             \
-  sb_recorder ? sb_recorder->RecordResult(Result) : Result;
+  sb_recorder ? sb_recorder->RecordResult(Result) : (Result);
 
 /// The LLDB_RECORD_DUMMY macro is special because it doesn't actually record
 /// anything. It's used to track API boundaries when we cannot record for
@@ -643,13 +643,7 @@
       return;
 
     unsigned id = m_registry.GetID(uintptr_t(f));
-
-#ifndef LLDB_REPRO_INSTR_TRACE
-    LLDB_LOG(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API), "Recording {0}: {1}",
-             id, m_pretty_func);
-#else
-    llvm::errs() << "Recording " << id << ": " << m_pretty_func << "\n";
-#endif
+    Log(id);
 
     m_serializer.SerializeAll(id);
     m_serializer.SerializeAll(args...);
@@ -670,13 +664,7 @@
       return;
 
     unsigned id = m_registry.GetID(uintptr_t(f));
-
-#ifndef LLDB_REPRO_INSTR_TRACE
-    LLDB_LOG(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API), "Recording {0}: {1}",
-             id, m_pretty_func);
-#else
-    llvm::errs() << "Recording " << id << ": " << m_pretty_func << "\n";
-#endif
+    Log(id);
 
     m_serializer.SerializeAll(id);
     m_serializer.SerializeAll(args...);
@@ -687,14 +675,14 @@
   }
 
   /// Record the result of a function call.
-  template <typename Result> Result RecordResult(const Result &r) {
+  template <typename Result> Result RecordResult(Result &&r) {
     UpdateBoundary();
     if (ShouldCapture()) {
       assert(!m_result_recorded);
       m_serializer.SerializeAll(r);
       m_result_recorded = true;
     }
-    return r;
+    return std::forward<Result>(r);
   }
 
 private:
@@ -704,6 +692,7 @@
   }
 
   bool ShouldCapture() { return m_local_boundary; }
+  void Log(unsigned id);
 
   Serializer &m_serializer;
   Registry &m_registry;
Index: lldb/trunk/unittests/Utility/ReproducerInstrumentationTest.cpp
===================================================================
--- lldb/trunk/unittests/Utility/ReproducerInstrumentationTest.cpp
+++ lldb/trunk/unittests/Utility/ReproducerInstrumentationTest.cpp
@@ -89,6 +89,8 @@
   /// {
   InstrumentedBar();
   InstrumentedFoo GetInstrumentedFoo();
+  InstrumentedFoo &GetInstrumentedFooRef();
+  InstrumentedFoo *GetInstrumentedFooPtr();
   void SetInstrumentedFoo(InstrumentedFoo *foo);
   void SetInstrumentedFoo(InstrumentedFoo &foo);
   void Validate();
@@ -201,6 +203,22 @@
   return LLDB_RECORD_RESULT(InstrumentedFoo(0));
 }
 
+InstrumentedFoo &InstrumentedBar::GetInstrumentedFooRef() {
+  LLDB_RECORD_METHOD_NO_ARGS(InstrumentedFoo &, InstrumentedBar,
+                             GetInstrumentedFooRef);
+  InstrumentedFoo *foo = new InstrumentedFoo(0);
+  m_get_instrumend_foo_called = true;
+  return LLDB_RECORD_RESULT(*foo);
+}
+
+InstrumentedFoo *InstrumentedBar::GetInstrumentedFooPtr() {
+  LLDB_RECORD_METHOD_NO_ARGS(InstrumentedFoo *, InstrumentedBar,
+                             GetInstrumentedFooPtr);
+  InstrumentedFoo *foo = new InstrumentedFoo(0);
+  m_get_instrumend_foo_called = true;
+  return LLDB_RECORD_RESULT(foo);
+}
+
 void InstrumentedBar::SetInstrumentedFoo(InstrumentedFoo *foo) {
   LLDB_RECORD_METHOD(void, InstrumentedBar, SetInstrumentedFoo,
                      (InstrumentedFoo *), foo);
@@ -239,6 +257,10 @@
   LLDB_REGISTER_CONSTRUCTOR(InstrumentedBar, ());
   LLDB_REGISTER_METHOD(InstrumentedFoo, InstrumentedBar, GetInstrumentedFoo,
                        ());
+  LLDB_REGISTER_METHOD(InstrumentedFoo &, InstrumentedBar,
+                       GetInstrumentedFooRef, ());
+  LLDB_REGISTER_METHOD(InstrumentedFoo *, InstrumentedBar,
+                       GetInstrumentedFooPtr, ());
   LLDB_REGISTER_METHOD(void, InstrumentedBar, SetInstrumentedFoo,
                        (InstrumentedFoo *));
   LLDB_REGISTER_METHOD(void, InstrumentedBar, SetInstrumentedFoo,
@@ -487,6 +509,80 @@
   {
     InstrumentedBar bar;
     InstrumentedFoo foo = bar.GetInstrumentedFoo();
+#if 0
+    InstrumentedFoo& foo_ref = bar.GetInstrumentedFooRef();
+    InstrumentedFoo* foo_ptr = bar.GetInstrumentedFooPtr();
+#endif
+
+    int b = 200;
+    float c = 300.3;
+    double e = 400.4;
+
+    foo.A(100);
+    foo.B(b);
+    foo.C(&c);
+    foo.D("bar");
+    InstrumentedFoo::E(e);
+    InstrumentedFoo::F();
+    foo.Validate();
+
+    bar.SetInstrumentedFoo(foo);
+    bar.SetInstrumentedFoo(&foo);
+    bar.Validate();
+  }
+
+  ClearObjects();
+
+  TestingRegistry registry;
+  registry.Replay(os.str());
+
+  ValidateObjects(1, 1);
+}
+
+TEST(RecordReplayTest, InstrumentedBarRef) {
+  std::string str;
+  llvm::raw_string_ostream os(str);
+  g_registry.emplace();
+  g_serializer.emplace(os);
+
+  {
+    InstrumentedBar bar;
+    InstrumentedFoo &foo = bar.GetInstrumentedFooRef();
+
+    int b = 200;
+    float c = 300.3;
+    double e = 400.4;
+
+    foo.A(100);
+    foo.B(b);
+    foo.C(&c);
+    foo.D("bar");
+    InstrumentedFoo::E(e);
+    InstrumentedFoo::F();
+    foo.Validate();
+
+    bar.SetInstrumentedFoo(foo);
+    bar.SetInstrumentedFoo(&foo);
+    bar.Validate();
+  }
+
+  ClearObjects();
+
+  TestingRegistry registry;
+  registry.Replay(os.str());
+
+  ValidateObjects(1, 1);
+}
+
+TEST(RecordReplayTest, InstrumentedBarPtr) {
+  std::string str;
+  llvm::raw_string_ostream os(str);
+  g_registry.emplace();
+  g_serializer.emplace(os);
+
+  {
+    InstrumentedBar bar;
+    InstrumentedFoo &foo = *(bar.GetInstrumentedFooPtr());
 
     int b = 200;
     float c = 300.3;
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to