| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COURGETTE_DISASSEMBLER_ELF_32_X86_H_ | 5 #ifndef COURGETTE_DISASSEMBLER_ELF_32_X86_H_ |
| 6 #define COURGETTE_DISASSEMBLER_ELF_32_X86_H_ | 6 #define COURGETTE_DISASSEMBLER_ELF_32_X86_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "courgette/disassembler_elf_32.h" | 14 #include "courgette/disassembler_elf_32.h" |
| 15 #include "courgette/types_elf.h" | 15 #include "courgette/types_elf.h" |
| 16 | 16 |
| 17 namespace courgette { | 17 namespace courgette { |
| 18 | 18 |
| 19 class AssemblyProgram; | 19 class AssemblyProgram; |
| 20 | 20 |
| 21 class DisassemblerElf32X86 : public DisassemblerElf32 { | 21 class DisassemblerElf32X86 : public DisassemblerElf32 { |
| 22 public: | 22 public: |
| 23 static bool QuickDetects(const void* start, size_t length) { |
| 24 return DisassemblerElf32::QuickDetects( |
| 25 reinterpret_cast<const uint8_t*>(start), length, EM_386); |
| 26 } |
| 27 |
| 23 class TypedRVAX86 : public TypedRVA { | 28 class TypedRVAX86 : public TypedRVA { |
| 24 public: | 29 public: |
| 25 explicit TypedRVAX86(RVA rva) : TypedRVA(rva) { } | 30 explicit TypedRVAX86(RVA rva) : TypedRVA(rva) { } |
| 26 ~TypedRVAX86() override { } | 31 ~TypedRVAX86() override { } |
| 27 | 32 |
| 28 // TypedRVA interfaces. | 33 // TypedRVA interfaces. |
| 29 CheckBool ComputeRelativeTarget(const uint8_t* op_pointer) override; | 34 CheckBool ComputeRelativeTarget(const uint8_t* op_pointer) override; |
| 30 CheckBool EmitInstruction(AssemblyProgram* program, | 35 CheckBool EmitInstruction(AssemblyProgram* program, |
| 31 Label* label) override; | 36 Label* label) override; |
| 32 uint16_t op_size() const override; | 37 uint16_t op_size() const override; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 53 #if COURGETTE_HISTOGRAM_TARGETS | 58 #if COURGETTE_HISTOGRAM_TARGETS |
| 54 std::map<RVA, int> rel32_target_rvas_; | 59 std::map<RVA, int> rel32_target_rvas_; |
| 55 #endif | 60 #endif |
| 56 | 61 |
| 57 DISALLOW_COPY_AND_ASSIGN(DisassemblerElf32X86); | 62 DISALLOW_COPY_AND_ASSIGN(DisassemblerElf32X86); |
| 58 }; | 63 }; |
| 59 | 64 |
| 60 } // namespace courgette | 65 } // namespace courgette |
| 61 | 66 |
| 62 #endif // COURGETTE_DISASSEMBLER_ELF_32_X86_H_ | 67 #endif // COURGETTE_DISASSEMBLER_ELF_32_X86_H_ |
| OLD | NEW |