Skip to content

Byzero512/hexraysIDAplus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pre

  1. test with hexrays 7.5, should support hexrays>=7.2

  2. do not run with hexrays 7.0, IDA will crash

usage

  1. flod code by {} block/case block: press key 'w'

  1. simplify c++ decompiled code: TODO
  2. hexrays diff: TODO

c++

  1. operator
v1 = operator<<(&std::cout, p + 8);
v2 = &std::endl;
v3 = operator<<(v1, v2);
=> 
v1 = {&std::cout << (p + 8)};
v2 = &std::endl;
v3 = {v1 << v2};
==> v3 = {&std::cout << (p + 8) << &std::endl};
  1. template