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 | |
| 17 | #include "disassembler.h" |
| 18 | |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 19 | #include <ostream> |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 20 | |
Andreas Gampe | bda1d60 | 2016-08-29 17:43:45 -0700 | [diff] [blame] | 21 | #include "android-base/logging.h" |
| 22 | #include "android-base/stringprintf.h" |
| 23 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 24 | #include "disassembler_arm.h" |
Serban Constantinescu | e6622be | 2014-02-27 15:36:47 +0000 | [diff] [blame] | 25 | #include "disassembler_arm64.h" |
Elliott Hughes | 60454e8 | 2012-04-25 12:56:03 -0700 | [diff] [blame] | 26 | #include "disassembler_mips.h" |
Ian Rogers | 706a10e | 2012-03-23 17:00:55 -0700 | [diff] [blame] | 27 | #include "disassembler_x86.h" |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 28 | |
Andreas Gampe | bda1d60 | 2016-08-29 17:43:45 -0700 | [diff] [blame] | 29 | using android::base::StringPrintf; |
| 30 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 31 | namespace art { |
| 32 | |
Andreas Gampe | bda1d60 | 2016-08-29 17:43:45 -0700 | [diff] [blame] | 33 | Disassembler::Disassembler(DisassemblerOptions* disassembler_options) |
| 34 | : disassembler_options_(disassembler_options) { |
| 35 | CHECK(disassembler_options_ != nullptr); |
| 36 | } |
| 37 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 38 | Disassembler* Disassembler::Create(InstructionSet instruction_set, DisassemblerOptions* options) { |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 39 | if (instruction_set == InstructionSet::kArm || instruction_set == InstructionSet::kThumb2) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 40 | return new arm::DisassemblerArm(options); |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 41 | } else if (instruction_set == InstructionSet::kArm64) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 42 | return new arm64::DisassemblerArm64(options); |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 43 | } else if (instruction_set == InstructionSet::kMips) { |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 44 | return new mips::DisassemblerMips(options, /* is_o32_abi= */ true); |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 45 | } else if (instruction_set == InstructionSet::kMips64) { |
Andreas Gampe | 9b031f7 | 2018-10-04 11:03:34 -0700 | [diff] [blame] | 46 | return new mips::DisassemblerMips(options, /* is_o32_abi= */ false); |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 47 | } else if (instruction_set == InstructionSet::kX86) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 48 | return new x86::DisassemblerX86(options, false); |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 49 | } else if (instruction_set == InstructionSet::kX86_64) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 50 | return new x86::DisassemblerX86(options, true); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 51 | } else { |
Andreas Gampe | bda1d60 | 2016-08-29 17:43:45 -0700 | [diff] [blame] | 52 | UNIMPLEMENTED(FATAL) << static_cast<uint32_t>(instruction_set); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 53 | return nullptr; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 54 | } |
| 55 | } |
| 56 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 57 | std::string Disassembler::FormatInstructionPointer(const uint8_t* begin) { |
| 58 | if (disassembler_options_->absolute_addresses_) { |
| 59 | return StringPrintf("%p", begin); |
| 60 | } else { |
| 61 | size_t offset = begin - disassembler_options_->base_address_; |
| 62 | return StringPrintf("0x%08zx", offset); |
| 63 | } |
| 64 | } |
| 65 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 66 | Disassembler* create_disassembler(InstructionSet instruction_set, DisassemblerOptions* options) { |
| 67 | return Disassembler::Create(instruction_set, options); |
| 68 | } |
| 69 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 70 | } // namespace art |