https://github.com/akkartik/mu/blob/master/subx/036global_variables.cc
1
2
3
4
5
6
7
8
9 :(scenario global_variable)
10 == code
11 b9 x/imm32
12 == data
13 x:
14 00 00 00 00
15 +transform: global variable 'x' is at address 0x0a000079
16
17 :(before "End Level-2 Transforms")
18 Transform.push_back(rewrite_global_variables);
19 :(code)
20 void rewrite_global_variables(program& p) {
21 trace(99, "transform") << "-- rewrite global variables" << end();
22
23 map<string, uint32_t> address;
24 compute_addresses_for_global_variables(p, address);
25 if (trace_contains_errors()) return;
26 drop_global_variables(p);
27 replace_global_variables_with_addresses(p, address);
28 }
29
30 void compute_addresses_for_global_variables(const program& p, map<string, uint32_t>& address) {
31 for (int i = 1; i < SIZE(p.segments); ++i)
32 compute_addresses_for_global_variables(p.segments.at(i), address);
33 }
34
35 void compute_addresses_for_global_variables(const segment& s, map<string, uint32_t>& address) {
36 int current_address = s.start;
37 for (int i = 0; i < SIZE(s.lines); ++i) {
38 const line& inst = s.lines.at(i);
39 for (int j = 0; j < SIZE(inst.words); ++j) {
40 const word& curr = inst.words.at(j);
41 if (*curr.data.rbegin() != ':') {
42 current_address += size_of(curr);
43 }
44 else {
45 string variable = drop_last(curr.data);
46
47 check_valid_name(variable);
48 if (trace_contains_errors()) return;
49 if (j > 0)
50 raise << "'" << to_string(inst) << "': global variable names can only be the first word in a line.\n" << end();
51 if (Map_file.is_open())
52 Map_file << "0x" << HEXWORD << current_address << ' ' << variable << '\n';
53 if (contains_key(address, variable)) {
54 raise << "duplicate global '" << variable << "'\n" << end();
55 return;
56 }
57 put(address, variable, current_address);
58 trace(99, "transform") << "global variable '" << variable << "' is at address 0x" << HEXWORD << current_address << end();
59
60 }
61 }
62 }
63 }
64
65 void drop_global_variables(program& p) {
66 for (int i = 1; i < SIZE(p.segments); ++i)
67 drop_labels(p.segments.at(i));
68 }
69
70 void replace_global_variables_with_addresses(program& p, const map<string, uint32_t>& address) {
71 if (p.segments.empty()) return;
72 replace_global_variables_in_code_segment(p.segments.at(0), address);
73 for (int i = 1; i < SIZE(p.segments); ++i)
74 replace_global_variables_in_data_segment(p.segments.at(i), address);
75 }
76
77 void replace_global_variables_in_code_segment(segment& code, const map<string, uint32_t>& address) {
78 for (int i = 0; i < SIZE(code.lines); ++i) {
79 line& inst = code.lines.at(i);
80 line new_inst;
81 for (int j = 0; j < SIZE(inst.words); ++j) {
82 const word& curr = inst.words.at(j);
83 if (!contains_key(address, curr.data)) {
84 if (!looks_like_hex_int(curr.data))
85 raise << "missing reference to global '" << curr.data << "'\n" << end();
86 new_inst.words.push_back(curr);
87 continue;
88 }
89 if (!valid_use_of_global_variable(curr)) {
90 raise << "'" << to_string(inst) << "': can't refer to global variable '" << curr.data << "'\n" << end();
91 return;
92 }
93 emit_hex_bytes(new_inst, get(address, curr.data), 4);
94 }
95 inst.words.swap(new_inst.words);
96 trace(99, "transform") << "instruction after transform: '" << data_to_string(inst) << "'" << end();
97 }
98 }
99
100 void replace_global_variables_in_data_segment(segment& data, const map<string, uint32_t>& address) {
101 for (int i = 0; i < SIZE(data.lines); ++i) {
102 line& l = data.lines.at(i);
103 line new_l;
104 for (int j = 0; j < SIZE(l.words); ++j) {
105 const word& curr = l.words.at(j);
106 if (!contains_key(address, curr.data)) {
107 if (!looks_like_hex_int(curr.data))
108 raise << "missing reference to global '" << curr.data << "'\n" << end();
109 new_l.words.push_back(curr);
110 continue;
111 }
112 trace(99, "transform") << curr.data << " maps to " << HEXWORD << get(address, curr.data) << end();
113 emit_hex_bytes(new_l, get(address, curr.data), 4);
114 }
115 l.words.swap(new_l.words);
116 trace(99, "transform") << "after transform: '" << data_to_string(l) << "'" << end();
117 }
118 }
119
120 bool valid_use_of_global_variable(const word& curr) {
121 if (has_operand_metadata(curr, "imm32")) return true;
122
123 return false;
124 }
125
126
127
128
129 :(after "Begin Level-2 Transforms")
130 Transform.push_back(correlate_disp32_with_mod);
131 :(code)
132 void correlate_disp32_with_mod(program& p) {
133 if (p.segments.empty()) return;
134 segment& code = p.segments.at(0);
135 for (int i = 0; i < SIZE(code.lines); ++i) {
136 line& inst = code.lines.at(i);
137 for (int j = 0; j < SIZE(inst.words); ++j) {
138 word& curr = inst.words.at(j);
139 if (has_operand_metadata(curr, "disp32")
140 && has_operand_metadata(inst, "mod"))
141 curr.metadata.push_back("has_mod");
142 }
143 }
144 }
145
146 :(before "End Valid Uses Of Global Variable(curr)")
147 if (has_operand_metadata(curr, "disp32"))
148 return has_metadata(curr, "has_mod");
149
150
151
152 :(code)
153 bool has_metadata(const word& w, const string& m) {
154 for (int i = 0; i < SIZE(w.metadata); ++i)
155 if (w.metadata.at(i) == m) return true;
156 return false;
157 }
158
159 :(scenario global_variable_disallowed_in_jump)
160 % Hide_errors = true;
161 == code
162 eb/jump x/disp8
163 == data
164 x:
165 00 00 00 00
166 +error: 'eb/jump x/disp8': can't refer to global variable 'x'
167
168
169
170 :(scenario global_variable_disallowed_in_call)
171 % Hide_errors = true;
172 == code
173 e8/call x/disp32
174 == data
175 x:
176 00 00 00 00
177 +error: 'e8/call x/disp32': can't refer to global variable 'x'
178
179
180
181 :(scenario global_variable_in_data_segment)
182 == 0x1
183 b9 x/imm32
184 == 0x0a000000
185 x:
186 y/imm32
187 y:
188 00 00 00 00
189
190 +load: 0x0a000000 -> 04
191 +load: 0x0a000001 -> 00
192 +load: 0x0a000002 -> 00
193 +load: 0x0a000003 -> 0a
194 $error: 0
195
196 :(scenario duplicate_global_variable)
197 % Hide_errors = true;
198 == 0x1
199 40/increment-EAX
200 == 0x0a000000
201 x:
202 x:
203 00
204 +error: duplicate global 'x'
205
206 :(scenario global_variable_disp32_with_modrm)
207 == code
208 8b/copy 0/mod/indirect 5/rm32/.disp32 2/r32/EDX x/disp32
209 == data
210 x:
211 00 00 00 00
212 $error: 0
213
214 :(scenarios transform)
215 :(scenario global_variable_disp32_with_call)
216 == code
217 foo:
218 e8/call bar/disp32
219 bar:
220 $error: 0
221
222 :(code)
223 string to_full_string(const line& in) {
224 ostringstream out;
225 for (int i = 0; i < SIZE(in.words); ++i) {
226 if (i > 0) out << ' ';
227 out << in.words.at(i).data;
228 for (int j = 0; j < SIZE(in.words.at(i).metadata); ++j)
229 out << '/' << in.words.at(i).metadata.at(j);
230 }
231 return out.str();
232 }