├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── UNPACKER.md ├── cmake.toml ├── cmkr.cmake ├── vmassembler ├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake.toml ├── cmkr.cmake ├── demo │ ├── demo.bin │ ├── demo.vcxproj │ ├── demo.vcxproj.filters │ ├── main.cpp │ └── test.hpp ├── doxygen │ ├── Doxyfile │ └── icon.png ├── include │ ├── compiler.hpp │ ├── gen_code.hpp │ ├── parser.hpp │ └── xtils.hpp └── src │ ├── compiler.cpp │ ├── custom_build_rules │ ├── Bison │ │ ├── win_bison_custom_build.props │ │ ├── win_bison_custom_build.targets │ │ └── win_bison_custom_build.xml │ ├── Flex │ │ ├── win_flex_custom_build.props │ │ ├── win_flex_custom_build.targets │ │ └── win_flex_custom_build.xml │ ├── how_to_use.txt │ ├── win_bison_only │ │ ├── win_bison_custom_build.props │ │ ├── win_bison_custom_build.targets │ │ └── win_bison_custom_build.xml │ ├── win_flex_bison_custom_build.props │ ├── win_flex_bison_custom_build.targets │ ├── win_flex_bison_custom_build.xml │ └── win_flex_only │ │ ├── win_flex_custom_build.props │ │ ├── win_flex_custom_build.targets │ │ └── win_flex_custom_build.xml │ ├── data │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── bison.m4 │ ├── c++-skel.m4 │ ├── c++.m4 │ ├── c-like.m4 │ ├── c-skel.m4 │ ├── c.m4 │ ├── glr.c │ ├── glr.cc │ ├── java-skel.m4 │ ├── java.m4 │ ├── lalr1.cc │ ├── lalr1.java │ ├── location.cc │ ├── m4sugar │ │ ├── foreach.m4 │ │ └── m4sugar.m4 │ ├── stack.hh │ ├── xslt │ │ ├── bison.xsl │ │ ├── xml2dot.xsl │ │ ├── xml2text.xsl │ │ └── xml2xhtml.xsl │ └── yacc.c │ ├── icon.ico │ ├── icon.rc │ ├── lexer.flex.cpp │ ├── lexer.l │ ├── main.cpp │ ├── parser.cpp │ ├── parser.tab.cpp │ ├── parser.tab.h │ ├── parser.y │ ├── vmassembler.vcxproj │ └── vmassembler.vcxproj.filters ├── vmdevirt ├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── cmake.toml ├── cmkr.cmake ├── include │ ├── devirt_t.hpp │ ├── devirt_utils.hpp │ ├── vm_lifters.hpp │ ├── vmp_rtn_t.hpp │ └── xtils.hpp └── src │ ├── devirt_t.cpp │ ├── devirt_utils.cpp │ ├── lifters │ ├── add.cpp │ ├── div.cpp │ ├── idiv.cpp │ ├── imul.cpp │ ├── jmp.cpp │ ├── lconst.cpp │ ├── lflags.cpp │ ├── lreg.cpp │ ├── mul.cpp │ ├── nand.cpp │ ├── popvsp.cpp │ ├── pushvsp.cpp │ ├── rdtsc.cpp │ ├── read.cpp │ ├── readcr3.cpp │ ├── readcr8.cpp │ ├── readgs.cpp │ ├── sflags.cpp │ ├── shl.cpp │ ├── shld.cpp │ ├── shr.cpp │ ├── shrd.cpp │ ├── sreg.cpp │ ├── vmexit.cpp │ ├── write.cpp │ └── writecr3.cpp │ ├── main.cpp │ └── vmp_rtn_t.cpp ├── vmemu ├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake.toml ├── cmkr.cmake ├── include │ ├── unpacker.hpp │ └── vmemu_t.hpp └── src │ ├── main.cpp │ ├── unpacker.cpp │ └── vmemu_t.cpp ├── vmhook ├── .gitignore ├── LICENSE ├── README.md ├── example │ └── um-hook │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── LICENSE │ │ ├── README.md │ │ ├── refbuilds │ │ ├── not-packed │ │ │ ├── vmptest.exe │ │ │ ├── vmptest.exe.i64 │ │ │ ├── vmptest.vmp.exe │ │ │ ├── vmptest.vmp.exe.i64 │ │ │ ├── vmptest1.vmp.exe │ │ │ ├── vmptest1.vmp.exe.i64 │ │ │ ├── vmptest10.vmp.exe │ │ │ ├── vmptest11.vmp.exe │ │ │ ├── vmptest12.vmp.exe │ │ │ ├── vmptest13.vmp.exe │ │ │ ├── vmptest2.vmp.exe │ │ │ ├── vmptest2.vmp.exe.i64 │ │ │ ├── vmptest3.vmp.exe │ │ │ ├── vmptest3.vmp.exe.i64 │ │ │ ├── vmptest4.vmp.exe │ │ │ ├── vmptest4.vmp.exe.i64 │ │ │ ├── vmptest5.vmp.exe │ │ │ ├── vmptest5.vmp.exe.i64 │ │ │ ├── vmptest6.vmp.exe │ │ │ ├── vmptest6.vmp.exe.i64 │ │ │ ├── vmptest7.vmp.exe │ │ │ ├── vmptest7.vmp.exe.i64 │ │ │ ├── vmptest8.vmp.exe │ │ │ ├── vmptest8.vmp.exe.i64 │ │ │ └── vmptest9.vmp.exe │ │ └── packed │ │ │ ├── just-virtualization │ │ │ ├── vmptest1.vmp.packed.exe │ │ │ ├── vmptest2.vmp.packed.exe │ │ │ └── vmptest3.vmp.packed.exe │ │ │ ├── ultra-10-vms │ │ │ ├── vmptest1.vmp.packed.ultra.10vms.exe │ │ │ ├── vmptest2.vmp.packed.ultra.10vms.exe │ │ │ └── vmptest3.vmp.packed.ultra.10vms.exe │ │ │ ├── ultra │ │ │ ├── vmptest1.vmp.packed.ultra.exe │ │ │ ├── vmptest2.vmp.packed.ultra.exe │ │ │ └── vmptest3.vmp.packed.ultra.exe │ │ │ └── vmptest.vmp.unpacked.exe │ │ └── src │ │ ├── um-hook.sln │ │ ├── um-hook │ │ ├── lconstbzx.asm │ │ ├── main.cpp │ │ ├── um-hook.vcxproj │ │ └── um-hook.vcxproj.filters │ │ └── vmptest │ │ ├── ia32.h │ │ ├── main.cpp │ │ ├── vmptest.vcxproj │ │ └── vmptest.vcxproj.filters ├── include │ └── vmhook.hpp ├── src │ ├── vmhook.cpp │ ├── vmhook.vcxproj │ ├── vmhook.vcxproj.filters │ └── vtrap.asm └── vmhook.sln ├── vmprofiler-cli ├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake.toml ├── cmkr.cmake ├── dataset │ └── samples.rar └── src │ ├── icon.aps │ ├── icon.ico │ ├── icon.rc │ └── main.cpp ├── vmprofiler-qt ├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake.toml ├── cmake │ ├── Qt5Helpers.cmake │ └── cmkr.cmake └── src │ ├── darkstyle │ ├── .gitignore │ ├── DarkStyle.cpp │ ├── DarkStyle.h │ ├── README.md │ ├── darkstyle.qrc │ ├── darkstyle │ │ ├── darkstyle.qss │ │ ├── icon_branch_closed.png │ │ ├── icon_branch_end.png │ │ ├── icon_branch_more.png │ │ ├── icon_branch_open.png │ │ ├── icon_checkbox_checked.png │ │ ├── icon_checkbox_checked_disabled.png │ │ ├── icon_checkbox_checked_pressed.png │ │ ├── icon_checkbox_indeterminate.png │ │ ├── icon_checkbox_indeterminate_disabled.png │ │ ├── icon_checkbox_indeterminate_pressed.png │ │ ├── icon_checkbox_unchecked.png │ │ ├── icon_checkbox_unchecked_disabled.png │ │ ├── icon_checkbox_unchecked_pressed.png │ │ ├── icon_close.png │ │ ├── icon_radiobutton_checked.png │ │ ├── icon_radiobutton_checked_disabled.png │ │ ├── icon_radiobutton_checked_pressed.png │ │ ├── icon_radiobutton_unchecked.png │ │ ├── icon_radiobutton_unchecked_disabled.png │ │ ├── icon_radiobutton_unchecked_pressed.png │ │ ├── icon_restore.png │ │ ├── icon_undock.png │ │ └── icon_vline.png │ ├── frameless_window_dark.pro │ ├── framelesswindow.qrc │ ├── framelesswindow │ │ ├── framelesswindow.cpp │ │ ├── framelesswindow.h │ │ ├── framelesswindow.ui │ │ ├── windowdragger.cpp │ │ └── windowdragger.h │ ├── images │ │ ├── icon_window_close.png │ │ ├── icon_window_maximize.png │ │ ├── icon_window_minimize.png │ │ └── icon_window_restore.png │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── screenshot_mac_frameless_window_qt_dark_style_disabled.png │ ├── screenshot_mac_frameless_window_qt_dark_style_enabled.png │ └── screenshot_win7_frameless_window_qt_dark_style_enabled.png │ ├── icon.ico │ ├── icon.rc │ ├── main.cpp │ ├── qvm_handlers.cpp │ ├── qvm_handlers.h │ ├── qvm_inspector.cpp │ ├── qvm_inspector.h │ ├── qvm_virtual_instructions.cpp │ ├── qvm_virtual_instructions.h │ ├── qvm_virtual_routines.cpp │ ├── qvm_virtual_routines.h │ ├── qvminspector.qrc │ └── qvminspector.ui └── vmprofiler ├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake.toml ├── cmkr.cmake ├── doxygen ├── Doxyfile ├── icon.png └── manual │ ├── ADD_VMP2_INSTR.md │ └── ADD_VTIL_LIFTER.md ├── include ├── calc_jmp.hpp ├── scn.hpp ├── transform.hpp ├── vmctx.hpp ├── vmhandlers.hpp ├── vminstrs.hpp ├── vmlocate.hpp ├── vmp2.hpp ├── vmprofiler.hpp ├── vmprofiles.hpp └── vmutils.hpp └── src ├── calc_jmp.cpp ├── scn.cpp ├── vmctx.cpp ├── vmhandler.cpp ├── vminstrs.cpp ├── vmlocate.cpp ├── vmprofiles ├── add.cpp ├── call.cpp ├── div.cpp ├── idiv.cpp ├── imul.cpp ├── jmp.cpp ├── lconst.cpp ├── lflags.cpp ├── lreg.cpp ├── mul.cpp ├── nand.cpp ├── popvsp.cpp ├── pushvsp.cpp ├── rdtsc.cpp ├── read.cpp ├── readcr3.cpp ├── readcr8.cpp ├── shl.cpp ├── shld.cpp ├── shr.cpp ├── shrd.cpp ├── sreg.cpp ├── vmexit.cpp ├── write.cpp └── writecr3.cpp └── vmutils.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/README.md -------------------------------------------------------------------------------- /UNPACKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/UNPACKER.md -------------------------------------------------------------------------------- /cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/cmake.toml -------------------------------------------------------------------------------- /cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/cmkr.cmake -------------------------------------------------------------------------------- /vmassembler/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Chromium 3 | 4 | ... 5 | 6 | -------------------------------------------------------------------------------- /vmassembler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/.gitignore -------------------------------------------------------------------------------- /vmassembler/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/.gitmodules -------------------------------------------------------------------------------- /vmassembler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/CMakeLists.txt -------------------------------------------------------------------------------- /vmassembler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/LICENSE -------------------------------------------------------------------------------- /vmassembler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/README.md -------------------------------------------------------------------------------- /vmassembler/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/cmake.toml -------------------------------------------------------------------------------- /vmassembler/cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/cmkr.cmake -------------------------------------------------------------------------------- /vmassembler/demo/demo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/demo/demo.bin -------------------------------------------------------------------------------- /vmassembler/demo/demo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/demo/demo.vcxproj -------------------------------------------------------------------------------- /vmassembler/demo/demo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/demo/demo.vcxproj.filters -------------------------------------------------------------------------------- /vmassembler/demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/demo/main.cpp -------------------------------------------------------------------------------- /vmassembler/demo/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/demo/test.hpp -------------------------------------------------------------------------------- /vmassembler/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/doxygen/Doxyfile -------------------------------------------------------------------------------- /vmassembler/doxygen/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/doxygen/icon.png -------------------------------------------------------------------------------- /vmassembler/include/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/include/compiler.hpp -------------------------------------------------------------------------------- /vmassembler/include/gen_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/include/gen_code.hpp -------------------------------------------------------------------------------- /vmassembler/include/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/include/parser.hpp -------------------------------------------------------------------------------- /vmassembler/include/xtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/include/xtils.hpp -------------------------------------------------------------------------------- /vmassembler/src/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/compiler.cpp -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/Bison/win_bison_custom_build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/Bison/win_bison_custom_build.props -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/Bison/win_bison_custom_build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/Bison/win_bison_custom_build.targets -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/Bison/win_bison_custom_build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/Bison/win_bison_custom_build.xml -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/Flex/win_flex_custom_build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/Flex/win_flex_custom_build.props -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/Flex/win_flex_custom_build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/Flex/win_flex_custom_build.targets -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/Flex/win_flex_custom_build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/Flex/win_flex_custom_build.xml -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/how_to_use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/how_to_use.txt -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/win_bison_only/win_bison_custom_build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/win_bison_only/win_bison_custom_build.props -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/win_bison_only/win_bison_custom_build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/win_bison_only/win_bison_custom_build.targets -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/win_bison_only/win_bison_custom_build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/win_bison_only/win_bison_custom_build.xml -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/win_flex_bison_custom_build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/win_flex_bison_custom_build.props -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/win_flex_bison_custom_build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/win_flex_bison_custom_build.targets -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/win_flex_bison_custom_build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/win_flex_bison_custom_build.xml -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/win_flex_only/win_flex_custom_build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/win_flex_only/win_flex_custom_build.props -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/win_flex_only/win_flex_custom_build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/win_flex_only/win_flex_custom_build.targets -------------------------------------------------------------------------------- /vmassembler/src/custom_build_rules/win_flex_only/win_flex_custom_build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/custom_build_rules/win_flex_only/win_flex_custom_build.xml -------------------------------------------------------------------------------- /vmassembler/src/data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/Makefile.am -------------------------------------------------------------------------------- /vmassembler/src/data/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/Makefile.in -------------------------------------------------------------------------------- /vmassembler/src/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/README -------------------------------------------------------------------------------- /vmassembler/src/data/bison.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/bison.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/c++-skel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/c++-skel.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/c++.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/c++.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/c-like.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/c-like.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/c-skel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/c-skel.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/c.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/c.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/glr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/glr.c -------------------------------------------------------------------------------- /vmassembler/src/data/glr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/glr.cc -------------------------------------------------------------------------------- /vmassembler/src/data/java-skel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/java-skel.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/java.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/java.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/lalr1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/lalr1.cc -------------------------------------------------------------------------------- /vmassembler/src/data/lalr1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/lalr1.java -------------------------------------------------------------------------------- /vmassembler/src/data/location.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/location.cc -------------------------------------------------------------------------------- /vmassembler/src/data/m4sugar/foreach.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/m4sugar/foreach.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/m4sugar/m4sugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/m4sugar/m4sugar.m4 -------------------------------------------------------------------------------- /vmassembler/src/data/stack.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/stack.hh -------------------------------------------------------------------------------- /vmassembler/src/data/xslt/bison.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/xslt/bison.xsl -------------------------------------------------------------------------------- /vmassembler/src/data/xslt/xml2dot.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/xslt/xml2dot.xsl -------------------------------------------------------------------------------- /vmassembler/src/data/xslt/xml2text.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/xslt/xml2text.xsl -------------------------------------------------------------------------------- /vmassembler/src/data/xslt/xml2xhtml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/xslt/xml2xhtml.xsl -------------------------------------------------------------------------------- /vmassembler/src/data/yacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/data/yacc.c -------------------------------------------------------------------------------- /vmassembler/src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/icon.ico -------------------------------------------------------------------------------- /vmassembler/src/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/icon.rc -------------------------------------------------------------------------------- /vmassembler/src/lexer.flex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/lexer.flex.cpp -------------------------------------------------------------------------------- /vmassembler/src/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/lexer.l -------------------------------------------------------------------------------- /vmassembler/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/main.cpp -------------------------------------------------------------------------------- /vmassembler/src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/parser.cpp -------------------------------------------------------------------------------- /vmassembler/src/parser.tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/parser.tab.cpp -------------------------------------------------------------------------------- /vmassembler/src/parser.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/parser.tab.h -------------------------------------------------------------------------------- /vmassembler/src/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/parser.y -------------------------------------------------------------------------------- /vmassembler/src/vmassembler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/vmassembler.vcxproj -------------------------------------------------------------------------------- /vmassembler/src/vmassembler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmassembler/src/vmassembler.vcxproj.filters -------------------------------------------------------------------------------- /vmdevirt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/.clang-format -------------------------------------------------------------------------------- /vmdevirt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/.gitignore -------------------------------------------------------------------------------- /vmdevirt/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/.gitmodules -------------------------------------------------------------------------------- /vmdevirt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/CMakeLists.txt -------------------------------------------------------------------------------- /vmdevirt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/README.md -------------------------------------------------------------------------------- /vmdevirt/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/cmake.toml -------------------------------------------------------------------------------- /vmdevirt/cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/cmkr.cmake -------------------------------------------------------------------------------- /vmdevirt/include/devirt_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/include/devirt_t.hpp -------------------------------------------------------------------------------- /vmdevirt/include/devirt_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/include/devirt_utils.hpp -------------------------------------------------------------------------------- /vmdevirt/include/vm_lifters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/include/vm_lifters.hpp -------------------------------------------------------------------------------- /vmdevirt/include/vmp_rtn_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/include/vmp_rtn_t.hpp -------------------------------------------------------------------------------- /vmdevirt/include/xtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/include/xtils.hpp -------------------------------------------------------------------------------- /vmdevirt/src/devirt_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/devirt_t.cpp -------------------------------------------------------------------------------- /vmdevirt/src/devirt_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/devirt_utils.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/add.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/div.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/idiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/idiv.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/imul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/imul.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/jmp.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/lconst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/lconst.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/lflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/lflags.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/lreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/lreg.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/mul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/mul.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/nand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/nand.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/popvsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/popvsp.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/pushvsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/pushvsp.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/rdtsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/rdtsc.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/read.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/readcr3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/readcr3.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/readcr8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/readcr8.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/readgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/readgs.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/sflags.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vmdevirt/src/lifters/shl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/shl.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/shld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/shld.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/shr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/shr.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/shrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/shrd.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/sreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/sreg.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/vmexit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/vmexit.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/write.cpp -------------------------------------------------------------------------------- /vmdevirt/src/lifters/writecr3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/lifters/writecr3.cpp -------------------------------------------------------------------------------- /vmdevirt/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/main.cpp -------------------------------------------------------------------------------- /vmdevirt/src/vmp_rtn_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmdevirt/src/vmp_rtn_t.cpp -------------------------------------------------------------------------------- /vmemu/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Chromium 3 | 4 | ... 5 | -------------------------------------------------------------------------------- /vmemu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/.gitignore -------------------------------------------------------------------------------- /vmemu/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/.gitmodules -------------------------------------------------------------------------------- /vmemu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/CMakeLists.txt -------------------------------------------------------------------------------- /vmemu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/LICENSE -------------------------------------------------------------------------------- /vmemu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/README.md -------------------------------------------------------------------------------- /vmemu/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/cmake.toml -------------------------------------------------------------------------------- /vmemu/cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/cmkr.cmake -------------------------------------------------------------------------------- /vmemu/include/unpacker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/include/unpacker.hpp -------------------------------------------------------------------------------- /vmemu/include/vmemu_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/include/vmemu_t.hpp -------------------------------------------------------------------------------- /vmemu/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/src/main.cpp -------------------------------------------------------------------------------- /vmemu/src/unpacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/src/unpacker.cpp -------------------------------------------------------------------------------- /vmemu/src/vmemu_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmemu/src/vmemu_t.cpp -------------------------------------------------------------------------------- /vmhook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/.gitignore -------------------------------------------------------------------------------- /vmhook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/LICENSE -------------------------------------------------------------------------------- /vmhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/README.md -------------------------------------------------------------------------------- /vmhook/example/um-hook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/.gitignore -------------------------------------------------------------------------------- /vmhook/example/um-hook/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/.gitmodules -------------------------------------------------------------------------------- /vmhook/example/um-hook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/LICENSE -------------------------------------------------------------------------------- /vmhook/example/um-hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/README.md -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest.vmp.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest.vmp.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest1.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest1.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest1.vmp.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest1.vmp.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest10.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest10.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest11.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest11.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest12.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest12.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest13.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest13.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest2.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest2.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest2.vmp.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest2.vmp.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest3.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest3.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest3.vmp.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest3.vmp.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest4.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest4.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest4.vmp.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest4.vmp.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest5.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest5.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest5.vmp.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest5.vmp.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest6.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest6.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest6.vmp.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest6.vmp.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest7.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest7.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest7.vmp.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest7.vmp.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest8.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest8.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest8.vmp.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest8.vmp.exe.i64 -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/not-packed/vmptest9.vmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/not-packed/vmptest9.vmp.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/just-virtualization/vmptest1.vmp.packed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/just-virtualization/vmptest1.vmp.packed.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/just-virtualization/vmptest2.vmp.packed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/just-virtualization/vmptest2.vmp.packed.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/just-virtualization/vmptest3.vmp.packed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/just-virtualization/vmptest3.vmp.packed.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/ultra-10-vms/vmptest1.vmp.packed.ultra.10vms.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/ultra-10-vms/vmptest1.vmp.packed.ultra.10vms.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/ultra-10-vms/vmptest2.vmp.packed.ultra.10vms.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/ultra-10-vms/vmptest2.vmp.packed.ultra.10vms.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/ultra-10-vms/vmptest3.vmp.packed.ultra.10vms.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/ultra-10-vms/vmptest3.vmp.packed.ultra.10vms.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/ultra/vmptest1.vmp.packed.ultra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/ultra/vmptest1.vmp.packed.ultra.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/ultra/vmptest2.vmp.packed.ultra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/ultra/vmptest2.vmp.packed.ultra.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/ultra/vmptest3.vmp.packed.ultra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/ultra/vmptest3.vmp.packed.ultra.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/refbuilds/packed/vmptest.vmp.unpacked.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/refbuilds/packed/vmptest.vmp.unpacked.exe -------------------------------------------------------------------------------- /vmhook/example/um-hook/src/um-hook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/src/um-hook.sln -------------------------------------------------------------------------------- /vmhook/example/um-hook/src/um-hook/lconstbzx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/src/um-hook/lconstbzx.asm -------------------------------------------------------------------------------- /vmhook/example/um-hook/src/um-hook/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/src/um-hook/main.cpp -------------------------------------------------------------------------------- /vmhook/example/um-hook/src/um-hook/um-hook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/src/um-hook/um-hook.vcxproj -------------------------------------------------------------------------------- /vmhook/example/um-hook/src/um-hook/um-hook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/src/um-hook/um-hook.vcxproj.filters -------------------------------------------------------------------------------- /vmhook/example/um-hook/src/vmptest/ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/src/vmptest/ia32.h -------------------------------------------------------------------------------- /vmhook/example/um-hook/src/vmptest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/src/vmptest/main.cpp -------------------------------------------------------------------------------- /vmhook/example/um-hook/src/vmptest/vmptest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/src/vmptest/vmptest.vcxproj -------------------------------------------------------------------------------- /vmhook/example/um-hook/src/vmptest/vmptest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/example/um-hook/src/vmptest/vmptest.vcxproj.filters -------------------------------------------------------------------------------- /vmhook/include/vmhook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/include/vmhook.hpp -------------------------------------------------------------------------------- /vmhook/src/vmhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/src/vmhook.cpp -------------------------------------------------------------------------------- /vmhook/src/vmhook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/src/vmhook.vcxproj -------------------------------------------------------------------------------- /vmhook/src/vmhook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/src/vmhook.vcxproj.filters -------------------------------------------------------------------------------- /vmhook/src/vtrap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/src/vtrap.asm -------------------------------------------------------------------------------- /vmhook/vmhook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmhook/vmhook.sln -------------------------------------------------------------------------------- /vmprofiler-cli/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/.clang-format -------------------------------------------------------------------------------- /vmprofiler-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/.gitignore -------------------------------------------------------------------------------- /vmprofiler-cli/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/.gitmodules -------------------------------------------------------------------------------- /vmprofiler-cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/CMakeLists.txt -------------------------------------------------------------------------------- /vmprofiler-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/LICENSE -------------------------------------------------------------------------------- /vmprofiler-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/README.md -------------------------------------------------------------------------------- /vmprofiler-cli/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/cmake.toml -------------------------------------------------------------------------------- /vmprofiler-cli/cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/cmkr.cmake -------------------------------------------------------------------------------- /vmprofiler-cli/dataset/samples.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/dataset/samples.rar -------------------------------------------------------------------------------- /vmprofiler-cli/src/icon.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/src/icon.aps -------------------------------------------------------------------------------- /vmprofiler-cli/src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/src/icon.ico -------------------------------------------------------------------------------- /vmprofiler-cli/src/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/src/icon.rc -------------------------------------------------------------------------------- /vmprofiler-cli/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-cli/src/main.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/.clang-format -------------------------------------------------------------------------------- /vmprofiler-qt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/.gitignore -------------------------------------------------------------------------------- /vmprofiler-qt/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/.gitmodules -------------------------------------------------------------------------------- /vmprofiler-qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/CMakeLists.txt -------------------------------------------------------------------------------- /vmprofiler-qt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/LICENSE -------------------------------------------------------------------------------- /vmprofiler-qt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/README.md -------------------------------------------------------------------------------- /vmprofiler-qt/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/cmake.toml -------------------------------------------------------------------------------- /vmprofiler-qt/cmake/Qt5Helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/cmake/Qt5Helpers.cmake -------------------------------------------------------------------------------- /vmprofiler-qt/cmake/cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/cmake/cmkr.cmake -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/.gitignore -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/DarkStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/DarkStyle.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/DarkStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/DarkStyle.h -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/README.md -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle.qrc -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/darkstyle.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/darkstyle.qss -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_branch_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_branch_closed.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_branch_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_branch_end.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_branch_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_branch_more.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_branch_open.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_checked.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_checked_disabled.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_checked_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_checked_pressed.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_indeterminate.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_indeterminate_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_indeterminate_disabled.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_indeterminate_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_indeterminate_pressed.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_unchecked.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_unchecked_disabled.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_unchecked_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_checkbox_unchecked_pressed.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_close.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_checked.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_checked_disabled.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_checked_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_checked_pressed.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_unchecked.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_unchecked_disabled.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_unchecked_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_radiobutton_unchecked_pressed.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_restore.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_undock.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/darkstyle/icon_vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/darkstyle/icon_vline.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/frameless_window_dark.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/frameless_window_dark.pro -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/framelesswindow.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/framelesswindow.qrc -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/framelesswindow/framelesswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/framelesswindow/framelesswindow.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/framelesswindow/framelesswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/framelesswindow/framelesswindow.h -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/framelesswindow/framelesswindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/framelesswindow/framelesswindow.ui -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/framelesswindow/windowdragger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/framelesswindow/windowdragger.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/framelesswindow/windowdragger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/framelesswindow/windowdragger.h -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/images/icon_window_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/images/icon_window_close.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/images/icon_window_maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/images/icon_window_maximize.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/images/icon_window_minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/images/icon_window_minimize.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/images/icon_window_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/images/icon_window_restore.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/mainwindow.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/mainwindow.h -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/mainwindow.ui -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/screenshot_mac_frameless_window_qt_dark_style_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/screenshot_mac_frameless_window_qt_dark_style_disabled.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/screenshot_mac_frameless_window_qt_dark_style_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/screenshot_mac_frameless_window_qt_dark_style_enabled.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/darkstyle/screenshot_win7_frameless_window_qt_dark_style_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/darkstyle/screenshot_win7_frameless_window_qt_dark_style_enabled.png -------------------------------------------------------------------------------- /vmprofiler-qt/src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/icon.ico -------------------------------------------------------------------------------- /vmprofiler-qt/src/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/icon.rc -------------------------------------------------------------------------------- /vmprofiler-qt/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/main.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvm_handlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvm_handlers.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvm_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvm_handlers.h -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvm_inspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvm_inspector.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvm_inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvm_inspector.h -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvm_virtual_instructions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvm_virtual_instructions.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvm_virtual_instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvm_virtual_instructions.h -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvm_virtual_routines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvm_virtual_routines.cpp -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvm_virtual_routines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvm_virtual_routines.h -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvminspector.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvminspector.qrc -------------------------------------------------------------------------------- /vmprofiler-qt/src/qvminspector.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler-qt/src/qvminspector.ui -------------------------------------------------------------------------------- /vmprofiler/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Chromium 3 | 4 | ... 5 | 6 | -------------------------------------------------------------------------------- /vmprofiler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/.gitignore -------------------------------------------------------------------------------- /vmprofiler/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/.gitmodules -------------------------------------------------------------------------------- /vmprofiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/CMakeLists.txt -------------------------------------------------------------------------------- /vmprofiler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/LICENSE -------------------------------------------------------------------------------- /vmprofiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/README.md -------------------------------------------------------------------------------- /vmprofiler/cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/cmake.toml -------------------------------------------------------------------------------- /vmprofiler/cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/cmkr.cmake -------------------------------------------------------------------------------- /vmprofiler/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/doxygen/Doxyfile -------------------------------------------------------------------------------- /vmprofiler/doxygen/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/doxygen/icon.png -------------------------------------------------------------------------------- /vmprofiler/doxygen/manual/ADD_VMP2_INSTR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/doxygen/manual/ADD_VMP2_INSTR.md -------------------------------------------------------------------------------- /vmprofiler/doxygen/manual/ADD_VTIL_LIFTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/doxygen/manual/ADD_VTIL_LIFTER.md -------------------------------------------------------------------------------- /vmprofiler/include/calc_jmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/calc_jmp.hpp -------------------------------------------------------------------------------- /vmprofiler/include/scn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/scn.hpp -------------------------------------------------------------------------------- /vmprofiler/include/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/transform.hpp -------------------------------------------------------------------------------- /vmprofiler/include/vmctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/vmctx.hpp -------------------------------------------------------------------------------- /vmprofiler/include/vmhandlers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/vmhandlers.hpp -------------------------------------------------------------------------------- /vmprofiler/include/vminstrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/vminstrs.hpp -------------------------------------------------------------------------------- /vmprofiler/include/vmlocate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/vmlocate.hpp -------------------------------------------------------------------------------- /vmprofiler/include/vmp2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/vmp2.hpp -------------------------------------------------------------------------------- /vmprofiler/include/vmprofiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/vmprofiler.hpp -------------------------------------------------------------------------------- /vmprofiler/include/vmprofiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/vmprofiles.hpp -------------------------------------------------------------------------------- /vmprofiler/include/vmutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/include/vmutils.hpp -------------------------------------------------------------------------------- /vmprofiler/src/calc_jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/calc_jmp.cpp -------------------------------------------------------------------------------- /vmprofiler/src/scn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/scn.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmctx.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmhandler.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vminstrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vminstrs.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmlocate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmlocate.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/add.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/call.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/div.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/idiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/idiv.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/imul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/imul.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/jmp.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/lconst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/lconst.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/lflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/lflags.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/lreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/lreg.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/mul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/mul.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/nand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/nand.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/popvsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/popvsp.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/pushvsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/pushvsp.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/rdtsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/rdtsc.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/read.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/readcr3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/readcr3.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/readcr8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/readcr8.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/shl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/shl.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/shld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/shld.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/shr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/shr.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/shrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/shrd.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/sreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/sreg.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/vmexit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/vmexit.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/write.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmprofiles/writecr3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmprofiles/writecr3.cpp -------------------------------------------------------------------------------- /vmprofiler/src/vmutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backengineering/vmp2/HEAD/vmprofiler/src/vmutils.cpp --------------------------------------------------------------------------------