Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Ian Rogers | 02ed4c0 | 2013-09-06 13:10:04 -0700 | [diff] [blame] | 17 | #ifndef ART_DISASSEMBLER_DISASSEMBLER_H_ |
| 18 | #define ART_DISASSEMBLER_DISASSEMBLER_H_ |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 19 | |
Elliott Hughes | 0f3c553 | 2012-03-30 14:51:51 -0700 | [diff] [blame] | 20 | #include <stdint.h> |
| 21 | |
| 22 | #include <iosfwd> |
| 23 | |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 24 | #include "arch/instruction_set.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 25 | #include "base/macros.h" |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 26 | |
| 27 | namespace art { |
| 28 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 29 | class DisassemblerOptions { |
| 30 | public: |
Andreas Gampe | 372f3a3 | 2016-08-19 10:49:06 -0700 | [diff] [blame] | 31 | using ThreadOffsetNameFunction = void (*)(std::ostream& os, uint32_t offset); |
| 32 | |
| 33 | ThreadOffsetNameFunction thread_offset_name_function_; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 34 | |
Aart Bik | d3059e7 | 2016-05-11 10:30:47 -0700 | [diff] [blame] | 35 | // Base address for calculating relative code offsets when absolute_addresses_ is false. |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 36 | const uint8_t* const base_address_; |
| 37 | |
Aart Bik | d3059e7 | 2016-05-11 10:30:47 -0700 | [diff] [blame] | 38 | // End address (exclusive); |
| 39 | const uint8_t* const end_address_; |
| 40 | |
Andreas Gampe | 372f3a3 | 2016-08-19 10:49:06 -0700 | [diff] [blame] | 41 | // Should the disassembler print absolute or relative addresses. |
| 42 | const bool absolute_addresses_; |
| 43 | |
Alexandre Rames | a37d925 | 2014-10-27 11:28:14 +0000 | [diff] [blame] | 44 | // If set, the disassembler is allowed to look at load targets in literal |
| 45 | // pools. |
| 46 | const bool can_read_literals_; |
| 47 | |
Aart Bik | d3059e7 | 2016-05-11 10:30:47 -0700 | [diff] [blame] | 48 | DisassemblerOptions(bool absolute_addresses, |
| 49 | const uint8_t* base_address, |
| 50 | const uint8_t* end_address, |
Andreas Gampe | 372f3a3 | 2016-08-19 10:49:06 -0700 | [diff] [blame] | 51 | bool can_read_literals, |
| 52 | ThreadOffsetNameFunction fn) |
| 53 | : thread_offset_name_function_(fn), |
Aart Bik | d3059e7 | 2016-05-11 10:30:47 -0700 | [diff] [blame] | 54 | base_address_(base_address), |
| 55 | end_address_(end_address), |
Andreas Gampe | 372f3a3 | 2016-08-19 10:49:06 -0700 | [diff] [blame] | 56 | absolute_addresses_(absolute_addresses), |
Alexandre Rames | a37d925 | 2014-10-27 11:28:14 +0000 | [diff] [blame] | 57 | can_read_literals_(can_read_literals) {} |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 58 | |
| 59 | private: |
| 60 | DISALLOW_COPY_AND_ASSIGN(DisassemblerOptions); |
| 61 | }; |
| 62 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 63 | class Disassembler { |
| 64 | public: |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 65 | // Creates a Disassembler for the given InstructionSet with the |
| 66 | // non-null DisassemblerOptions which become owned by the |
| 67 | // Disassembler. |
| 68 | static Disassembler* Create(InstructionSet instruction_set, DisassemblerOptions* options); |
| 69 | |
| 70 | virtual ~Disassembler() { |
| 71 | delete disassembler_options_; |
| 72 | } |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 73 | |
Ian Rogers | b23a772 | 2012-10-09 16:54:26 -0700 | [diff] [blame] | 74 | // Dump a single instruction returning the length of that instruction. |
| 75 | virtual size_t Dump(std::ostream& os, const uint8_t* begin) = 0; |
| 76 | // Dump instructions within a range. |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 77 | virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) = 0; |
Elliott Hughes | 105afd2 | 2012-04-10 15:04:25 -0700 | [diff] [blame] | 78 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 79 | const DisassemblerOptions* GetDisassemblerOptions() const { |
| 80 | return disassembler_options_; |
| 81 | } |
| 82 | |
Elliott Hughes | 105afd2 | 2012-04-10 15:04:25 -0700 | [diff] [blame] | 83 | protected: |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 84 | explicit Disassembler(DisassemblerOptions* disassembler_options) |
| 85 | : disassembler_options_(disassembler_options) { |
| 86 | CHECK(disassembler_options_ != nullptr); |
| 87 | } |
| 88 | |
| 89 | std::string FormatInstructionPointer(const uint8_t* begin); |
Elliott Hughes | 105afd2 | 2012-04-10 15:04:25 -0700 | [diff] [blame] | 90 | |
| 91 | private: |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 92 | DisassemblerOptions* disassembler_options_; |
Elliott Hughes | 105afd2 | 2012-04-10 15:04:25 -0700 | [diff] [blame] | 93 | DISALLOW_COPY_AND_ASSIGN(Disassembler); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 94 | }; |
| 95 | |
Nicolas Geoffray | 3c7bb98 | 2014-07-23 16:04:16 +0100 | [diff] [blame] | 96 | static inline bool HasBitSet(uint32_t value, uint32_t bit) { |
| 97 | return (value & (1 << bit)) != 0; |
| 98 | } |
| 99 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 100 | extern "C" |
| 101 | Disassembler* create_disassembler(InstructionSet instruction_set, DisassemblerOptions* options); |
| 102 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 103 | } // namespace art |
| 104 | |
Ian Rogers | 02ed4c0 | 2013-09-06 13:10:04 -0700 | [diff] [blame] | 105 | #endif // ART_DISASSEMBLER_DISASSEMBLER_H_ |