What is an analytical decompiler?
Asked Answered
N

1

14

IntelliJ incorporates Fernflower, a Java decompiler made by JetBrains.

On its GitHub page you can read the following:

Fernflower is the first actually working analytical decompiler for Java and probably for a high-level programming language in general.

What does this mean? What is an analytical decompiler? How does it differ from other types of decompilers?

Neolithic answered 10/6, 2020 at 8:19 Comment(0)
H
4

An analytical decompiler is one that analyzes compiled output and then figures out what source code would best match it, rather than trying to be the exact inverse of a traditional compiler. Sometimes this is necessary in case of optimizing compilers or obfuscated bytecode.

Helper answered 21/5, 2021 at 19:25 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.