-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsym.cpp
56 lines (46 loc) · 1.32 KB
/
sym.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
51
52
53
54
55
56
/*
* Copyright (c) 2021, the Basil authors
* All rights reserved.
*
* This source code is licensed under the 3-Clause BSD License, the full text
* of which can be found in the LICENSE file in the root directory
* of this project.
*/
#include "sym.h"
#include "string.h"
#include "util/str.h"
namespace jasmine {
struct SymbolTable {
vector<string> symbol_names;
map<string, Symbol> symbols;
SymbolTable() {}
~SymbolTable() {
//
}
Symbol enter(const string& name, SymbolLinkage linkage) {
auto it = symbols.find(name);
if (it == symbols.end()) {
symbol_names.push(name);
return symbols[name] = { symbol_names.size() - 1, linkage };
}
else return it->second;
}
};
static SymbolTable table;
bool operator==(Symbol a, Symbol b) {
return a.id == b.id;
}
Symbol global(const char* name) {
return table.enter(name, GLOBAL_SYMBOL);
}
Symbol local(const char* name) {
return table.enter(name, LOCAL_SYMBOL);
}
const char* name(Symbol symbol) {
return (const char*)table.symbol_names[symbol.id].raw();
}
}
template<>
u64 hash(const jasmine::Symbol& symbol) {
return hash<u64>((u64)symbol.id | (u64)symbol.type << 32);
}