https://github.com/waadmawlood/compiler-loop-jamming-simple
compiler design loop optimizer loop jamming code motion left recursion
https://github.com/waadmawlood/compiler-loop-jamming-simple
Last synced: 7 months ago
JSON representation
compiler design loop optimizer loop jamming code motion left recursion
- Host: GitHub
- URL: https://github.com/waadmawlood/compiler-loop-jamming-simple
- Owner: waadmawlood
- Created: 2022-04-19T01:24:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-19T01:30:18.000Z (over 3 years ago)
- Last Synced: 2025-01-19T04:12:43.716Z (9 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compiler Design | Loop Optimazer
## Loop JammingPython Language
use simple source code in file to get target file
## Example
source ........
```c
int a = 0, b = 0, c = 0;for(int i=0; i < 5; i++)
a = i + 5;for(int i=0; i < 10; i++)
c = i + 5;for(int i=0; i < 5; i++)
b = i + 10;