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

Implement macros defined in <stdbool.h> #124

Merged
merged 3 commits into from
Mar 27, 2024
Merged

Conversation

ChAoSUnItY
Copy link
Collaborator

Macro 'bool', 'true', 'false' are defined in c.c. In addition, this
commit also tweaks 'define' preprocessor directive so that parsing
identifier after 'define' is possible.
@jserv jserv requested a review from vacantron March 26, 2024 04:00
@jserv
Copy link
Collaborator

jserv commented Mar 26, 2024

Can the proposed change deal with sizeof(_Bool)?

@ChAoSUnItY
Copy link
Collaborator Author

Can the proposed change deal with sizeof(_Bool)?

Now I supported _Bool type as builtin type, however, this would cause further issue in lexer.c since macro #define bool _Bool has rhs token with token type T_identifier but previous algorithm only recognize T_numeric and T_string, I would like to resolve this issue in another PR.

@jserv jserv changed the title Implement stdbool.h macros Implement macros defined in <stdbool.h> Mar 26, 2024
The size of type _Bool is same as char type, which takes 1 byte.

Notice that currently lexer aliasing is unreliable due to the token
type determination algorithm does not correctly recognize T_identifier
and T_string at this moment.
@jserv jserv merged commit 5979cb8 into sysprog21:master Mar 27, 2024
4 checks passed
@jserv
Copy link
Collaborator

jserv commented Mar 27, 2024

Thank @ChAoSUnItY for contributing!

@ChAoSUnItY ChAoSUnItY mentioned this pull request Apr 1, 2024
ChAoSUnItY added a commit to ChAoSUnItY/shecc that referenced this pull request Apr 2, 2024
Reverts all utilization of "_Bool" type in previous PR sysprog21#124, which
cuases unexpected stage 2 compilation failure described in Issue

Additionally, fixed a minor aliasing token determination issue.
This is resolved by hardcoded string comparison, which is only
applicable for "_Bool" identifier token in this case.
ChAoSUnItY added a commit to ChAoSUnItY/shecc that referenced this pull request Apr 2, 2024
Reverts all utilization of "_Bool" type in previous PR sysprog21#124, which
cuases unexpected stage 2 compilation failure described in Issue

Additionally, fixed a minor aliasing token determination issue.
This is resolved by hardcoded string comparison, which is only
applicable for "_Bool" identifier token in this case.
ChAoSUnItY added a commit to ChAoSUnItY/shecc that referenced this pull request Apr 2, 2024
Reverts all utilization of "_Bool" type in previous PR sysprog21#124, which
cuases unexpected stage 2 compilation failure described in sysprog21#125.

Additionally, fixed a minor aliasing token determination issue.
This is resolved by hardcoded string comparison, which is only
applicable for "_Bool" identifier token in this case.
jserv pushed a commit that referenced this pull request Apr 2, 2024
Reverts all utilization of "_Bool" type in previous PR #124, which
causes unexpected stage 2 compilation failure.

Additionally, fixed a minor aliasing token determination issue.
This is resolved by hardcoded string comparison, which is only
applicable for "_Bool" identifier token in this case.

Close #125
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support macros defined in <stdbool.h>
2 participants