LLDB mainline
Classes | Public Types | Static Public Member Functions | Static Protected Member Functions | Private Member Functions | List of all members
lldb_private::HostInfoBase Class Reference

#include <HostInfoBase.h>

Inheritance diagram for lldb_private::HostInfoBase:
Inheritance graph
[legend]

Classes

struct  SDKOptions
 

Public Types

enum  ArchitectureKind { eArchKindDefault , eArchKind32 , eArchKind64 }
 
using SharedLibraryDirectoryHelper = void(FileSpec &this_file)
 A helper function for determining the liblldb location.
 

Static Public Member Functions

static void Initialize (SharedLibraryDirectoryHelper *helper=nullptr)
 
static void Terminate ()
 
static llvm::Triple GetTargetTriple ()
 Gets the host target triple.
 
static const ArchSpecGetArchitecture (ArchitectureKind arch_kind=eArchKindDefault)
 
static std::optional< ArchitectureKindParseArchitectureKind (llvm::StringRef kind)
 
static FileSpec GetShlibDir ()
 Returns the directory containing the lldb shared library.
 
static FileSpec GetSupportExeDir ()
 Returns the directory containing the support executables (debugserver, ...).
 
static FileSpec GetHeaderDir ()
 Returns the directory containing the lldb headers.
 
static FileSpec GetSystemPluginDir ()
 Returns the directory containing the system plugins.
 
static FileSpec GetUserPluginDir ()
 Returns the directory containing the user plugins.
 
static FileSpec GetProcessTempDir ()
 Returns the proces temporary directory.
 
static FileSpec GetGlobalTempDir ()
 Returns the global temporary directory.
 
static ArchSpec GetAugmentedArchSpec (llvm::StringRef triple)
 If the triple does not specify the vendor, os, and environment parts, we "augment" these using information from the host and return the resulting ArchSpec object.
 
static bool ComputePathRelativeToLibrary (FileSpec &file_spec, llvm::StringRef dir)
 
static FileSpec GetXcodeContentsDirectory ()
 
static FileSpec GetXcodeDeveloperDirectory ()
 
static llvm::Expected< llvm::StringRef > GetSDKRoot (SDKOptions options)
 Return the directory containing something like a SDK (reused for Swift).
 
static llvm::Expected< llvm::StringRef > FindSDKTool (XcodeSDK sdk, llvm::StringRef tool)
 Return the path to a specific tool in the specified Xcode SDK.
 
static SharedCacheImageInfo GetSharedCacheImageInfo (llvm::StringRef image_name)
 Return information about module image_name if it is loaded in the current process's address space.
 
static llvm::StringRef GetDistributionId ()
 Returns the distribution id of the host.
 

Static Protected Member Functions

static bool ComputeSharedLibraryDirectory (FileSpec &file_spec)
 
static bool ComputeSupportExeDirectory (FileSpec &file_spec)
 
static bool ComputeProcessTempFileDirectory (FileSpec &file_spec)
 
static bool ComputeGlobalTempFileDirectory (FileSpec &file_spec)
 
static bool ComputeTempFileBaseDirectory (FileSpec &file_spec)
 
static bool ComputeHeaderDirectory (FileSpec &file_spec)
 
static bool ComputeSystemPluginsDirectory (FileSpec &file_spec)
 
static bool ComputeUserPluginsDirectory (FileSpec &file_spec)
 
static void ComputeHostArchitectureSupport (ArchSpec &arch_32, ArchSpec &arch_64)
 

Private Member Functions

 HostInfoBase ()=default
 
 ~HostInfoBase ()=default
 

Detailed Description

Definition at line 52 of file HostInfoBase.h.

Member Typedef Documentation

◆ SharedLibraryDirectoryHelper

A helper function for determining the liblldb location.

It receives a FileSpec with the location of file containing this code. It can (optionally) replace it with a file spec pointing to a more canonical copy.

