blob: 1ef456cefd4f0b4e20857f407e046663897116e2 [file] [log] [blame]
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001/*
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 Rogers02ed4c02013-09-06 13:10:04 -070017#ifndef ART_DISASSEMBLER_DISASSEMBLER_H_
18#define ART_DISASSEMBLER_DISASSEMBLER_H_
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080019
Elliott Hughes0f3c5532012-03-30 14:51:51 -070020#include <stdint.h>
21
22#include <iosfwd>
23
Andreas Gampebda1d602016-08-29 17:43:45 -070024#include "android-base/macros.h"
25
Ian Rogersd582fa42014-11-05 23:46:43 -080026#include "arch/instruction_set.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080027
28namespace art {
29
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070030class DisassemblerOptions {
31 public:
Andreas Gampe372f3a32016-08-19 10:49:06 -070032 using ThreadOffsetNameFunction = void (*)(std::ostream& os, uint32_t offset);
33
34 ThreadOffsetNameFunction thread_offset_name_function_;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070035
Aart Bikd3059e72016-05-11 10:30:47 -070036 // Base address for calculating relative code offsets when absolute_addresses_ is false.
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070037 const uint8_t* const base_address_;
38
Aart Bikd3059e72016-05-11 10:30:47 -070039 // End address (exclusive);
40 const uint8_t* const end_address_;
41
Andreas Gampe372f3a32016-08-19 10:49:06 -070042 // Should the disassembler print absolute or relative addresses.
43 const bool absolute_addresses_;
44
Alexandre Ramesa37d9252014-10-27 11:28:14 +000045 // If set, the disassembler is allowed to look at load targets in literal
46 // pools.
47 const bool can_read_literals_;
48
Aart Bikd3059e72016-05-11 10:30:47 -070049 DisassemblerOptions(bool absolute_addresses,
50 const uint8_t* base_address,
51 const uint8_t* end_address,
Andreas Gampe372f3a32016-08-19 10:49:06 -070052 bool can_read_literals,
53 ThreadOffsetNameFunction fn)
54 : thread_offset_name_function_(fn),
Aart Bikd3059e72016-05-11 10:30:47 -070055 base_address_(base_address),
56 end_address_(end_address),
Andreas Gampe372f3a32016-08-19 10:49:06 -070057 absolute_addresses_(absolute_addresses),
Alexandre Ramesa37d9252014-10-27 11:28:14 +000058 can_read_literals_(can_read_literals) {}
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070059
60 private:
61 DISALLOW_COPY_AND_ASSIGN(DisassemblerOptions);
62};
63
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080064class Disassembler {
65 public:
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070066 // Creates a Disassembler for the given InstructionSet with the
67 // non-null DisassemblerOptions which become owned by the
68 // Disassembler.
69 static Disassembler* Create(InstructionSet instruction_set, DisassemblerOptions* options);
70
71 virtual ~Disassembler() {
72 delete disassembler_options_;
73 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080074
Ian Rogersb23a7722012-10-09 16:54:26 -070075 // Dump a single instruction returning the length of that instruction.
76 virtual size_t Dump(std::ostream& os, const uint8_t* begin) = 0;
77 // Dump instructions within a range.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080078 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) = 0;
Elliott Hughes105afd22012-04-10 15:04:25 -070079
Alexandre Rameseb7b7392015-06-19 14:47:01 +010080 const DisassemblerOptions* GetDisassemblerOptions() const {
81 return disassembler_options_;
82 }
83
Elliott Hughes105afd22012-04-10 15:04:25 -070084 protected:
Andreas Gampebda1d602016-08-29 17:43:45 -070085 explicit Disassembler(DisassemblerOptions* disassembler_options);
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070086
87 std::string FormatInstructionPointer(const uint8_t* begin);
Elliott Hughes105afd22012-04-10 15:04:25 -070088
89 private:
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070090 DisassemblerOptions* disassembler_options_;
Elliott Hughes105afd22012-04-10 15:04:25 -070091 DISALLOW_COPY_AND_ASSIGN(Disassembler);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080092};
93
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010094static inline bool HasBitSet(uint32_t value, uint32_t bit) {
95 return (value & (1 << bit)) != 0;
96}
97
Alexandre Rameseb7b7392015-06-19 14:47:01 +010098extern "C"
99Disassembler* create_disassembler(InstructionSet instruction_set, DisassemblerOptions* options);
100
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800101} // namespace art
102
Ian Rogers02ed4c02013-09-06 13:10:04 -0700103#endif // ART_DISASSEMBLER_DISASSEMBLER_H_