-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnalizadorInstruccion.cpp
50 lines (39 loc) · 1.12 KB
/
AnalizadorInstruccion.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include "AnalizadorInstruccion.h"
#include "Instruccion.h"
#include <list>
#include <sstream>
#define RET_OPCODE "ret"
#define VACIO ""
#define MAX_ARGS 3
static void obtenerEtiqueta(std::istringstream& linea,
const std::string& _linea,
std::string& etiqueta) {
if (_linea.find(':') != std::string::npos) {
std::getline(linea, etiqueta, ':');
}
}
static void obtenerArgumentos(std::istringstream& linea,
std::list<std::string>& argumentos) {
std::string aux;
for (std::size_t i = 0; i < MAX_ARGS && !linea.eof(); ++i) {
linea >> aux;
if (aux != VACIO) {
if (aux.back() == ',') {
aux.pop_back();
}
argumentos.push_back(aux);
}
}
}
Instruccion AnalizadorInstruccion::identificar(const std::string& _linea) {
std::istringstream linea(_linea);
std::string etiqueta, opcode;
std::list<std::string> argumentos;
obtenerEtiqueta(linea, _linea, etiqueta);
linea >> opcode;
obtenerArgumentos(linea, argumentos);
Instruccion instruccion(etiqueta, opcode, argumentos);
return instruccion;
}
AnalizadorInstruccion::AnalizadorInstruccion() {}
AnalizadorInstruccion::~AnalizadorInstruccion() {}