Definition at line 63 of file HostInfoBase.h.

Member Enumeration Documentation

◆ ArchitectureKind

Enumerator
eArchKindDefault 
eArchKind32 
eArchKind64 

Definition at line 74 of file HostInfoBase.h.

Constructor & Destructor Documentation

◆ HostInfoBase()

lldb_private::HostInfoBase::HostInfoBase ( )
privatedefault

◆ ~HostInfoBase()

lldb_private::HostInfoBase::~HostInfoBase ( )
privatedefault

Member Function Documentation

◆ ComputeGlobalTempFileDirectory()

bool HostInfoBase::ComputeGlobalTempFileDirectory ( FileSpec file_spec)
staticprotected

◆ ComputeHeaderDirectory()

bool HostInfoBase::ComputeHeaderDirectory ( FileSpec file_spec)
staticprotected

Definition at line 305 of file HostInfoBase.cpp.

◆ ComputeHostArchitectureSupport()

void HostInfoBase::ComputeHostArchitectureSupport ( ArchSpec arch_32,
ArchSpec arch_64 
)
staticprotected

◆ ComputePathRelativeToLibrary()

bool HostInfoBase::ComputePathRelativeToLibrary ( FileSpec file_spec,
llvm::StringRef  dir 
)
static

◆ ComputeProcessTempFileDirectory()

bool HostInfoBase::ComputeProcessTempFileDirectory ( FileSpec file_spec)
staticprotected

◆ ComputeSharedLibraryDirectory()

bool HostInfoBase::ComputeSharedLibraryDirectory ( FileSpec file_spec)
staticprotected

◆ ComputeSupportExeDirectory()

bool HostInfoBase::ComputeSupportExeDirectory ( FileSpec file_spec)
staticprotected

Definition at line 263 of file HostInfoBase.cpp.

References GetShlibDir().

◆ ComputeSystemPluginsDirectory()

bool HostInfoBase::ComputeSystemPluginsDirectory ( FileSpec file_spec)
staticprotected

Definition at line 311 of file HostInfoBase.cpp.

◆ ComputeTempFileBaseDirectory()

bool HostInfoBase::ComputeTempFileBaseDirectory ( FileSpec file_spec)
staticprotected

◆ ComputeUserPluginsDirectory()

bool HostInfoBase::ComputeUserPluginsDirectory ( FileSpec file_spec)
staticprotected

Definition at line 317 of file HostInfoBase.cpp.

◆ FindSDKTool()

static llvm::Expected< llvm::StringRef > lldb_private::HostInfoBase::FindSDKTool ( XcodeSDK  sdk,
llvm::StringRef  tool 
)
inlinestatic

Return the path to a specific tool in the specified Xcode SDK.

Definition at line 140 of file HostInfoBase.h.

◆ GetArchitecture()

const ArchSpec & HostInfoBase::GetArchitecture ( ArchitectureKind  arch_kind = eArchKindDefault)
static

Definition at line 94 of file HostInfoBase.cpp.

References eArchKind32, eArchKind64, and g_fields.

◆ GetAugmentedArchSpec()

ArchSpec HostInfoBase::GetAugmentedArchSpec ( llvm::StringRef  triple)
static

If the triple does not specify the vendor, os, and environment parts, we "augment" these using information from the host and return the resulting ArchSpec object.

Definition at line 197 of file HostInfoBase.cpp.

References lldb_private::ArchSpec::ContainsOnlyArch().

◆ GetDistributionId()

static llvm::StringRef lldb_private::HostInfoBase::GetDistributionId ( )
inlinestatic

Returns the distribution id of the host.

This will be something like "ubuntu", "fedora", etc. on Linux.

Returns
Returns either std::nullopt or a reference to a const std::string containing the distribution id

Definition at line 158 of file HostInfoBase.h.

◆ GetGlobalTempDir()

FileSpec HostInfoBase::GetGlobalTempDir ( )
static

