基本信息
源码名称:haxm-intel开发的虚拟机管理程序
源码大小:0.49M
文件格式:.zip
开发语言:C/C++
更新时间:2022-06-21
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
haxm-intel开发的虚拟机管理程序

.
├── haxm-intel开发的虚拟机管理程序.zip
└── haxm-master
    ├── CODE_OF_CONDUCT.md
    ├── CONTRIBUTING.md
    ├── CheckTool
    │   ├── CMakeLists.txt
    │   ├── CMakeSettings.json
    │   ├── Info.plist
    │   ├── README.md
    │   ├── arg_parser.cpp
    │   ├── arg_parser.h
    │   ├── common.cpp
    │   ├── common.h
    │   ├── cpuid.cpp
    │   ├── cpuid.h
    │   ├── feature_detector.cpp
    │   ├── feature_detector.h
    │   ├── main.cpp
    │   ├── os.h
    │   ├── os_darwin.cpp
    │   ├── os_darwin.h
    │   ├── os_windows.cpp
    │   ├── os_windows.h
    │   └── version.rc
    ├── HaxmLoader
    │   ├── HaxmLoader.sln
    │   ├── HaxmLoader.vcxproj
    │   └── haxm_loader.c
    ├── Installer
    │   ├── HaxmSetup.nsi
    │   ├── Log.nsh
    │   ├── README.md
    │   ├── RegOps.nsh
    │   ├── Service.nsh
    │   ├── Strings.nsh
    │   ├── UI.nsh
    │   ├── Uninstall.nsi
    │   ├── Utils.nsh
    │   ├── res
    │   │   ├── cover.bmp
    │   │   └── haxm_logo.ico
    │   └── silent_install.bat
    ├── LICENSE
    ├── README.md
    ├── core
    │   ├── chunk.c
    │   ├── cpu.c
    │   ├── cpuid.c
    │   ├── dump.c
    │   ├── emulate.c
    │   ├── emulate_ops.asm
    │   ├── ept.c
    │   ├── ept2.c
    │   ├── ept_tree.c
    │   ├── gpa_space.c
    │   ├── hax.c
    │   ├── ia32.c
    │   ├── ia32_ops.asm
    │   ├── include
    │   │   ├── compiler.h
    │   │   ├── config.h
    │   │   ├── cpu.h
    │   │   ├── cpuid.h
    │   │   ├── debug.h
    │   │   ├── driver.h
    │   │   ├── dump.h
    │   │   ├── emulate.h
    │   │   ├── emulate_ops.h
    │   │   ├── ept.h
    │   │   ├── ept2.h
    │   │   ├── ia32.h
    │   │   ├── ia32_defs.h
    │   │   ├── interface.h
    │   │   ├── intr.h
    │   │   ├── memory.h
    │   │   ├── mmio.h
    │   │   ├── mtrr.h
    │   │   ├── name.h
    │   │   ├── page_walker.h
    │   │   ├── paging.h
    │   │   ├── pmu.h
    │   │   ├── segments.h
    │   │   ├── types.h
    │   │   ├── vcpu.h
    │   │   ├── vm.h
    │   │   └── vmx.h
    │   ├── intr_exc.c
    │   ├── memory.c
    │   ├── memslot.c
    │   ├── mmio.c
    │   ├── name.c
    │   ├── page_walker.c
    │   ├── ramblock.c
    │   ├── vcpu.c
    │   ├── vm.c
    │   ├── vmx.c
    │   └── vmx_ops.asm
    ├── docs
    │   ├── api.md
    │   ├── manual-linux.md
    │   ├── manual-macos.md
    │   └── manual-windows.md
    ├── include
    │   ├── darwin
    │   │   ├── hax_interface_mac.h
    │   │   ├── hax_mac.h
    │   │   └── hax_types_mac.h
    │   ├── hax.h
    │   ├── hax_host_mem.h
    │   ├── hax_interface.h
    │   ├── hax_list.h
    │   ├── hax_release_ver.h
    │   ├── hax_types.h
    │   ├── hax_vcpu_state.h
    │   ├── linux
    │   │   ├── hax_interface_linux.h
    │   │   ├── hax_linux.h
    │   │   └── hax_types_linux.h
    │   ├── netbsd
    │   │   ├── hax_interface_netbsd.h
    │   │   ├── hax_netbsd.h
    │   │   └── hax_types_netbsd.h
    │   └── windows
    │       ├── hax_interface_windows.h
    │       ├── hax_types_windows.h
    │       └── hax_windows.h
    ├── platforms
    │   ├── darwin
    │   │   ├── English.lproj
    │   │   │   └── InfoPlist.strings
    │   │   ├── Info.plist
    │   │   ├── components.c
    │   │   ├── components.h
    │   │   ├── hax_entry.c
    │   │   ├── hax_entry.h
    │   │   ├── hax_host.h
    │   │   ├── hax_host_mem.cpp
    │   │   ├── hax_main.c
    │   │   ├── hax_mem_alloc.cpp
    │   │   ├── hax_mem_alloc.h
    │   │   ├── hax_mm.cpp
    │   │   ├── hax_mm.h
    │   │   ├── hax_wrapper.cpp
    │   │   └── intelhaxm.xcodeproj
    │   │       └── project.pbxproj
    │   ├── linux
    │   │   ├── Kbuild
    │   │   ├── Makefile
    │   │   ├── components.c
    │   │   ├── hax_entry.c
    │   │   ├── hax_event.c
    │   │   ├── hax_host_mem.c
    │   │   ├── hax_mem_alloc.c
    │   │   ├── hax_mm.c
    │   │   ├── hax_wrapper.c
    │   │   ├── haxm-install.sh
    │   │   └── haxm-uninstall.sh
    │   ├── netbsd
    │   │   ├── Makefile
    │   │   ├── components.c
    │   │   ├── hax_entry.c
    │   │   ├── hax_entry_hax.c
    │   │   ├── hax_entry_vcpu.c
    │   │   ├── hax_entry_vm.c
    │   │   ├── hax_event.c
    │   │   ├── hax_host_mem.c
    │   │   ├── hax_mem_alloc.c
    │   │   ├── hax_mm.c
    │   │   └── hax_wrapper.c
    │   └── windows
    │       ├── components.c
    │       ├── hax_entry.c
    │       ├── hax_event.c
    │       ├── hax_event_win.mc
    │       ├── hax_host_mem.c
    │       ├── hax_mem_alloc.c
    │       ├── hax_mm.c
    │       ├── hax_win.h
    │       ├── hax_winlog.c
    │       ├── hax_wrapper.c
    │       ├── haxm-core.vcxproj
    │       ├── haxm-tests.vcxproj
    │       ├── haxm-windows.vcxproj
    │       ├── haxm.sln
    │       ├── packages.haxm-core.config
    │       ├── packages.haxm-tests.config
    │       └── version.rc
    └── tests
        └── test_emulator.cpp

21 directories, 168 files