Android-cuttlefish cvd tool
gem5_manager.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2021 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#pragma once
17
18#include <string>
19#include <unordered_map>
20#include <vector>
21
26
27namespace cuttlefish {
28namespace vm_manager {
29
30// Starts a guest VM using the gem5 command directly. It requires the host
31// package to support the gem5 capability.
32class Gem5Manager : public VmManager {
33 public:
34 static std::string name() { return "gem5"; }
35
37 virtual ~Gem5Manager() = default;
38
39 bool IsSupported() override;
40
42 const CuttlefishConfig::InstanceSpecific& instance) override;
43
45 const CuttlefishConfig::InstanceSpecific& instance) override;
46
48 const CuttlefishConfig& config,
49 std::vector<VmmDependencyCommand*>& dependencyCommands) override;
50
51 private:
53};
54
55} // namespace vm_manager
56} // namespace cuttlefish
Definition: expected.h:86
Definition: cuttlefish_config.h:269
Definition: cuttlefish_config.h:49
Definition: gem5_manager.h:32
Gem5Manager(Arch)
Definition: gem5_manager.cpp:206
static std::string name()
Definition: gem5_manager.h:34
Result< std::unordered_map< std::string, std::string > > ConfigureGraphics(const CuttlefishConfig::InstanceSpecific &instance) override
Definition: gem5_manager.cpp:213
Arch arch_
Definition: gem5_manager.h:52
Result< std::vector< MonitorCommand > > StartCommands(const CuttlefishConfig &config, std::vector< VmmDependencyCommand * > &dependencyCommands) override
Definition: gem5_manager.cpp:283
Result< std::unordered_map< std::string, std::string > > ConfigureBootDevices(const CuttlefishConfig::InstanceSpecific &instance) override
Definition: gem5_manager.cpp:271
bool IsSupported() override
Definition: gem5_manager.cpp:208
Definition: vm_manager.h:39
Definition: alloc_utils.cpp:23
Arch
Definition: architecture.h:23