fakir/src/SymTable.hpp

39 lines
696 B
C++
Raw Normal View History

2023-09-20 15:17:13 +00:00
#ifndef fk_SYMTABLE_HPP
#define fk_SYMTABLE_HPP
#include "commons.hpp"
#include "SymEntry.hpp"
namespace fk
{
FK_ERROR(symbol_error);
class SymTable
{
public:
explicit SymTable();
virtual ~SymTable();
void declare_local(std::string const& name,
addr_t addr,
Loc const& loc);
void declare_global(std::string const& name,
addr_t addr,
Loc const& loc);
std::optional<SymEntry> find(std::string const& name);
std::string string() const;
2023-09-21 13:59:46 +00:00
void enter_scope();
void leave_scope();
2023-09-20 15:17:13 +00:00
private:
std::vector<SymEntry> m_entries;
2023-09-21 13:59:46 +00:00
int m_scope;
2023-09-20 15:17:13 +00:00
};
}
#endif