Reading the gcc manual, I see the -ftree-*** optimization options family. What is the purpose of these options? What are these "trees"?
-ftree-***
They are optimizer packages that work with trees (SSA) inside the compiler, and not at the RTL level (translation language).
For what it is, see the GCC internal docs documentation: http://gcc.gnu.org/onlinedocs/gccint/
For an introduction about SSA, see http://en.wikipedia.org/wiki/Static_single_assignment_form
Source: https://habr.com/ru/post/909686/More articles:The fastest way to sort each row of a large matrix in R is sortingDrag and Drop VS 2010 Extension Warning File? - visual-studioCan I get a stack trace for Objective C ++ exceptions? - c ++Is it possible to execute a raw query in an Android meta sqlite Android database? - javaCopy constructor with default parameters is never called - c ++What can I expect from a compiler to be able to embed it? - c ++Does NotifyIcon have the equivalent of MouseDown? - c #M2e not visible in Eclipse - eclipseAptana Studio 3 What is a workspace - aptanaHow to get methods in a type - c #All Articles