- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <ctype.h>
- char * registru(char *s)
- {
- if(strcmp(s, "a") == 0)
- return "eax";
- else if(strcmp(s, "b") == 0)
- return "ebx";
- else if(strcmp(s, "c") == 0)
- return "ecx";
- else if(strcmp(s, "d") == 0)
- return "edx";
- else
- return s;
- }
- void tradu_atrib(char *linie)
- {
- char pt_st[10], pt_dr[10];
- sscanf(linie, "%s = %[^;]", pt_st, pt_dr);
- // printf("%s = %s\n", pt_st, pt_dr)
- printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr));
- return;
- }
- void mul_div(char *oper, char *pt_st, char *pt_dr1, char *pt_dr2)
- {
- char temp[5];
- if (strcmp(oper, "*") == 0)
- {
- strcpy(temp, "MUL");
- }
- else if(strcmp(oper, "/") == 0 && strcmp(pt_dr2, "0") != 0)
- {
- strcpy(temp, "DIV");
- }
- else if(strcmp(oper, "/") == 0 && strcmp(pt_dr2, "0") == 0)
- {
- printf("Error\n");
- return;
- }
- if(strcmp(pt_dr1, pt_st) == 0 && strcmp(pt_st, "a") != 0)
- {
- printf("MOV eax, %s\n", registru(pt_dr1));
- printf("%s %s\n", temp , registru(pt_dr2));
- printf("MOV %s, eax\n", registru(pt_st));
- }
- else if(strcmp(pt_dr1, pt_st) == 0 && strcmp(pt_st, "a") == 0)
- {
- printf("%s %s\n", temp, registru(pt_dr2));
- }
- else
- {
- printf("MOV eax, %s\n", registru(pt_dr1));
- printf("%s %s\n",temp , registru(pt_dr2));
- printf("MOV %s, eax\n", registru(pt_st));
- }
- }
- void tradu_operatii(char *linie)
- {
- char oper[10], pt_st[10], pt_dr1[10], pt_dr2[10];
- sscanf(linie, "%s = %s %s %[^;]", pt_st, pt_dr1, oper, pt_dr2);
- // printf("%s %s, %s, %s\n", oper, registru(pt_st), registru(pt_dr1), registru(pt_dr2));
- if(strcmp(oper, "+") == 0)
- {
- printf("ADD %s, %s\n", registru(pt_dr1), registru(pt_dr2));
- if(strcmp(pt_dr1, pt_st) != 0)
- printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
- }
- else if(strcmp(oper, "-") == 0)
- {
- printf("SUB %s, %s\n", registru(pt_dr1), registru(pt_dr2));
- if(strcmp(pt_dr1, pt_st) != 0)
- printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
- }
- else if(strcmp(oper, "*") == 0)
- {
- mul_div(oper, pt_st, pt_dr1, pt_dr2);
- }
- else if(strcmp(oper, "/") == 0)
- {
- mul_div(oper, pt_st, pt_dr1, pt_dr2);
- }
- else if(strcmp(oper, "&") == 0)
- {
- printf("AND %s, %s\n", registru(pt_dr1), registru(pt_dr2));
- if(strcmp(pt_dr1, pt_st) != 0)
- printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
- }
- else if(strcmp(oper, "|") == 0)
- {
- printf("OR %s, %s\n", registru(pt_dr1), registru(pt_dr2));
- if(strcmp(pt_dr1, pt_st) != 0)
- printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
- }
- else if(strcmp(oper, "^") == 0)
- {
- printf("XOR %s, %s\n", registru(pt_dr1), registru(pt_dr2));
- if(strcmp(pt_dr1, pt_st) != 0)
- printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
- }
- else if(strcmp(oper, "<<") == 0)
- {
- printf("SHL %s, %s\n", registru(pt_dr1), registru(pt_dr2));
- if(strcmp(pt_dr1, pt_st) != 0)
- printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
- }
- else if(strcmp(oper, ">>") == 0)
- {
- printf("SHR %s, %s\n", registru(pt_dr1), registru(pt_dr2));
- if(strcmp(pt_dr1, pt_st) != 0)
- printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
- }
- }
- char * conditie(char *oper)
- {
- if(strcmp(oper, "==") == 0)
- return "JNE";
- else if(strcmp(oper, "!=") == 0)
- return "JE";
- else if(strcmp(oper, "<") == 0)
- return "JGE";
- else if(strcmp(oper, "<=") == 0)
- return "JG";
- else if(strcmp(oper, ">") == 0)
- return "JLE";
- else if(strcmp(oper, ">=") == 0)
- return "JL";
- else
- return NULL;
- }
- void tradu_if(char *argument, char lines[][100], int num_lines)
- {
- int i;
- char linie[100];
- char oper[10], pt_st[10], pt_dr[10];
- sscanf(argument, "if (%s %s %[^)]) {", pt_st, oper, pt_dr);
- printf("CMP %s, %s\n", registru(pt_st), registru(pt_dr));
- printf("%s end_label\n", conditie(oper));
- for (i = 1; i < num_lines; i++)
- {
- strcpy(linie, lines[i]);
- if (strcmp(linie, "}") == 0)
- break;
- if (strlen(lines[i]) <= 8)
- tradu_atrib(lines[i]);
- else
- tradu_operatii(linie);
- }
- printf("end_label:\n");
- }
- void tradu_while(char *argument, char lines[][100], int num_lines)
- {
- int i;
- char linie[100];
- char oper[10], pt_st[10], pt_dr[10];
- sscanf(argument, "while (%s %s %[^)]) {", pt_st, oper, pt_dr);
- printf("start_loop:\n");
- printf("CMP %s, %s\n", registru(pt_st), registru(pt_dr));
- printf("%s end_label\n", conditie(oper));
- for (i = 1; i < num_lines; i++)
- {
- strcpy(linie, lines[i]);
- if (strcmp(linie, "}") == 0)
- break;
- if (strlen(lines[i]) <= 8)
- tradu_atrib(lines[i]);
- else
- tradu_operatii(lines[i]);
- }
- printf("JMP start_loop\n");
- printf("end_label:\n");
- }
- void tradu_for(char *argument, char lines[][100], int num_lines)
- {
- int i;
- char init[100], cond[100], inc[100];
- char oper[10], pt_st[10], pt_dr[10];
- sscanf(argument, "for (%[^;]; %[^;]; %[^)]) {", init, cond, inc);
- tradu_atrib(init);
- printf("start_loop:\n");
- sscanf(cond, "%s %s %s", pt_st, oper, pt_dr);
- printf("CMP %s, %s\n", registru(pt_st), registru(pt_dr));
- printf("%s end_label\n", conditie(oper));
- for (i = 1; i < num_lines; i++)
- {
- if (strcmp(lines[i], "}") == 0)
- break;
- if (strlen(lines[i]) <= 8)
- tradu_atrib(lines[i]);
- else
- tradu_operatii(lines[i]);
- }
- char pas[10];
- sscanf(inc, "%*s = %*s + %s", pas);
- printf("ADD %s, %s\n", registru(pt_st), pas);
- printf("JMP start_loop\n");
- printf("end_loop:\n");
- }
- int main()
- {
- char linie[100];
- char lines[100][100];
- int num_lines = 0;
- while (fgets(linie, sizeof(linie), stdin))
- {
- linie[strcspn(linie, "\n")] = 0;
- if (strstr(linie, "for") || strstr(linie, "while") || strstr(linie, "if"))
- {
- strcpy(lines[num_lines], linie);
- num_lines++;
- while (fgets(linie, sizeof(linie), stdin))
- {
- linie[strcspn(linie, "\n")] = 0;
- strcpy(lines[num_lines], linie);
- num_lines++;
- if (strchr(linie, '}') && strstr(lines[0], "for"))
- {
- tradu_for(lines[0], lines, num_lines - 1);
- num_lines = 0;
- break;
- }
- else if (strchr(linie, '}') && strstr(lines[0], "while"))
- {
- tradu_while(lines[0], lines, num_lines - 1);
- num_lines = 0;
- break;
- }
- else if (strchr(linie, '}') && strstr(lines[0], "if"))
- {
- tradu_if(lines[0], lines, num_lines - 1);
- num_lines = 0;
- break;
- }
- }
- }
- else if (strlen(linie) <= 8)
- {
- tradu_atrib(linie);
- }
- else
- {
- tradu_operatii(linie);
- }
- }
- return 0;
- }
The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Danet - Guest
3rd April 2025 05:39:39 AM
TEXT
62 views
Raw Paste