Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce operations tree as a new optree module #110

Merged
merged 10 commits into from
Apr 6, 2024
Merged

Conversation

vla5924
Copy link
Member

@vla5924 vla5924 commented Mar 30, 2024

An operations tree (optree) will be used as an alternative backend representation for a program instead of a syntax tree (ast). The latter is relatively easy to build (since it is bijective with a program source code), but hard to analyze. An optree, conversely, is intended to be walked through and used for a program analysis, but it is also can be built easily from a syntax tree.

Each node of an optree represents an abstract operation that comes from a language domain. Operation may have multiple operands (input values), results (output values), and nested operations of any kind inside its body. Value, along with a parent operation, holds its data type and a list of uses (to memoize which operations has the given value as an operand).

It is important to notice that values are simple SSA registers, which means that being defined once, it cannot be redefined, and this fact makes it easy to track definition-use chain per each value. This concept is widely used in such frameworks like LLVM IR, MLIR.

@vla5924

This comment was marked as resolved.

github-advanced-security[bot]

This comment was marked as resolved.

@vla5924 vla5924 marked this pull request as ready for review April 1, 2024 17:38
@MaksimShagov
Copy link
Collaborator

Я бы хотел послушать более подробные объяснения вживую.

@arteboss
Copy link
Collaborator

arteboss commented Apr 2, 2024

Честно я ваще ничего не понимаю в ваших с++, макросы, шаблоны, понять ниче не могу

@arteboss
Copy link
Collaborator

arteboss commented Apr 2, 2024

Нужен ликбез

@vla5924
Copy link
Member Author

vla5924 commented Apr 3, 2024

Нужен ликбез

ликбез проведен

@arteboss
Copy link
Collaborator

arteboss commented Apr 3, 2024

Нужен ликбез

ликбез проведен

Да. Было.

Copy link
Collaborator

@arteboss arteboss left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Я вроде суть пон(код не пон)

@vla5924 vla5924 enabled auto-merge (squash) April 6, 2024 17:53
@vla5924 vla5924 merged commit c140a1f into main Apr 6, 2024
8 checks passed
@vla5924 vla5924 deleted the mv/optree-intf branch April 6, 2024 17:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

3 participants