1
2
3
4 :(scenario check_missing_imm8_operand)
5 % Hide_errors = true;
6 == 0x1
7
8
9
10 cd
11 +error: 'cd' (software interrupt): missing imm8 operand
12
13 :(before "Pack Operands(segment code)")
14 check_operands(code);
15 if (trace_contains_errors()) return;
16
17 :(code)
18 void check_operands(const segment& code) {
19 trace(99, "transform") << "-- check operands" << end();
20 for (int i = 0; i < SIZE(code.lines); ++i) {
21 check_operands(code.lines.at(i));
22 if (trace_contains_errors()) return;
23 }
24 }
25
26 void check_operands(const line& inst) {
27 word op = preprocess_op(inst.words.at(0));
28 if (op.data == "0f") {
29 check_operands_0f(inst);
30 return;
31 }
32 if (op.data == "f3") {
33 check_operands_f3(inst);
34 return;
35 }
36 check_operands(inst, op);
37 }
38
39 word preprocess_op(word op) {
40 op.data = tolower(op.data.c_str());
41
42 if (starts_with(op.data, "0x"))
43 op.data = op.data.substr(2);
44 if (SIZE(op.data) == 1)
45 op.data = string("0")+op.data;
46 return op;
47 }
48
49 void test_preprocess_op() {
50 word w1; w1.data = "0xf";
51 word w2; w2.data = "0f";
52 CHECK_EQ(preprocess_op(w1).data, preprocess_op(w2).data);
53 }
54
55
56
57
58
59 :(before "End Types")
60 enum operand_type {
61
62 MODRM,
63 SUBOP,
64 DISP8,
65 DISP16,
66 DISP32,
67 IMM8,
68 IMM32,
69 NUM_OPERAND_TYPES
70 };
71 :(before "End Globals")
72 vector<string> Operand_type_name;
73 map<string, operand_type> Operand_type;
74 :(before "End One-time Setup")
75 init_op_types();
76 :(code)
77 void init_op_types() {
78 assert(NUM_OPERAND_TYPES <= 8);
79 Operand_type_name.resize(NUM_OPERAND_TYPES);
80
81 DEF(MODRM);
82 DEF(SUBOP);
83 DEF(DISP8);
84 DEF(DISP16);
85 DEF(DISP32);
86 DEF(IMM8);
87 DEF(IMM32);
88
89 }
90
91 :(before "End Globals")
92 map<string, uint8_t> Permitted_operands;
93 const uint8_t INVALID_OPERANDS = 0xff;
94 :(before "End One-time Setup")
95 init_permitted_operands();
96 :(code)
97 void init_permitted_operands() {
98
99
100 put(Permitted_operands, "f4", 0x00);
101
102 put(Permitted_operands, "50", 0x00);
103 put(Permitted_operands, "51", 0x00);
104 put(Permitted_operands, "52", 0x00);
105 put(Permitted_operands, "53", 0x00);
106 put(Permitted_operands, "54", 0x00);
107 put(Permitted_operands, "55", 0x00);
108 put(Permitted_operands, "56", 0x00);
109 put(Permitted_operands, "57", 0x00);
110
111 put(Permitted_operands, "58", 0x00);
112 put(Permitted_operands, "59", 0x00);
113 put(Permitted_operands, "5a", 0x00);
114 put(Permitted_operands, "5b", 0x00);
115 put(Permitted_operands, "5c", 0x00);
116 put(Permitted_operands, "5d", 0x00);
117 put(Permitted_operands, "5e", 0x00);
118 put(Permitted_operands, "5f", 0x00);
119
120 put(Permitted_operands, "c3", 0x00);
121
122
123
124
125
126
127 put(Permitted_operands, "eb", 0x04);
128 put(Permitted_operands, "74", 0x04);
129 put(Permitted_operands, "75", 0x04);
130 put(Permitted_operands, "7c", 0x04);
131 put(Permitted_operands, "7d", 0x04);
132 put(Permitted_operands, "7e", 0x04);
133 put(Permitted_operands, "7f", 0x04);
134
135
136
137
138 put(Permitted_operands, "e9", 0x08);
139
140
141
142
143 put(Permitted_operands, "e8", 0x10);
144
145
146
147
148 put(Permitted_operands, "cd", 0x20);
149
150
151
152
153 put(Permitted_operands, "05", 0x40);
154 put(Permitted_operands, "2d", 0x40);
155 put(Permitted_operands, "25", 0x40);
156 put(Permitted_operands, "0d", 0x40);
157 put(Permitted_operands, "35", 0x40);
158 put(Permitted_operands, "3d", 0x40);
159 put(Permitted_operands, "68", 0x40);
160
161 put(Permitted_operands, "b8", 0x40);
162 put(Permitted_operands, "b9", 0x40);
163 put(Permitted_operands, "ba", 0x40);
164 put(Permitted_operands, "bb", 0x40);
165 put(Permitted_operands, "bc", 0x40);
166 put(Permitted_operands, "bd", 0x40);
167 put(Permitted_operands, "be", 0x40);
168 put(Permitted_operands, "bf", 0x40);
169
170
171
172
173
174
175 put(Permitted_operands, "01", 0x01);
176 put(Permitted_operands, "03", 0x01);
177
178 put(Permitted_operands, "29", 0x01);
179 put(Permitted_operands, "2b", 0x01);
180
181 put(Permitted_operands, "21", 0x01);
182 put(Permitted_operands, "23", 0x01);
183
184 put(Permitted_operands, "09", 0x01);
185 put(Permitted_operands, "0b", 0x01);
186
187 put(Permitted_operands, "31", 0x01);
188 put(Permitted_operands, "33", 0x01);
189
190 put(Permitted_operands, "39", 0x01);
191 put(Permitted_operands, "3b", 0x01);
192
193 put(Permitted_operands, "88", 0x01);
194 put(Permitted_operands, "89", 0x01);
195 put(Permitted_operands, "8a", 0x01);
196 put(Permitted_operands, "8b", 0x01);
197
198 put(Permitted_operands, "87", 0x01);
199
200 put(Permitted_operands, "8f", 0x01);
201
202
203
204
205 put(Permitted_operands, "f7", 0x03);
206 put(Permitted_operands, "ff", 0x03);
207
208
209
210
211 put(Permitted_operands, "c7", 0x41);
212
213
214
215
216 put(Permitted_operands, "81", 0x43);
217
218
219 }
220
221 :(code)
222
223
224
225
226 void check_operands(const line& inst, const word& op) {
227 if (!is_hex_byte(op)) return;
228 uint8_t expected_bitvector = get(Permitted_operands, op.data);
229 if (HAS(expected_bitvector, MODRM)) {
230 check_operands_modrm(inst, op);
231 compare_bitvector_modrm(inst, expected_bitvector, op);
232 }
233 else {
234 compare_bitvector(inst, expected_bitvector, op);
235 }
236 }
237
238
239
240 void compare_bitvector(const line& inst, uint8_t expected, const word& op) {
241 if (all_hex_bytes(inst) && has_operands(inst)) return;
242 uint8_t bitvector = compute_operand_bitvector(inst);
243 if (trace_contains_errors()) return;
244 if (bitvector == expected) return;
245 for (int i = 0; i < NUM_OPERAND_TYPES; ++i, bitvector >>= 1, expected >>= 1) {
246
247 if ((bitvector & 0x1) == (expected & 0x1)) continue;
248 const string& optype = Operand_type_name.at(i);
249 if ((bitvector & 0x1) > (expected & 0x1))
250 raise << "'" << to_string(inst) << "'" << maybe_name(op) << ": unexpected " << optype << " operand\n" << end();
251 else
252 raise << "'" << to_string(inst) << "'" << maybe_name(op) << ": missing " << optype << " operand\n" << end();
253
254 }
255
256 }
257
258 string maybe_name(const word& op) {
259 if (!is_hex_byte(op)) return "";
260 if (!contains_key(name, op.data)) return "";
261 return " ("+get(name, op.data)+')';
262 }
263
264 uint32_t compute_operand_bitvector(const line& inst) {
265 uint32_t bitvector = 0;
266 for (int i = 1; i < SIZE(inst.words); ++i) {
267 bitvector = bitvector | bitvector_for_operand(inst.words.at(i));
268 if (trace_contains_errors()) return INVALID_OPERANDS;
269 }
270 return bitvector;
271 }
272
273 bool has_operands(const line& inst) {
274 return SIZE(inst.words) > first_operand(inst);
275 }
276
277 int first_operand(const line& inst) {
278 if (inst.words.at(0).data == "0f") return 2;
279 if (inst.words.at(0).data == "f2" || inst.words.at(0).data == "f3") {
280 if (inst.words.at(1).data == "0f")
281 return 3;
282 else
283 return 2;
284 }
285 return 1;
286 }
287
288
289
290 uint32_t bitvector_for_operand(const word& w) {
291 uint32_t bv = 0;
292 bool found = false;
293 for (int i = 0; i < SIZE(w.metadata); ++i) {
294 const string& curr = w.metadata.at(i);
295 if (!contains_key(Operand_type, curr)) continue;
296 if (found) {
297 raise << "'" << w.original << "' has conflicting operand types; it should have only one\n" << end();
298 return INVALID_OPERANDS;
299 }
300 bv = (1 << get(Operand_type, curr));
301 found = true;
302 }
303 return bv;
304 }
305
306 :(scenario conflicting_operand_type)
307 % Hide_errors = true;
308 == 0x1
309 cd/software-interrupt 80/imm8/imm32
310 +error: '80/imm8/imm32' has conflicting operand types; it should have only one
311
312
313
314
315 :(scenario check_missing_mod_operand)
316 % Hide_errors = true;
317 == 0x1
318 81 0/add/subop 3/rm32/ebx 1/imm32
319 +error: '81 0/add/subop 3/rm32/ebx 1/imm32' (combine rm32 with imm32 based on subop): missing mod operand
320
321 :(code)
322 void check_operands_modrm(const line& inst, const word& op) {
323 if (all_hex_bytes(inst)) return;
324 check_metadata_present(inst, "mod", op);
325 check_metadata_present(inst, "rm32", op);
326
327 if (op.data == "81" || op.data == "8f" || op.data == "ff") {
328 check_metadata_present(inst, "subop", op);
329 check_metadata_absent(inst, "r32", op, "should be replaced by subop");
330 }
331 if (trace_contains_errors()) return;
332 if (metadata(inst, "rm32").data != "4") return;
333
334 uint8_t mod = hex_byte(metadata(inst, "mod").data);
335 if (mod != 3) {
336 check_metadata_present(inst, "base", op);
337 check_metadata_present(inst, "index", op);
338 }
339 else {
340 check_metadata_absent(inst, "base", op, "direct mode");
341 check_metadata_absent(inst, "index", op, "direct mode");
342 }
343
344 }
345
346
347
348
349 void compare_bitvector_modrm(const line& inst, uint8_t expected, const word& op) {
350 if (all_hex_bytes(inst) && has_operands(inst)) return;
351 uint8_t bitvector = compute_operand_bitvector(inst);
352 if (trace_contains_errors()) return;
353 expected = CLEAR(expected, MODRM);
354 if (bitvector == expected) return;
355 for (int i = 0; i < NUM_OPERAND_TYPES; ++i, bitvector >>= 1, expected >>= 1) {
356
357 if ((bitvector & 0x1) == (expected & 0x1)) continue;
358 if (i == DISP8 || i == DISP32) continue;
359 const string& optype = Operand_type_name.at(i);
360 if ((bitvector & 0x1) > (expected & 0x1))
361 raise << "'" << to_string(inst) << "'" << maybe_name(op) << ": unexpected " << optype << " operand\n" << end();
362 else
363 raise << "'" << to_string(inst) << "'" << maybe_name(op) << ": missing " << optype << " operand\n" << end();
364
365 }
366
367 }
368
369 void check_metadata_present(const line& inst, const string& type, const word& op) {
370 if (!has_metadata(inst, type))
371 raise << "'" << to_string(inst) << "' (" << get(name, op.data) << "): missing " << type << " operand\n" << end();
372 }
373
374 void check_metadata_absent(const line& inst, const string& type, const word& op, const string& msg) {
375 if (has_metadata(inst, type))
376 raise << "'" << to_string(inst) << "' (" << get(name, op.data) << "): unexpected " << type << " operand (" << msg << ")\n" << end();
377 }
378
379 :(scenarios transform)
380 :(scenario modrm_with_displacement)
381 % Reg[EAX].u = 0x1;
382 == 0x1
383
384 8b/copy 1/mod/lookup+disp8 0/rm32/EAX 2/r32/EDX 4/disp8
385 $error: 0
386 :(scenarios run)
387
388 :(scenario conflicting_operands_in_modrm_instruction)
389 % Hide_errors = true;
390 == 0x1
391 01/add 0/mod 3/mod
392 +error: '01/add 0/mod 3/mod' has conflicting mod operands
393
394 :(scenario conflicting_operand_type_modrm)
395 % Hide_errors = true;
396 == 0x1
397 01/add 0/mod 3/rm32/r32
398 +error: '3/rm32/r32' has conflicting operand types; it should have only one
399
400 :(scenario check_missing_rm32_operand)
401 % Hide_errors = true;
402 == 0x1
403 81 0/add/subop 0/mod 1/imm32
404 +error: '81 0/add/subop 0/mod 1/imm32' (combine rm32 with imm32 based on subop): missing rm32 operand
405
406 :(scenario check_missing_subop_operand)
407 % Hide_errors = true;
408 == 0x1
409 81 0/mod 3/rm32/ebx 1/imm32
410 +error: '81 0/mod 3/rm32/ebx 1/imm32' (combine rm32 with imm32 based on subop): missing subop operand
411
412 :(scenario check_missing_base_operand)
413 % Hide_errors = true;
414 == 0x1
415 81 0/add/subop 0/mod/indirect 4/rm32/use-sib 1/imm32
416 +error: '81 0/add/subop 0/mod/indirect 4/rm32/use-sib 1/imm32' (combine rm32 with imm32 based on subop): missing base operand
417
418 :(scenario check_missing_index_operand)
419 % Hide_errors = true;
420 == 0x1
421 81 0/add/subop 0/mod/indirect 4/rm32/use-sib 0/base 1/imm32
422 +error: '81 0/add/subop 0/mod/indirect 4/rm32/use-sib 0/base 1/imm32' (combine rm32 with imm32 based on subop): missing index operand
423
424 :(scenario check_missing_base_operand_2)
425 % Hide_errors = true;
426 == 0x1
427 81 0/add/subop 0/mod/indirect 4/rm32/use-sib 2/index 3/scale 1/imm32
428 +error: '81 0/add/subop 0/mod/indirect 4/rm32/use-sib 2/index 3/scale 1/imm32' (combine rm32 with imm32 based on subop): missing base operand
429
430 :(scenario check_base_operand_not_needed_in_direct_mode)
431 == 0x1
432 81 0/add/subop 3/mod/indirect 4/rm32/use-sib 1/imm32
433 $error: 0
434
435
436
437 :(code)
438 void check_operands_0f(const line& inst) {
439 assert(inst.words.at(0).data == "0f");
440 if (SIZE(inst.words) == 1) {
441 raise << "opcode '0f' requires a second opcode\n" << end();
442 return;
443 }
444 word op = preprocess_op(inst.words.at(1));
445 if (!contains_key(name_0f, op.data)) {
446 raise << "unknown 2-byte opcode '0f " << op.data << "'\n" << end();
447 return;
448 }
449 check_operands_0f(inst, op);
450 }
451
452 void check_operands_f3(const line& ) {
453 raise << "no supported opcodes starting with f3\n" << end();
454 }
455
456 :(scenario check_missing_disp16_operand)
457 % Hide_errors = true;
458 == 0x1
459
460
461
462 0f 84
463 +error: '0f 84' (jump disp16 bytes away if ZF is set): missing disp16 operand
464
465 :(before "End Globals")
466 map<string, uint8_t> Permitted_operands_0f;
467 :(before "End Init Permitted Operands")
468
469
470
471 put(Permitted_operands_0f, "84", 0x08);
472 put(Permitted_operands_0f, "85", 0x08);
473 put(Permitted_operands_0f, "8c", 0x08);
474 put(Permitted_operands_0f, "8d", 0x08);
475 put(Permitted_operands_0f, "8e", 0x08);
476 put(Permitted_operands_0f, "8f", 0x08);
477
478
479
480
481 put(Permitted_operands_0f, "af", 0x01);
482
483 :(code)
484 void check_operands_0f(const line& inst, const word& op) {
485 uint8_t expected_bitvector = get(Permitted_operands_0f, op.data);
486 if (HAS(expected_bitvector, MODRM))
487 check_operands_modrm(inst, op);
488 compare_bitvector_0f(inst, CLEAR(expected_bitvector, MODRM), op);
489 }
490
491 void compare_bitvector_0f(const line& inst, uint8_t expected, const word& op) {
492 if (all_hex_bytes(inst) && has_operands(inst)) return;
493 uint8_t bitvector = compute_operand_bitvector(inst);
494 if (trace_contains_errors()) return;
495 if (bitvector == expected) return;
496 for (int i = 0; i < NUM_OPERAND_TYPES; ++i, bitvector >>= 1, expected >>= 1) {
497
498 if ((bitvector & 0x1) == (expected & 0x1)) continue;
499 const string& optype = Operand_type_name.at(i);
500 if ((bitvector & 0x1) > (expected & 0x1))
501 raise << "'" << to_string(inst) << "' (" << get(name_0f, op.data) << "): unexpected " << optype << " operand\n" << end();
502 else
503 raise << "'" << to_string(inst) << "' (" << get(name_0f, op.data) << "): missing " << optype << " operand\n" << end();
504
505 }
506
507 }
508
509 string tolower(const char* s) {
510 ostringstream out;
511 for (; *s; ++s)
512 out << static_cast<char>(tolower(*s));
513 return out.str();
514 }
515
516
517
518
519
520 :(before "End Includes")
521