forked from OSchip/llvm-project
82 lines
1.5 KiB
C++
82 lines
1.5 KiB
C++
//===-- SBCompileUnit.h -----------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_SBCompileUnit_h_
|
|
#define LLDB_SBCompileUnit_h_
|
|
|
|
#include "lldb/API/SBDefines.h"
|
|
#include "lldb/API/SBFileSpec.h"
|
|
|
|
namespace lldb {
|
|
|
|
class SBCompileUnit
|
|
{
|
|
public:
|
|
|
|
SBCompileUnit ();
|
|
|
|
~SBCompileUnit ();
|
|
|
|
bool
|
|
IsValid () const;
|
|
|
|
lldb::SBFileSpec
|
|
GetFileSpec () const;
|
|
|
|
uint32_t
|
|
GetNumLineEntries () const;
|
|
|
|
lldb::SBLineEntry
|
|
GetLineEntryAtIndex (uint32_t idx) const;
|
|
|
|
uint32_t
|
|
FindLineEntryIndex (uint32_t start_idx,
|
|
uint32_t line,
|
|
lldb::SBFileSpec *inline_file_spec) const;
|
|
|
|
#ifndef SWIG
|
|
|
|
bool
|
|
operator == (const lldb::SBCompileUnit &rhs) const;
|
|
|
|
bool
|
|
operator != (const lldb::SBCompileUnit &rhs) const;
|
|
|
|
#endif
|
|
|
|
bool
|
|
GetDescription (lldb::SBStream &description);
|
|
|
|
private:
|
|
friend class SBFrame;
|
|
friend class SBSymbolContext;
|
|
|
|
SBCompileUnit (lldb_private::CompileUnit *lldb_object_ptr);
|
|
|
|
#ifndef SWIG
|
|
|
|
const lldb_private::CompileUnit *
|
|
operator->() const;
|
|
|
|
const lldb_private::CompileUnit &
|
|
operator*() const;
|
|
|
|
const lldb_private::CompileUnit *
|
|
get () const;
|
|
|
|
#endif
|
|
|
|
lldb_private::CompileUnit *m_opaque_ptr;
|
|
};
|
|
|
|
|
|
} // namespace lldb
|
|
|
|
#endif // LLDB_SBCompileUnit_h_
|