[MCJIT] Re-enable GDB registration (temporarily disabled in r222811), but check
authorLang Hames <lhames@gmail.com>
Wed, 26 Nov 2014 07:39:03 +0000 (07:39 +0000)
committerLang Hames <lhames@gmail.com>
Wed, 26 Nov 2014 07:39:03 +0000 (07:39 +0000)
that we actually have an object to register first.

For MachO objects, RuntimeDyld::LoadedObjectInfo::getObjectForDebug returns an
empty OwningBinary<ObjectFile> which was causing crashes in the GDB registration
code.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222812 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/MCJIT/MCJIT.cpp
lib/ExecutionEngine/RuntimeDyld/GDBRegistrationListener.cpp

index 490fbb3df99e5d8010a44ae933bff746fe8b432b..58cf4e5e6dd8c23c88cc4de678c24079ba4ff4f0 100644 (file)
@@ -75,6 +75,7 @@ MCJIT::MCJIT(std::unique_ptr<Module> M, std::unique_ptr<TargetMachine> tm,
 
   OwnedModules.addModule(std::move(First));
   setDataLayout(TM->getSubtargetImpl()->getDataLayout());
+  RegisterJITEventListener(JITEventListener::createGDBRegistrationListener());
 }
 
 MCJIT::~MCJIT() {
index 641d3a262708f14d4266e1c126a61207d27d730c..13d5672a82b5d8f2cd03c5f4993a4d7796e8bf06 100644 (file)
@@ -151,6 +151,11 @@ void GDBJITRegistrationListener::NotifyObjectEmitted(
                                        const RuntimeDyld::LoadedObjectInfo &L) {
 
   OwningBinary<ObjectFile> DebugObj = L.getObjectForDebug(Object);
+
+  // Bail out if debug objects aren't supported.
+  if (!DebugObj.getBinary())
+    return;
+
   const char *Buffer = DebugObj.getBinary()->getMemoryBufferRef().getBufferStart();
   size_t      Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize();