Is it possible at this point to analyze a kotlin p...
# compiler
f
Is it possible at this point to analyze a kotlin project using the new compiler frontend?
d
Yes it is. Moreover, currently we can even compile all modules from Kotlin project (except stdlib) using FIR + JVM IR and run some tests using produced binaries (and a lot of them are successfully passing)
z
how is the performance compared to PSI?
d
FIR is faster than FE 1.0 in ~4 times Total compilation pipeline (including convertation from FIR to backend IR and backend itself) faster then FE 1.0 + old backend in ~2 times
🔥 6
We plan to optimize FIR and FIR2IR parts in the nearest future, and backend team will work on JVM IR performance after JVM IR will be released in 1.5
🎉 3
👏 2