llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h

154 lines
3.8 KiB
C++

//===-- AppleObjCRuntimeV1.h ----------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_AppleObjCRuntimeV1_h_
#define liblldb_AppleObjCRuntimeV1_h_
// C Includes
// C++ Includes
// Other libraries and framework includes
// Project includes
#include "lldb/lldb-private.h"
#include "lldb/Target/ObjCLanguageRuntime.h"
#include "AppleObjCRuntime.h"
namespace lldb_private {
class AppleObjCRuntimeV1 :
public AppleObjCRuntime
{
public:
class ClassDescriptorV1 : public ObjCLanguageRuntime::ClassDescriptor
{
public:
ClassDescriptorV1 (ValueObject &isa_pointer);
ClassDescriptorV1 (ObjCISA isa, lldb::ProcessSP process_sp);
virtual ConstString
GetClassName ()
{
return m_name;
}
virtual ClassDescriptorSP
GetSuperclass ();
virtual bool
IsValid ()
{
return m_valid;
}
virtual bool
IsTagged ()
{
return false; // v1 runtime does not support tagged pointers
}
virtual uint64_t
GetInstanceSize ()
{
return m_instance_size;
}
virtual ObjCISA
GetISA ()
{
return m_isa;
}
virtual
~ClassDescriptorV1 ()
{}
protected:
void
Initialize (ObjCISA isa, lldb::ProcessSP process_sp);
private:
ConstString m_name;
ObjCISA m_isa;
ObjCISA m_parent_isa;
bool m_valid;
lldb::ProcessWP m_process_wp;
uint64_t m_instance_size;
};
virtual ~AppleObjCRuntimeV1() { }
// These are generic runtime functions:
virtual bool
GetDynamicTypeAndAddress (ValueObject &in_value,
lldb::DynamicValueType use_dynamic,
TypeAndOrName &class_type_or_name,
Address &address);
virtual ClangUtilityFunction *
CreateObjectChecker (const char *);
//------------------------------------------------------------------
// Static Functions
//------------------------------------------------------------------
static void
Initialize();
static void
Terminate();
static lldb_private::LanguageRuntime *
CreateInstance (Process *process, lldb::LanguageType language);
//------------------------------------------------------------------
// PluginInterface protocol
//------------------------------------------------------------------
virtual const char *
GetPluginName();
virtual const char *
GetShortPluginName();
virtual uint32_t
GetPluginVersion();
virtual ObjCRuntimeVersions
GetRuntimeVersion ()
{
return eAppleObjC_V1;
}
virtual bool
IsValidISA(ObjCISA isa)
{
return (isa != 0) && ( (isa % 2) == 0);
}
virtual ObjCISA
GetISA(ValueObject& valobj);
virtual ClassDescriptorSP
GetClassDescriptor (ValueObject& in_value);
virtual ClassDescriptorSP
GetClassDescriptor (ObjCISA isa);
protected:
virtual lldb::BreakpointResolverSP
CreateExceptionResolver (Breakpoint *bkpt, bool catch_bp, bool throw_bp);
private:
AppleObjCRuntimeV1(Process *process) :
lldb_private::AppleObjCRuntime (process)
{ } // Call CreateInstance instead.
};
} // namespace lldb_private
#endif // liblldb_AppleObjCRuntimeV1_h_