You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef COMPILER_GENERATOR_H_INCLUDED
|
|
|
|
#define COMPILER_GENERATOR_H_INCLUDED
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <components/interpreter/types.hpp>
|
|
|
|
|
|
|
|
namespace Compiler
|
|
|
|
{
|
|
|
|
class Literals;
|
|
|
|
|
|
|
|
namespace Generator
|
|
|
|
{
|
|
|
|
typedef std::vector<Interpreter::Type_Code> CodeContainer;
|
|
|
|
|
|
|
|
void pushInt (CodeContainer& code, Literals& literals, int value);
|
|
|
|
|
|
|
|
void pushFloat (CodeContainer& code, Literals& literals, float value);
|
|
|
|
|
|
|
|
void assignToLocal (CodeContainer& code, char localType,
|
|
|
|
int localIndex, const CodeContainer& value, char valueType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|