diff options
author | Mattiwatti <mattiwatti@gmail.com> | 2019-05-30 17:36:00 +0200 |
---|---|---|
committer | Mattiwatti <mattiwatti@gmail.com> | 2019-05-30 17:36:00 +0200 |
commit | 7702234474e8590db6b35ae540de9503e4e936c7 (patch) | |
tree | cc2172feb689506a62ea310f657246867040d124 | |
parent | 9112c308dde268e913cbad0abeb8ed1ecc3178c1 (diff) |
EfiDSEFix: HDE64 fixes
- Make hde64_table const to prevent it from ending up in .data
- #include <intrin.h> because Clang gets confused by __stosb without it
- Fix various warnings
-rw-r--r-- | Application/EfiDSEFix/src/hde/hde64.c | 28 | ||||
-rw-r--r-- | Application/EfiDSEFix/src/hde/table64.h | 2 |
2 files changed, 19 insertions, 11 deletions
diff --git a/Application/EfiDSEFix/src/hde/hde64.c b/Application/EfiDSEFix/src/hde/hde64.c index 1843c85..a697090 100644 --- a/Application/EfiDSEFix/src/hde/hde64.c +++ b/Application/EfiDSEFix/src/hde/hde64.c @@ -1,4 +1,4 @@ -/* +/* * Hacker Disassembler Engine 64 C * Copyright (c) 2008-2009, Vyacheslav Patkov. * All rights reserved. @@ -7,15 +7,13 @@ #include "hde64.h" #include "table64.h" - -#pragma warning(push) -#pragma warning(disable:4701) -#pragma warning(disable:4706) +#include <intrin.h> unsigned int hde64_disasm(const void *code, hde64s *hs) { uint8_t x, c = 0, *p = (uint8_t *)code, cflags, opcode, pref = 0; - uint8_t *ht = hde64_table, m_mod, m_reg, m_rm, disp_size = 0; + const uint8_t* ht = hde64_table; + uint8_t m_mod, m_reg, m_rm, disp_size = 0; uint8_t op64 = 0; // Avoid using memset to reduce the footprint. @@ -64,7 +62,7 @@ unsigned int hde64_disasm(const void *code, hde64s *hs) if ((c & 0xf0) == 0x40) { hs->flags |= F_PREFIX_REX; - if ((hs->rex_w = (c & 0xf) >> 3) && (*p & 0xf8) == 0xb8) + if (((hs->rex_w = (c & 0xf) >> 3)) && (*p & 0xf8) == 0xb8) op64++; hs->rex_r = (c & 7) >> 2; hs->rex_x = (c & 3) >> 1; @@ -138,7 +136,8 @@ unsigned int hde64_disasm(const void *code, hde64s *hs) if (m_mod == 3) { hs->flags |= F_ERROR | F_ERROR_LOCK; } else { - uint8_t *table_end, op = opcode; + const uint8_t* table_end; + uint8_t op = opcode; if (hs->opcode2) { ht = hde64_table + DELTA_OP2_LOCK_OK; table_end = ht + DELTA_OP_ONLY_MEM - DELTA_OP2_LOCK_OK; @@ -174,6 +173,8 @@ unsigned int hde64_disasm(const void *code, hde64s *hs) goto error_operand; else goto no_error_operand; + default: + break; } } else { switch (opcode) { @@ -187,11 +188,13 @@ unsigned int hde64_disasm(const void *code, hde64s *hs) goto error_operand; else goto no_error_operand; + default: + break; } } if (m_mod == 3) { - uint8_t *table_end; + const uint8_t *table_end; if (hs->opcode2) { ht = hde64_table + DELTA_OP2_ONLY_MEM; table_end = ht + sizeof(hde64_table) - DELTA_OP2_ONLY_MEM; @@ -219,6 +222,8 @@ unsigned int hde64_disasm(const void *code, hde64s *hs) break; case 0xc5: goto error_operand; + default: + break; } goto no_error_operand; } else @@ -252,6 +257,8 @@ unsigned int hde64_disasm(const void *code, hde64s *hs) disp_size = 2; if (!(pref & PRE_67)) disp_size <<= 1; + default: + break; } if (m_mod != 3 && m_rm == 4) { @@ -277,6 +284,8 @@ unsigned int hde64_disasm(const void *code, hde64s *hs) case 4: hs->flags |= F_DISP32; hs->disp.disp32 = *(uint32_t *)p; + default: + break; } p += disp_size; } else if (pref & PRE_LOCK) @@ -335,4 +344,3 @@ unsigned int hde64_disasm(const void *code, hde64s *hs) return (unsigned int)hs->len; } -#pragma warning(pop) diff --git a/Application/EfiDSEFix/src/hde/table64.h b/Application/EfiDSEFix/src/hde/table64.h index e1eb724..555c6ba 100644 --- a/Application/EfiDSEFix/src/hde/table64.h +++ b/Application/EfiDSEFix/src/hde/table64.h @@ -36,7 +36,7 @@ #define DELTA_OP_ONLY_MEM 0x1d8 #define DELTA_OP2_ONLY_MEM 0x1e7 -unsigned char hde64_table[] = { +const unsigned char hde64_table[] = { 0xa5,0xaa,0xa5,0xb8,0xa5,0xaa,0xa5,0xaa,0xa5,0xb8,0xa5,0xb8,0xa5,0xb8,0xa5, 0xb8,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xac,0xc0,0xcc,0xc0,0xa1,0xa1, 0xa1,0xa1,0xb1,0xa5,0xa5,0xa6,0xc0,0xc0,0xd7,0xda,0xe0,0xc0,0xe4,0xc0,0xea, |