Returns the global temporary directory.

This directory will not be cleaned up when this process exits. Only the directory member of the FileSpec is filled in.

Definition at line 185 of file HostInfoBase.cpp.

References g_fields.

◆ GetHeaderDir()

FileSpec HostInfoBase::GetHeaderDir ( )
static

Returns the directory containing the lldb headers.

Only the directory member of the FileSpec is filled in.

Definition at line 140 of file HostInfoBase.cpp.

References g_fields.

◆ GetProcessTempDir()

FileSpec HostInfoBase::GetProcessTempDir ( )
static

Returns the proces temporary directory.

This directory will be cleaned up when this process exits. Only the directory member of the FileSpec is filled in.

Definition at line 173 of file HostInfoBase.cpp.

References g_fields.

◆ GetSDKRoot()

static llvm::Expected< llvm::StringRef > lldb_private::HostInfoBase::GetSDKRoot ( SDKOptions  options)
inlinestatic

Return the directory containing something like a SDK (reused for Swift).

Definition at line 135 of file HostInfoBase.h.

◆ GetSharedCacheImageInfo()

static SharedCacheImageInfo lldb_private::HostInfoBase::GetSharedCacheImageInfo ( llvm::StringRef  image_name)
inlinestatic

Return information about module image_name if it is loaded in the current process's address space.

Definition at line 148 of file HostInfoBase.h.

◆ GetShlibDir()

FileSpec HostInfoBase::GetShlibDir ( )
static

Returns the directory containing the lldb shared library.

Only the directory member of the FileSpec is filled in.

Definition at line 120 of file HostInfoBase.cpp.

References g_fields.

Referenced by lldb_private::HostInfoMacOSX::ComputeHeaderDirectory(), ComputePathRelativeToLibrary(), ComputeSupportExeDirectory(), lldb_private::HostInfoMacOSX::ComputeSupportExeDirectory(), and lldb_private::HostInfoMacOSX::ComputeSystemPluginsDirectory().

◆ GetSupportExeDir()

FileSpec HostInfoBase::GetSupportExeDir ( )
static

Returns the directory containing the support executables (debugserver, ...).

Only the directory member of the FileSpec is filled in.

Definition at line 130 of file HostInfoBase.cpp.

References g_fields.

◆ GetSystemPluginDir()

FileSpec HostInfoBase::GetSystemPluginDir ( )
static

Returns the directory containing the system plugins.

Only the directory member of the FileSpec is filled in.

Definition at line 150 of file HostInfoBase.cpp.

References g_fields.

◆ GetTargetTriple()

llvm::Triple HostInfoBase::GetTargetTriple ( )
static

Gets the host target triple.

Returns
The host target triple.

Definition at line 87 of file HostInfoBase.cpp.

References g_fields.

◆ GetUserPluginDir()

FileSpec HostInfoBase::GetUserPluginDir ( )
static

Returns the directory containing the user plugins.

Only the directory member of the FileSpec is filled in.

Definition at line 162 of file HostInfoBase.cpp.

References g_fields.

◆ GetXcodeContentsDirectory()

static FileSpec lldb_private::HostInfoBase::GetXcodeContentsDirectory ( )
inlinestatic

Definition at line 127 of file HostInfoBase.h.

◆ GetXcodeDeveloperDirectory()

static FileSpec lldb_private::HostInfoBase::GetXcodeDeveloperDirectory ( )
inlinestatic

Definition at line 128 of file HostInfoBase.h.

◆ Initialize()

void HostInfoBase::Initialize ( SharedLibraryDirectoryHelper helper = nullptr)
static

◆ ParseArchitectureKind()

std::optional< HostInfoBase::ArchitectureKind > HostInfoBase::ParseArchitectureKind ( llvm::StringRef  kind)
static

◆ Terminate()

void HostInfoBase::Terminate ( )
static

The documentation for this class was generated from the following files: