diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-01-05 13:02:42 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-01-05 13:02:42 -0800 |
commit | 15ebb7eb9f1726fa934df037eb70f92fdda2f966 (patch) | |
tree | 08cde98382a02a27219dcecd4b8a7c2e19ad8cae /subx | |
parent | 2eb174d697df06b303c45fb145b1434305a6ed5e (diff) | |
download | mu-15ebb7eb9f1726fa934df037eb70f92fdda2f966.tar.gz |
4909
Improve error checking to warn on unexpected displacements as well.
Diffstat (limited to 'subx')
-rw-r--r-- | subx/031check_operands.cc | 47 | ||||
-rw-r--r-- | subx/036global_variables.cc | 4 |
2 files changed, 32 insertions, 19 deletions
diff --git a/subx/031check_operands.cc b/subx/031check_operands.cc index 4fd500fa..fb72087d 100644 --- a/subx/031check_operands.cc +++ b/subx/031check_operands.cc @@ -368,32 +368,33 @@ void check_operands_modrm(const line& inst, const word& op) { // no check for scale; 0 (2**0 = 1) by default } -// same as compare_bitvector, with a couple of exceptions for modrm-based instructions -// exception: modrm instructions can use a displacement on occasion +// same as compare_bitvector, with one additional exception for modrm-based +// instructions: they may use an extra displacement on occasion void compare_bitvector_modrm(const line& inst, uint8_t expected, const word& op) { if (all_hex_bytes(inst) && has_operands(inst)) return; // deliberately programming in raw hex; we'll raise a warning elsewhere uint8_t bitvector = computed_expected_operand_bitvector(inst); if (trace_contains_errors()) return; // duplicate operand type + // update 'expected' bitvector for the additional exception + if (has_operand_metadata(inst, "mod")) { + int32_t mod = parse_int(metadata(inst, "mod").data); + switch (mod) { + case 0: + if (has_operand_metadata(inst, "rm32") && parse_int(metadata(inst, "rm32").data) == 5) + expected |= (1<<DISP32); + break; + case 1: + expected |= (1<<DISP8); + break; + case 2: + expected |= (1<<DISP32); + break; + } + } if (bitvector == expected) return; // all good with this instruction for (int i = 0; i < NUM_OPERAND_TYPES; ++i, bitvector >>= 1, expected >>= 1) { //? cerr << "comparing for modrm " << HEXBYTE << NUM(bitvector) << " with " << NUM(expected) << '\n'; if ((bitvector & 0x1) == (expected & 0x1)) continue; // all good with this operand const string& optype = Operand_type_name.at(i); - if (i == DISP8) { - int32_t mod = parse_int(metadata(inst, "mod").data); - if (mod != 1) - raise << "'" << to_string(inst) << "'" << maybe_name(op) << ": unexpected " << optype << " operand\n" << end(); - continue; // exception 2 - } - if (i == DISP32) { - int32_t mod = parse_int(metadata(inst, "mod").data); - int32_t rm32 = parse_int(metadata(inst, "rm32").data); - if (mod == 0 && rm32 == 5) - ; // ok: special-case for loading address from disp32 - else if (mod != 2) - raise << "'" << to_string(inst) << "'" << maybe_name(op) << ": unexpected " << optype << " operand\n" << end(); - continue; // exception 2 - } if ((bitvector & 0x1) > (expected & 0x1)) raise << "'" << to_string(inst) << "'" << maybe_name(op) << ": unexpected " << optype << " operand\n" << end(); else @@ -420,6 +421,18 @@ void check_operand_metadata_absent(const line& inst, const string& type, const w # just avoid null pointer 8b/copy 1/mod/lookup+disp8 0/rm32/EAX 2/r32/EDX 4/disp8 # copy *(EAX+4) to EDX $error: 0 + +:(scenario check_missing_disp8) +% Hide_errors = true; +== 0x1 +89/copy 1/mod/lookup+disp8 0/rm32/EAX 1/r32/ECX # missing disp8 ++error: '89/copy 1/mod/lookup+disp8 0/rm32/EAX 1/r32/ECX' (copy r32 to rm32): missing disp8 operand + +:(scenario check_missing_disp32) +% Hide_errors = true; +== 0x1 +8b/copy 0/mod/indirect 5/rm32/.disp32 2/r32/EDX # missing disp32 ++error: '8b/copy 0/mod/indirect 5/rm32/.disp32 2/r32/EDX' (copy rm32 to r32): missing disp32 operand :(scenarios run) :(scenario conflicting_operands_in_modrm_instruction) diff --git a/subx/036global_variables.cc b/subx/036global_variables.cc index c314a4f7..2299b3bf 100644 --- a/subx/036global_variables.cc +++ b/subx/036global_variables.cc @@ -203,7 +203,7 @@ x: 00 +error: duplicate global 'x' -:(scenario disp32_data_with_modrm) +:(scenario global_variable_disp32_with_modrm) == code 8b/copy 0/mod/indirect 5/rm32/.disp32 2/r32/EDX x/disp32 == data @@ -212,7 +212,7 @@ x: $error: 0 :(scenarios transform) -:(scenario disp32_data_with_call) +:(scenario global_variable_disp32_with_call) == code foo: e8/call bar/disp32 |