blob: 487f43315a4e5364eed18a403376f096f093bd43 [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
Elliott Hughes76160052012-12-12 16:31:20 -080024#include "base/macros.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070025#include "instruction_set.h"
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080026
27namespace art {
28
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070029class DisassemblerOptions {
30 public:
31 // Should the disassembler print absolute or relative addresses.
32 const bool absolute_addresses_;
33
34 // Base addess for calculating relative code offsets when absolute_addresses_ is false.
35 const uint8_t* const base_address_;
36
37 DisassemblerOptions(bool absolute_addresses, const uint8_t* base_address)
38 : absolute_addresses_(absolute_addresses), base_address_(base_address) {}
39
40 private:
41 DISALLOW_COPY_AND_ASSIGN(DisassemblerOptions);
42};
43
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080044class Disassembler {
45 public:
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070046 // Creates a Disassembler for the given InstructionSet with the
47 // non-null DisassemblerOptions which become owned by the
48 // Disassembler.
49 static Disassembler* Create(InstructionSet instruction_set, DisassemblerOptions* options);
50
51 virtual ~Disassembler() {
52 delete disassembler_options_;
53 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080054
Ian Rogersb23a7722012-10-09 16:54:26 -070055 // Dump a single instruction returning the length of that instruction.
56 virtual size_t Dump(std::ostream& os, const uint8_t* begin) = 0;
57 // Dump instructions within a range.
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080058 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) = 0;
Elliott Hughes105afd22012-04-10 15:04:25 -070059
60 protected:
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070061 explicit Disassembler(DisassemblerOptions* disassembler_options)
62 : disassembler_options_(disassembler_options) {
63 CHECK(disassembler_options_ != nullptr);
64 }
65
66 std::string FormatInstructionPointer(const uint8_t* begin);
Elliott Hughes105afd22012-04-10 15:04:25 -070067
68 private:
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -070069 DisassemblerOptions* disassembler_options_;
Elliott Hughes105afd22012-04-10 15:04:25 -070070 DISALLOW_COPY_AND_ASSIGN(Disassembler);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080071};
72
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010073static inline bool HasBitSet(uint32_t value, uint32_t bit) {
74 return (value & (1 << bit)) != 0;
75}
76
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080077} // namespace art
78
Ian Rogers02ed4c02013-09-06 13:10:04 -070079#endif // ART_DISASSEMBLER_DISASSEMBLER_H_