mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Decompiler for-loops
This commit is contained in:
parent
1539318b59
commit
b2bc1eb019
25 changed files with 726 additions and 68 deletions
|
@ -96,6 +96,12 @@ public:
|
|||
virtual string apply(Architecture *glb,const string &p1,const string &p2,const string &p3) const;
|
||||
};
|
||||
|
||||
class OptionForLoops : public ArchOption {
|
||||
public:
|
||||
OptionForLoops(void) { name = "analyzeforloops"; } ///< Constructor
|
||||
virtual string apply(Architecture *glb,const string &p1,const string &p2,const string &p3) const;
|
||||
};
|
||||
|
||||
class OptionInline : public ArchOption {
|
||||
public:
|
||||
OptionInline(void) { name = "inline"; } ///< Constructor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue