qemu启动过程笔记

1、进入main函数之前,会先注册所有的类,以spice为例
//定义结构
static struct QemuSpiceOps real_spice_ops = {.init         = qemu_spice_init,.display_init = qemu_spice_display_init,.migrate_info = qemu_spice_migrate_info,.set_passwd   = qemu_spice_set_passwd,.set_pw_expire = qemu_spice_set_pw_expire,.display_add_client = qemu_spice_display_add_client,.add_interface = qemu_spice_add_interface,.qmp_query = qmp_query_spice_real,
};//添加参数
static void spice_register_config(void)
{qemu_spice = real_spice_ops;qemu_add_opts(&qemu_spice_opts);
}//注册spice_register_config
opts_init(spice_register_config);//宏替换
#define block_init(function) module_init(function, MODULE_INIT_BLOCK)
#define opts_init(function) module_init(function, MODULE_INIT_OPTS)
#define type_init(function) module_init(function, MODULE_INIT_QOM)
#define trace_init(function) module_init(function, MODULE_INIT_TRACE)
#define xen_backend_init(function) module_init(function, MODULE_INIT_XEN_BACKEND)
#define libqos_init(function) module_init(function, MODULE_INIT_LIBQOS)
#define fuzz_target_init(function) module_init(function, MODULE_INIT_FUZZ_TARGET)
#define migration_init(function) module_init(function, MODULE_INIT_MIGRATION)//定义调用函数
#define module_init(function, type)                                         \
static void __attribute__((constructor)) do_qemu_init_ ## function(void)    \
{                                                                           \register_dso_module_init(function, type);                               \
}
#else
/* This should not be used directly.  Use block_init etc. instead.  */
#define module_init(function, type)                                         \
static void __attribute__((constructor)) do_qemu_init_ ## function(void)    \
{                                                                           \register_module_init(function, type);                                   \
}
#endif//将函数和类型插入到相应类型的列表中
void register_module_init(void (*fn)(void), module_init_type type)
{ModuleEntry *e;ModuleTypeList *l;e = g_malloc0(sizeof(*e));e->init = fn;e->type = type;l = find_type(type);QTAILQ_INSERT_TAIL(l, e, node);
}//保存的列表
static ModuleTypeList init_type_list[MODULE_INIT_MAX];
static bool modules_init_done[MODULE_INIT_MAX];

