From cfb244c93ce0b6548f2d5262625bc823c3f409d4 Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Thu, 19 Aug 2021 19:56:07 -0700 Subject: [PATCH] updated vmprofiler dep... --- dependencies/vmprofiler | 2 +- src/main.cpp | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/dependencies/vmprofiler b/dependencies/vmprofiler index 9b5f89f..90106b0 160000 --- a/dependencies/vmprofiler +++ b/dependencies/vmprofiler @@ -1 +1 @@ -Subproject commit 9b5f89f4881862598181163069c69f584257d3f0 +Subproject commit 90106b0f5e748f1e67e108800ee0463bae5755e3 diff --git a/src/main.cpp b/src/main.cpp index 5be0c74..d7a4a7e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -66,9 +66,6 @@ int main( int argc, const char *argv[] ) vm_enter_offset + file_header->image_base ); return -1; } - - std::printf( "> lifted rtn_0x%p, number of blocks = %d\n", vm_enter_offset + file_header->image_base, - vmp2_code_blocks.size() ); } llvm::LLVMInitializeX86TargetInfo(); @@ -78,8 +75,6 @@ int main( int argc, const char *argv[] ) llvm::LLVMInitializeX86AsmPrinter(); vmp_devirt.compile( compiled_obj ); - std::printf( "> compiled all routines... compiled obj size = %d\n", compiled_obj.size() ); - if ( parser.exists( "genobj" ) ) std::ofstream( parser.get< std::string >( "out" ).append( ".o" ), std::ios::binary ) .write( reinterpret_cast< const char * >( compiled_obj.data() ), compiled_obj.size() );