Coverage Report

Created: 2023-09-12 09:32

/Users/buildslave/jenkins/workspace/coverage/llvm-project/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h
Line
Count
Source (jump to first uncovered line)
1
//===-- PlatformMacOSX.h ----------------------------------------*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#ifndef LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMMACOSX_H
10
#define LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMMACOSX_H
11
12
#include "PlatformDarwinDevice.h"
13
#include "lldb/Target/Platform.h"
14
#include "lldb/Utility/ConstString.h"
15
#include "lldb/Utility/Status.h"
16
#include "lldb/Utility/XcodeSDK.h"
17
#include "lldb/lldb-forward.h"
18
#include "llvm/ADT/SmallVector.h"
19
#include "llvm/ADT/StringRef.h"
20
21
#include <vector>
22
23
namespace lldb_private {
24
class ArchSpec;
25
class FileSpec;
26
class FileSpecList;
27
class ModuleSpec;
28
class Process;
29
class Target;
30
31
class PlatformMacOSX : public PlatformDarwinDevice {
32
public:
33
  PlatformMacOSX();
34
35
  static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
36
37
  static void Initialize();
38
39
  static void Terminate();
40
41
10.6k
  static llvm::StringRef GetPluginNameStatic() {
42
10.6k
    return Platform::GetHostPlatformName();
43
10.6k
  }
44
45
  static llvm::StringRef GetDescriptionStatic();
46
47
6.74k
  llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
48
49
  Status GetSharedModule(const ModuleSpec &module_spec, Process *process,
50
                         lldb::ModuleSP &module_sp,
51
                         const FileSpecList *module_search_paths_ptr,
52
                         llvm::SmallVectorImpl<lldb::ModuleSP> *old_modules,
53
                         bool *did_create_ptr) override;
54
55
4
  llvm::StringRef GetDescription() override { return GetDescriptionStatic(); }
56
57
0
  Status GetFile(const FileSpec &source, const FileSpec &destination) override {
58
0
    return PlatformDarwin::GetFile(source, destination);
59
0
  }
60
61
  std::vector<ArchSpec>
62
  GetSupportedArchitectures(const ArchSpec &process_host_arch) override;
63
64
  ConstString GetSDKDirectory(Target &target) override;
65
66
  void
67
  AddClangModuleCompilationOptions(Target *target,
68
1.12k
                                   std::vector<std::string> &options) override {
69
1.12k
    return PlatformDarwin::AddClangModuleCompilationOptionsForSDKType(
70
1.12k
        target, options, XcodeSDK::Type::MacOSX);
71
1.12k
  }
72
73
protected:
74
  llvm::StringRef GetDeviceSupportDirectoryName() override;
75
  llvm::StringRef GetPlatformName() override;
76
};
77
78
} // namespace lldb_private
79
80
#endif // LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMMACOSX_H