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
  • 87 views
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <ctype.h>
  5.  
  6.  
  7. char * registru(char *s)
  8. {
  9.     if(strcmp(s, "a") == 0)
  10.         return "eax";
  11.     else if(strcmp(s, "b") == 0)
  12.         return "ebx";
  13.     else if(strcmp(s, "c") == 0)
  14.         return "ecx";
  15.     else if(strcmp(s, "d") == 0)
  16.         return "edx";
  17.     else
  18.         return s;
  19. }
  20.  
  21. void tradu_atrib(char *linie)
  22. {
  23.     char pt_st[10], pt_dr[10];
  24.     sscanf(linie, "%s = %[^;]", pt_st, pt_dr);
  25.     // printf("%s = %s\n", pt_st, pt_dr)
  26.         printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr));
  27.         return;
  28. }
  29.  
  30. void mul_div(char *oper, char *pt_st, char *pt_dr1, char *pt_dr2)
  31. {
  32.     char temp[5];
  33.     if (strcmp(oper, "*") == 0)
  34.     {
  35.         strcpy(temp, "MUL");
  36.     }
  37.     else if(strcmp(oper, "/") == 0 && strcmp(pt_dr2, "0") != 0)
  38.     {
  39.         strcpy(temp, "DIV");
  40.     }
  41.     else if(strcmp(oper, "/") == 0 && strcmp(pt_dr2, "0") == 0)
  42.     {
  43.         printf("Error\n");
  44.         return;
  45.     }
  46.         if(strcmp(pt_dr1, pt_st) == 0 && strcmp(pt_st, "a") != 0)
  47.         {
  48.             printf("MOV eax, %s\n", registru(pt_dr1));
  49.             printf("%s %s\n", temp , registru(pt_dr2));
  50.             printf("MOV %s, eax\n", registru(pt_st));
  51.         }
  52.         else if(strcmp(pt_dr1, pt_st) == 0 && strcmp(pt_st, "a") == 0)
  53.         {
  54.             printf("%s %s\n", temp, registru(pt_dr2));
  55.         }
  56.         else
  57.         {
  58.             printf("MOV eax, %s\n", registru(pt_dr1));
  59.             printf("%s %s\n",temp , registru(pt_dr2));
  60.             printf("MOV %s, eax\n", registru(pt_st));
  61.         }
  62. }
  63. void tradu_operatii(char *linie)
  64. {
  65.     char oper[10], pt_st[10], pt_dr1[10], pt_dr2[10];
  66.     sscanf(linie, "%s = %s %s %[^;]", pt_st, pt_dr1, oper, pt_dr2);
  67.     // printf("%s %s, %s, %s\n", oper, registru(pt_st), registru(pt_dr1), registru(pt_dr2));
  68.     if(strcmp(oper, "+") == 0)
  69.     {
  70.         printf("ADD %s, %s\n", registru(pt_dr1), registru(pt_dr2));
  71.         if(strcmp(pt_dr1, pt_st) != 0)
  72.             printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
  73.     }
  74.     else if(strcmp(oper, "-") == 0)
  75.     {
  76.         printf("SUB %s, %s\n", registru(pt_dr1), registru(pt_dr2));
  77.         if(strcmp(pt_dr1, pt_st) != 0)
  78.             printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
  79.     }
  80.     else if(strcmp(oper, "*") == 0)
  81.     {
  82.         mul_div(oper, pt_st, pt_dr1, pt_dr2);
  83.     }
  84.     else if(strcmp(oper, "/") == 0)
  85.     {
  86.         mul_div(oper, pt_st, pt_dr1, pt_dr2);
  87.     }
  88.     else if(strcmp(oper, "&") == 0)
  89.     {
  90.         printf("AND %s, %s\n", registru(pt_dr1), registru(pt_dr2));
  91.         if(strcmp(pt_dr1, pt_st) != 0)
  92.             printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
  93.     }
  94.     else if(strcmp(oper, "|") == 0)
  95.     {
  96.         printf("OR %s, %s\n", registru(pt_dr1), registru(pt_dr2));
  97.         if(strcmp(pt_dr1, pt_st) != 0)
  98.             printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
  99.     }
  100.     else if(strcmp(oper, "^") == 0)
  101.     {
  102.         printf("XOR %s, %s\n", registru(pt_dr1), registru(pt_dr2));
  103.         if(strcmp(pt_dr1, pt_st) != 0)
  104.             printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
  105.     }
  106.     else if(strcmp(oper, "<<") == 0)
  107.     {
  108.         printf("SHL %s, %s\n", registru(pt_dr1), registru(pt_dr2));
  109.         if(strcmp(pt_dr1, pt_st) != 0)
  110.             printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
  111.     }
  112.     else if(strcmp(oper, ">>") == 0)
  113.     {
  114.         printf("SHR %s, %s\n", registru(pt_dr1), registru(pt_dr2));
  115.         if(strcmp(pt_dr1, pt_st) != 0)
  116.             printf("MOV %s, %s\n", registru(pt_st), registru(pt_dr1));
  117.     }
  118.    
  119. }
  120.  
  121. char * conditie(char *oper)
  122. {
  123.     if(strcmp(oper, "==") == 0)
  124.         return "JNE";
  125.     else if(strcmp(oper, "!=") == 0)
  126.         return "JE";
  127.     else if(strcmp(oper, "<") == 0)
  128.         return "JGE";
  129.     else if(strcmp(oper, "<=") == 0)
  130.         return "JG";
  131.     else if(strcmp(oper, ">") == 0)
  132.         return "JLE";
  133.     else if(strcmp(oper, ">=") == 0)
  134.         return "JL";
  135.     else
  136.         return NULL;
  137. }
  138. void tradu_if(char *argument, char lines[][100], int num_lines)
  139. {
  140.     int i;
  141.     char linie[100];
  142.     char oper[10], pt_st[10], pt_dr[10];
  143.     sscanf(argument, "if (%s %s %[^)]) {", pt_st, oper, pt_dr);
  144.  
  145.     printf("CMP %s, %s\n", registru(pt_st), registru(pt_dr));
  146.     printf("%s end_label\n", conditie(oper));
  147.  
  148.     for (i = 1; i < num_lines; i++)
  149.     {
  150.         strcpy(linie, lines[i]);
  151.         if (strcmp(linie, "}") == 0)
  152.             break;
  153.  
  154.         if (strlen(lines[i]) <= 8)
  155.             tradu_atrib(lines[i]);
  156.         else
  157.             tradu_operatii(linie);
  158.     }
  159.  
  160.     printf("end_label:\n");
  161. }
  162.  
  163. void tradu_while(char *argument, char lines[][100], int num_lines)
  164. {
  165.     int i;
  166.     char linie[100];
  167.     char oper[10], pt_st[10], pt_dr[10];
  168.     sscanf(argument, "while (%s %s %[^)]) {", pt_st, oper, pt_dr);
  169.  
  170.     printf("start_loop:\n");
  171.     printf("CMP %s, %s\n", registru(pt_st), registru(pt_dr));
  172.     printf("%s end_label\n", conditie(oper));
  173.  
  174.     for (i = 1; i < num_lines; i++)
  175.     {
  176.         strcpy(linie, lines[i]);
  177.         if (strcmp(linie, "}") == 0)
  178.             break;
  179.        
  180.         if (strlen(lines[i]) <= 8)
  181.             tradu_atrib(lines[i]);
  182.         else
  183.             tradu_operatii(lines[i]);
  184.     }
  185.  
  186.     printf("JMP start_loop\n");
  187.     printf("end_label:\n");
  188. }
  189.  
  190. void tradu_for(char *argument, char lines[][100], int num_lines)
  191. {
  192.     int i;
  193.     char init[100], cond[100], inc[100];
  194.     char oper[10], pt_st[10], pt_dr[10];
  195.     sscanf(argument, "for (%[^;]; %[^;]; %[^)]) {", init, cond, inc);
  196.     tradu_atrib(init);
  197.     printf("start_loop:\n");
  198.  
  199.     sscanf(cond, "%s %s %s", pt_st, oper, pt_dr);
  200.     printf("CMP %s, %s\n", registru(pt_st), registru(pt_dr));
  201.     printf("%s end_label\n", conditie(oper));
  202.  
  203.     for (i = 1; i < num_lines; i++)
  204.     {
  205.        
  206.         if (strcmp(lines[i], "}") == 0)
  207.             break;
  208.        
  209.         if (strlen(lines[i]) <= 8)
  210.             tradu_atrib(lines[i]);
  211.         else
  212.             tradu_operatii(lines[i]);
  213.     }
  214.  
  215.     char pas[10];
  216.     sscanf(inc, "%*s = %*s + %s", pas);
  217.     printf("ADD %s, %s\n", registru(pt_st), pas);
  218.     printf("JMP start_loop\n");
  219.     printf("end_loop:\n");
  220. }
  221. int main()
  222. {
  223.     char linie[100];
  224.     char lines[100][100];
  225.     int num_lines = 0;
  226.  
  227.     while (fgets(linie, sizeof(linie), stdin))
  228.     {
  229.         linie[strcspn(linie, "\n")] = 0;
  230.  
  231.         if (strstr(linie, "for") || strstr(linie, "while") || strstr(linie, "if"))
  232.         {
  233.             strcpy(lines[num_lines], linie);
  234.             num_lines++;
  235.  
  236.             while (fgets(linie, sizeof(linie), stdin))
  237.             {
  238.                 linie[strcspn(linie, "\n")] = 0;
  239.                 strcpy(lines[num_lines], linie);
  240.                 num_lines++;
  241.  
  242.                 if (strchr(linie, '}') && strstr(lines[0], "for"))
  243.                 {
  244.                     tradu_for(lines[0], lines, num_lines - 1);
  245.                     num_lines = 0;
  246.                     break;
  247.                 }
  248.                 else if (strchr(linie, '}') && strstr(lines[0], "while"))
  249.                 {
  250.                     tradu_while(lines[0], lines, num_lines - 1);
  251.                     num_lines = 0;
  252.                     break;
  253.                 }
  254.                 else if (strchr(linie, '}') && strstr(lines[0], "if"))
  255.                 {
  256.                     tradu_if(lines[0], lines, num_lines - 1);
  257.                     num_lines = 0;
  258.                     break;
  259.                 }
  260.             }
  261.         }
  262.         else if (strlen(linie) <= 8)
  263.         {
  264.             tradu_atrib(linie);
  265.         }
  266.         else
  267.         {
  268.             tradu_operatii(linie);
  269.         }
  270.     }
  271.  
  272.     return 0;
  273. }

Raw Paste
Recent Pastes
NEW UPDATED 04.04.25 ÇP FOLDERS
  • 1 hour
  • 27 mins
  • 41

Ñéw folder 04-04
  • 2 hours
  • 27 mins
  • 49

DOODSTRIME PRIMIUM
  • 2 hours
  • 31 mins
  • 42

Face stripping PRIMIUM
  • 2 hours
  • 36 mins
  • 38

NEW UPDATED 04.04.25 ÇP FOLDERS
  • 4 hours
  • 16 mins
  • 56

About Us - Terms of Use