| Yabin Cui | 3c8c213 | 2015-08-13 20:30:20 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 | // Add fake functions to build successfully on darwin. |
| Elliott Hughes | 66dd09e | 2015-12-04 14:00:57 -0800 | [diff] [blame] | 18 | #include <android-base/logging.h> |
| Yabin Cui | 3c8c213 | 2015-08-13 20:30:20 -0700 | [diff] [blame] | 19 | |
| Yabin Cui | 516a87c | 2018-03-26 17:34:00 -0700 | [diff] [blame] | 20 | #include "read_dex_file.h" |
| Yabin Cui | 3c8c213 | 2015-08-13 20:30:20 -0700 | [diff] [blame] | 21 | #include "environment.h" |
| Yabin Cui | 0338145 | 2017-12-13 11:31:53 -0800 | [diff] [blame] | 22 | #include "OfflineUnwinder.h" |
| Yabin Cui | 3c8c213 | 2015-08-13 20:30:20 -0700 | [diff] [blame] | 23 | |
| Yabin Cui | 3c8c213 | 2015-08-13 20:30:20 -0700 | [diff] [blame] | 24 | bool GetKernelBuildId(BuildId*) { |
| 25 | return false; |
| 26 | } |
| Yabin Cui | f897452 | 2017-07-17 14:36:37 -0700 | [diff] [blame] | 27 | |
| 28 | bool CanRecordRawData() { |
| 29 | return false; |
| 30 | } |
| Yabin Cui | 516a87c | 2018-03-26 17:34:00 -0700 | [diff] [blame] | 31 | |
| Yabin Cui | 2a53ff3 | 2018-05-21 17:37:00 -0700 | [diff] [blame] | 32 | bool ReadSymbolsFromDexFileInMemory(void*, uint64_t, const std::vector<uint64_t>&, |
| 33 | std::vector<DexFileSymbol>*) { |
| 34 | return true; |
| 35 | } |
| 36 | |
| Yabin Cui | 516a87c | 2018-03-26 17:34:00 -0700 | [diff] [blame] | 37 | bool ReadSymbolsFromDexFile(const std::string&, const std::vector<uint64_t>&, |
| 38 | std::vector<DexFileSymbol>*) { |
| 39 | return true; |
| 40 | } |
| Yabin Cui | 5ac7a25 | 2019-07-18 10:43:32 -0700 | [diff] [blame^] | 41 | |
| 42 | namespace simpleperf { |
| 43 | |
| 44 | class DummyOfflineUnwinder : public OfflineUnwinder { |
| 45 | public: |
| 46 | bool UnwindCallChain(const ThreadEntry&, const RegSet&, const char*, size_t, |
| 47 | std::vector<uint64_t>*, std::vector<uint64_t>*) override { |
| 48 | return false; |
| 49 | } |
| 50 | }; |
| 51 | |
| 52 | std::unique_ptr<OfflineUnwinder> OfflineUnwinder::Create(bool) { |
| 53 | return std::unique_ptr<OfflineUnwinder>(new DummyOfflineUnwinder); |
| 54 | } |
| 55 | |
| 56 | } // namespace simpleperf |