2、main函数,定义在softmmu/main.c, main() -> qemu_main() -> qemu_init() ->qemu_init_subsystems() -> module_call_init(MODULE_INIT_QOM)。
int qemu_default_main(void)
{int status;status = qemu_main_loop();qemu_cleanup();return status;
}int (*qemu_main)(void) = qemu_default_main;
int main(int argc, char **argv)
{qemu_init(argc, argv);return qemu_main();
}
3、qemu初始化,定义在softmmu/vl.c
void qemu_init(int argc, char **argv)
{QemuOpts *opts;QemuOpts *icount_opts = NULL, *accel_opts = NULL;QemuOptsList *olist;int optind;const char *optarg;MachineClass *machine_class;bool userconfig = true;FILE *vmstate_dump_file = NULL;//添加参数列表qemu_add_opts(&qemu_drive_opts);qemu_add_drive_opts(&qemu_legacy_drive_opts);...module_call_init(MODULE_INIT_OPTS);error_init(argv[0]);qemu_init_exec_dir(argv[0]);//初始化CPU架构qemu_init_arch_modules();//初始化网络等qemu_init_subsystems();//第一次参数解析optind = 1;while (optind < argc) {if (argv[optind][0] != '-') {/* disk image */optind++;} else {const QEMUOption *popt;popt = lookup_opt(argc, argv, &optarg, &optind);switch (popt->index) {case QEMU_OPTION_nouserconfig:userconfig = false;break;}}}machine_opts_dict = qdict_new();if (userconfig) {qemu_read_default_config_file(&error_fatal);}//第二次参数解析optind = 1;for(;;) {if (optind >= argc)break;if (argv[optind][0] != '-') {loc_set_cmdline(argv, optind, 1);drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);} else {const QEMUOption *popt;popt = lookup_opt(argc, argv, &optarg, &optind);if (!(popt->arch_mask & arch_type)) {error_report("Option not supported for this target");exit(1);}switch(popt->index) {case QEMU_OPTION_cpu:/* hw initialization will check this */cpu_option = optarg;break;...}}}/** Clear error location left behind by the loop. Best done right after the loop. Do not insert code here!*/loc_set_none();qemu_validate_options(machine_opts_dict);qemu_process_sugar_options();/** These options affect everything else and should be processed before daemonizing.*/qemu_process_early_options();qemu_process_help_options();qemu_maybe_daemonize(pid_file);/** The trace backend must be initialized after daemonizing.* trace_init_backends() will call st_init(), which will create the* trace thread in the parent, and also register st_flush_trace_buffer()* in atexit(). This function will force the parent to wait for the* writeout thread to finish, which will not occur, and the parent* process will be left in the host.*/if (!trace_init_backends()) {exit(1);}trace_init_file();qemu_init_main_loop(&error_fatal);cpu_timers_init();user_register_global_props();replay_configure(icount_opts);configure_rtc(qemu_find_opts_singleton("rtc"));/* Transfer QemuOpts options into machine options */parse_memory_options();qemu_create_machine(machine_opts_dict);suspend_mux_open();//禁用默认设备qemu_disable_default_devices();//创建默认设备qemu_create_default_devices();//创建最近backendsqemu_create_early_backends();//应用遗留参数qemu_apply_legacy_machine_options(machine_opts_dict);//应用其他参数qemu_apply_machine_options(machine_opts_dict);//释放machine_opts_dictqobject_unref(machine_opts_dict);phase_advance(PHASE_MACHINE_CREATED);/** Note: uses machine properties such as kernel-irqchip, must run* after qemu_apply_machine_options.*/configure_accelerators(argv[0]);phase_advance(PHASE_ACCEL_CREATED);/** Beware, QOM objects created before this point miss global and* compat properties.** Global properties get set up by qdev_prop_register_global(),* called from user_register_global_props(), and certain option* desugaring.  Also in CPU feature desugaring (buried in* parse_cpu_option()), which happens below this point, but may* only target the CPU type, which can only be created after* parse_cpu_option() returned the type.** Machine compat properties: object_set_machine_compat_props().* Accelerator compat props: object_set_accelerator_compat_props(),* called from do_configure_accelerator().*/machine_class = MACHINE_GET_CLASS(current_machine);if (!qtest_enabled() && machine_class->deprecation_reason) {warn_report("Machine type '%s' is deprecated: %s",machine_class->name, machine_class->deprecation_reason);}/** Note: creates a QOM object, must run only after global and compat properties have been set up.*/migration_object_init();qemu_create_late_backends();/* parse features once if machine provides default cpu_type */current_machine->cpu_type = machine_class->default_cpu_type;if (cpu_option) {current_machine->cpu_type = parse_cpu_option(cpu_option);}/* NB: for machine none cpu_type could STILL be NULL here! */qemu_resolve_machine_memdev();parse_numa_opts(current_machine);if (vmstate_dump_file) {/* dump and exit */module_load_qom_all();dump_vmstate_json_to_file(vmstate_dump_file);exit(0);}if (!preconfig_requested) {qmp_x_exit_preconfig(&error_fatal);}//显示系统初始化,包括VNC和spiceqemu_init_displays();accel_setup_post(current_machine);os_setup_post();resume_mux_open();
}
4、qemu事件循环
int qemu_main_loop(void)
{int status = EXIT_SUCCESS;
#ifdef CONFIG_PROFILERint64_t ti;
#endifwhile (!main_loop_should_exit(&status)) {
#ifdef CONFIG_PROFILERti = profile_getclock();
#endifmain_loop_wait(false);
#ifdef CONFIG_PROFILERdev_time += profile_getclock() - ti;
#endif}return status;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/767876.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

电脑不能读取移动硬盘,但是可以读取U盘解决方法

找到此电脑 右键设备管理器&#xff0c;找到其中的通用串行总线控制器。 注意&#xff0c;凡是插入到电脑当中不能读取的U盘或者移动硬盘&#xff0c;都会在通用串行总线控制器当中显示为USB大容量存储设备 鼠标选中“USB大容量存储设备”&#xff0c;右键卸载它。此时&#x…

AI生产中的缓存策略:降低成本提升性能

AI生产中的缓存策略&#xff1a;降低成本提升性能 概述&#xff1a; 大多数AI应用难以投入生产&#xff0c;主要障碍包括成本、性能和安全等。缓存策略在解决成本和性能问题上扮演了关键角色。 成本挑战&#xff1a; 运行AI模型尤其是大规模应用时成本很高。例如&#xff0c;…

地图定点热力图GeoJson

1.首先需要拿到地图&#xff0c;可以从不同的站点寻找&#xff0c;我这里是从hcharts里面找的 //国外地图数据地址&#xff1a; https://img.hcharts.cn/mapdata/ //国内地图数据地址&#xff1a; https://datav.aliyun.com/portal/school/atlas/area_selector2.在项目中引入e…

医院挂号系统设计与实现|jsp+ Mysql+Java+ B/S结构(可运行源码+数据库+设计文档)

本项目包含可运行源码数据库LW&#xff0c;文末可获取本项目的所有资料。 推荐阅读100套最新项目 最新ssmjava项目文档视频演示可运行源码分享 最新jspjava项目文档视频演示可运行源码分享 最新Spring Boot项目文档视频演示可运行源码分享 2024年56套包含java&#xff0c;…

蓝桥杯——朋友圈(防抖函数)

目标 请在 index.js 文件中补全代码&#xff0c;具体需求如下&#xff1a; 请将 debounce 函数补充完整&#xff0c;实现一个延迟为 delay 毫秒的防抖函数。用户在输入框&#xff08; idtext &#xff09;输入文字时&#xff0c;将用户输入的内容存入 localStorage 中&#x…

路由器里如何设置端口映射?

在互联网时代&#xff0c;我们经常需要将内部网络的服务暴露到公网以便其他人访问。直接将内部网络暴露在公网上存在一定的安全风险。为了解决这个问题&#xff0c;我们可以利用路由器里设置端口映射来实现将特定端口的访问请求转发到内部网络的特定设备上。 端口映射的原理 端…

Leetcode 3091. Apply Operations to Make Sum of Array Greater Than or Equal to k

Leetcode 3091. Apply Operations to Make Sum of Array Greater Than or Equal to k 1. 解题思路2. 代码实现 题目链接&#xff1a;3091. Apply Operations to Make Sum of Array Greater Than or Equal to k 1. 解题思路 这一题的话本质上算是一个数学题&#xff0c;具体就…

Matplotlib数据可视化实战-2绘制折线图(1)

函数plot是matplotlib.pyplot模块中的一个重要函数&#xff0c;用于在图形中绘制折线图。其基本用法是plot(x, y, [fmt], **kwargs)&#xff0c;其中x和y分别代表X轴和Y轴上的数据点&#xff0c;通常是以列表、数组或一维序列的形式给出。通常用的参数有&#xff1a; 基本参数…

Programming Abstractions in C阅读笔记:p331-p337

《Programming Abstractions in C》学习第79天&#xff0c;p331-p337&#xff0c;总计7页。 一、技术总结 /** File: stack.h* -------------* This interface defines an abstraction for stacks. In any* single application that uses this interface, the values in* the…

IEEE TRANSACTIONS ON INTELLIGENT TRANSPORTATION SYSTEMS (T-ITS) 投稿记录,欢迎大家评论~

投稿整个流程时间点&#xff1a;Submitted: 17 October 2023 Awaiting Reviewer Assignment: From 18 October 2023 to 6 November 2023 Under review: From 6 November 2023 to 30 November 2023 Awaiting reviewer scores: From 1 December 2023 to 13 January 2024 Aw…

【课程】Java构架师42套阶段课程

01.第一阶段、Svn版本管理与代码上线架构方案 02.第二阶段、实战Java高并发程序设计模式视频 03.第三阶段、深入JVM内核一原理、诊断与优化 04.第四阶段、基于Netty的RPC架构实战演练 05.第五阶段、Git分布式版本控制系统权威指南 06.第六阶段、Redis从入门到精通、集群与应用 …

Unity学习笔记 6.2D换帧动画

下载源码 UnityPackage 目录 1.导入图片 1.1. 图片的叠放顺序 2.图片切片 3.用动画控制器让马&#x1f40e;动起来 1.导入图片 直接拖拽进场景 检查 Texture Type&#xff08;纹理类型&#xff09;是否为 Sprite 创建2D精灵对象&#xff0c;拖拽图片到Sprite&#xff08…

【tips】Git使用指南

文章目录 一、Git介绍1. 什么是Git2.Git对比SVN3.Git安装 二.Git常用命令1. git config2. 初始化本地库3. 工作区、暂存区和版本库4. git add5. git commit6. git reset 与 git revertgit resetgit revert 三. Git 分支1.初识分支2.创建分支3.切换分支4.合并分支5.删除分支 四.…

6.4 Dropout正则化

1、Dropout Dropout是一种正则化技术&#xff0c;通过防止特征的协同适应&#xff0c;可用于减少神经网络中的过拟合。 Dropout的效果非常好&#xff0c;实现简单且不会降低网络速度&#xff0c;被广泛使用。 特征的协同适应指的是在训练模型时&#xff0c;共同训练的神经元…

【算法篇】逐步理解动态规划1(斐波那契数列模型)

目录 斐波那契数列模型 1. 第N个泰波那契数 2.使用最小花费爬楼梯 3.解码方法 学过算法的应该知道&#xff0c;动态规划一直都是一个非常难的模块&#xff0c;无论是状态转移方程的定义还是dp表的填表&#xff0c;都非常难找到思路。在这个算法的支线专题中我会结合很多力…

stm32启动文件里面的__main和主函数main()

一、__main和main()之间的关系 先来对stm32启动过程简单学习 启动文件里面的Reset_Handler&#xff1a; 调用过程&#xff1a; stm32在启动后先进入重启中断函数Reset_Handler&#xff0c;其中会先后调用SystemInit和__main函数&#xff0c; __main函数属于c库函数&…

在mysql中索引字段类型是设置为bigint?还是varchar好?

在数据库设计中&#xff0c;选择索引字段的数据类型时&#xff0c;bigint和varchar各有优缺点&#xff0c;具体选择哪种类型取决于字段的用途、数据特性和查询需求。以下是对两者特点的对比&#xff1a; bigint: •优点&#xff1a; •大整数类型&#xff0c;适合存储整数或长整…

基于SpringBoot+Vue健身房管理系统(源码+部署说明+演示视频+源码介绍)

您好&#xff0c;我是码农飞哥&#xff08;wei158556&#xff09;&#xff0c;感谢您阅读本文&#xff0c;欢迎一键三连哦。&#x1f4aa;&#x1f3fb; 1. Python基础专栏&#xff0c;基础知识一网打尽&#xff0c;9.9元买不了吃亏&#xff0c;买不了上当。 Python从入门到精通…

Selenium 驱动配置 和 元素定位

目录 驱动配置 元素定位 By类普通参数方法 CSS选择器参数方法 By类xpath参数方法 驱动配置 //新建chrome浏览器驱动配置 ChromeOptions options new ChromeOptions();//添加参数&#xff0c;允许远程访问 options.addArguments("--remote-allow-origins*");//新…

Transformer的前世今生 day03(Word2Vec、如何使用在下游任务中)

前情回顾 由上一节&#xff0c;我们可以得到&#xff1a; 任何一个独热编码的词都可以通过Q矩阵得到一个词向量&#xff0c;而词向量有两个优点&#xff1a; 可以改变输入的维度&#xff08;原来是很大的独热编码&#xff0c;但是我们经过一个Q矩阵后&#xff0c;维度就可以控…