-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringTable.cpp
More file actions
36 lines (27 loc) · 741 Bytes
/
Copy pathstringTable.cpp
File metadata and controls
36 lines (27 loc) · 741 Bytes
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
#include "stringTable.hpp"
#include <set>
#include <string>
#include <cstring>
extern const char* CURRENT_LABEL;
namespace {
class SymbolTable {
public:
const char* add(const std::string symbol) {
return _symbols.insert(symbol).first->c_str();
}
private:
typedef std::set<std::string> Symbols;
Symbols _symbols;
};
SymbolTable SYMBOL_TABLE;
} // anonymous namespace
const char* addSymbol(const char* symbol) {
return SYMBOL_TABLE.add(symbol);
}
const char* addLocalLabel(const char* localLabel) {
return addSymbol((std::string(CURRENT_LABEL) + "_" + localLabel).c_str());
}
const char* addString(const char* s) {
const std::string strippedQuotes(s + 1, strlen(s) - 2);
return SYMBOL_TABLE.add(strippedQuotes);
}