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) { |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 39 | if (instruction_set == kArm || instruction_set == kThumb2) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 40 | return new arm::DisassemblerArm(options); |
Serban Constantinescu | e6622be | 2014-02-27 15:36:47 +0000 | [diff] [blame] | 41 | } else if (instruction_set == kArm64) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 42 | return new arm64::DisassemblerArm64(options); |
Andreas Gampe | 372f3a3 | 2016-08-19 10:49:06 -0700 | [diff] [blame] | 43 | } else if (instruction_set == kMips || instruction_set == kMips64) { |
| 44 | return new mips::DisassemblerMips(options); |
Ian Rogers | 706a10e | 2012-03-23 17:00:55 -0700 | [diff] [blame] | 45 | } else if (instruction_set == kX86) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 46 | return new x86::DisassemblerX86(options, false); |
Ian Rogers | 38e1203 | 2014-03-14 14:06:14 -0700 | [diff] [blame] | 47 | } else if (instruction_set == kX86_64) { |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 48 | return new x86::DisassemblerX86(options, true); |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 49 | } else { |
Andreas Gampe | bda1d60 | 2016-08-29 17:43:45 -0700 | [diff] [blame] | 50 | UNIMPLEMENTED(FATAL) << static_cast<uint32_t>(instruction_set); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 51 | return nullptr; |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 52 | } |
| 53 | } |
| 54 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 55 | std::string Disassembler::FormatInstructionPointer(const uint8_t* begin) { |
| 56 | if (disassembler_options_->absolute_addresses_) { |
| 57 | return StringPrintf("%p", begin); |
| 58 | } else { |
| 59 | size_t offset = begin - disassembler_options_->base_address_; |
| 60 | return StringPrintf("0x%08zx", offset); |
| 61 | } |
| 62 | } |
| 63 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 64 | Disassembler* create_disassembler(InstructionSet instruction_set, DisassemblerOptions* options) { |
| 65 | return Disassembler::Create(instruction_set, options); |
| 66 | } |
| 67 | |
Ian Rogers | 3a5c1ce | 2012-02-29 10:06:46 -0800 | [diff] [blame] | 68 | } // namespace art |