-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create standard abbreviation table * update dependencies * new fix irreducible framework * fix fold_if_else * nested loop with same header * done generate_function * pass all tests * fix several bugs * memory operation * fix loop * come command can generate wasm now
- Loading branch information
1 parent
f069b0e
commit 967de0a
Showing
32 changed files
with
3,670 additions
and
1,841 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,3 +104,5 @@ Cargo.lock | |
!integration-test/cases/*/expected/*.asm | ||
*.clef | ||
doc/public | ||
lcov.info | ||
*.wasm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
+++ | ||
title = "Rules" | ||
description = "The rules for developing Come." | ||
date = 2023-07-16T04:19:34.823Z | ||
updated = 2023-07-16T04:19:34.823Z | ||
sort_by = "weight" | ||
weight = 1 | ||
template = "docs/section.html" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
+++ | ||
title = "Naming" | ||
description = "Naming rules for Come." | ||
date = 2023-07-16T04:21:20.130Z | ||
updated = 2023-07-16T04:21:20.130Z | ||
template = "docs/section.html" | ||
sort_by = "weight" | ||
weight = 1 | ||
draft = false | ||
+++ | ||
|
||
Except for the rules mentioned on [rust naming guides](https://rust-lang.github.io/api-guidelines/naming.html), | ||
there are some additional rules for Come. | ||
|
||
## Don't use undocumented abbreviations | ||
|
||
We don't use abbreviations unless they are documented in the glossary. | ||
|
||
Here is the glossary: | ||
|
||
| Abbreviation | Origin | In Module | | ||
|--------------|--------|-----------| | ||
| ast | Abstract Syntax Tree | (All) | | ||
| asm | ASseMbly language | (All) | | ||
| ir | Intermediate Representation | (All) | | ||
| bb | Basic Block | `come::ir` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.