Merge branch 'InterpreteurRegistres_Non_Securise'

This commit is contained in:
Paul Faure 2021-06-24 14:53:55 +02:00
commit 36996ae17f

View file

@ -4,7 +4,6 @@
#define TAILLE_BUFFER_INSTRUCTIONS (1024) #define TAILLE_BUFFER_INSTRUCTIONS (1024)
#define TAILLE_MEMOIRE (32) #define TAILLE_MEMOIRE (32)
#define TAILLE_PILE_APPELS (16)
#define TAILLE_BANC_REGISTRES (16) #define TAILLE_BANC_REGISTRES (16)
@ -37,12 +36,6 @@ int mem[TAILLE_MEMOIRE];
// Pointeur de base dans la mémoire // Pointeur de base dans la mémoire
int ebp = 0; int ebp = 0;
// Memoire du programme
int pile[TAILLE_PILE_APPELS];
// Pointeur de sommet dans la pile d'appel
int esp = 0;
// Flag Z // Flag Z
int Z = 0; int Z = 0;
@ -84,15 +77,6 @@ int check_registre(int registre) {
return registre; return registre;
} }
// Verifie que les limites de la mémoire d'appels ne sont pas franchies
int check_adresse_pile(int adresse) {
if (adresse >= TAILLE_PILE_APPELS || adresse < 0) {
printf("\033[31;01m ERROR : \033[00m Stack error\n");
exit(2);
}
return adresse;
}
// Verifie que eip ne depasse pas la taille du buffer // Verifie que eip ne depasse pas la taille du buffer
int check_eip(int eip) { int check_eip(int eip) {
if (eip >= TAILLE_BUFFER_INSTRUCTIONS) { if (eip >= TAILLE_BUFFER_INSTRUCTIONS) {
@ -224,18 +208,16 @@ void execute() {
printf("%d@%d\n", registres[check_registre(programme[eip].param1)], programme[eip].param1); printf("%d@%d\n", registres[check_registre(programme[eip].param1)], programme[eip].param1);
} else if (programme[eip].instruction == CALL) { } else if (programme[eip].instruction == CALL) {
pile[check_adresse_pile(esp)] = ebp; mem[check_adresse(ebp + programme[eip].param2)] = ebp;
esp++; mem[check_adresse(ebp + programme[eip].param2 + 1)] = eip + 1;
pile[check_adresse_pile(esp)] = eip + 1; ebp = ebp + programme[eip].param2 + 2;
esp++; eip = programme[eip].param1 - 1;
ebp = ebp + programme[eip].param2;
eip = programme[eip].param1 - 1;
} else if (programme[eip].instruction == RET) { } else if (programme[eip].instruction == RET) {
esp--; int lastebp = ebp;
eip = pile[check_adresse_pile(esp)] - 1; eip = mem[check_adresse(ebp - 1)] - 1;
esp--; ebp = mem[check_adresse(ebp - 2)];
ebp = pile[check_adresse_pile(esp)]; mem[check_adresse(lastebp - 2)] = mem[check_adresse(lastebp)];
} else if (programme[eip].instruction == STOP) { } else if (programme[eip].instruction == STOP) {
if (programme[eip].param1 == 0) { if (programme[eip].param1 == 0) {