An open API service indexing awesome lists of open source software.

https://github.com/andreadistefano/3addresscode

Flex/Bison files for generating three-address code for simple expressions.
https://github.com/andreadistefano/3addresscode

bison bison-files flex

Last synced: about 1 year ago
JSON representation

Flex/Bison files for generating three-address code for simple expressions.

Awesome Lists containing this project

README

          

# 3addresscode

Flex/Bison files for generating three-address code for simple expressions.
It supports:

- assignment: :=
- arithmetic operators: +, -, *, /, ^ (exponentiation), unary -
- boolean operators: AND (&&), OR (||), NOT (!)
- relational operators: ==, !=, >, >=, <, <=
- type system: integer, real, boolean types with coercion
- evaluation