mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
Default for maximum number of instructions
This commit is contained in:
parent
d9bd93c36b
commit
a8dcc7266b
8 changed files with 34 additions and 11 deletions
|
@ -16,6 +16,7 @@
|
|||
// Set up decompiler for specific architectures
|
||||
|
||||
#include "coreaction.hh"
|
||||
#include "flow.hh"
|
||||
#ifdef CPUI_RULECOMPILE
|
||||
#include "rulecompile.hh"
|
||||
#endif
|
||||
|
@ -1253,7 +1254,8 @@ void Architecture::resetDefaultsInternal(void)
|
|||
max_implied_ref = 2; // 2 is best, in specific cases a higher number might be good
|
||||
max_term_duplication = 2; // 2 and 3 (4) are reasonable
|
||||
max_basetype_size = 10; // Needs to be 8 or bigger
|
||||
flowoptions = 0;
|
||||
flowoptions = FlowInfo::error_toomanyinstructions;
|
||||
max_instructions = 100000;
|
||||
infer_pointers = true;
|
||||
readonlypropagate = false;
|
||||
alias_block_level = 2; // Block structs and arrays by default
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue