| 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 | 0338145 | 2017-12-13 11:31:53 -0800 | [diff] [blame] | 20 | #include "OfflineUnwinder.h" |
| ThiƩbaud Weksteen | 4848ee0 | 2020-10-23 16:06:59 +0200 | [diff] [blame] | 21 | #include "environment.h" |
| 22 | #include "read_dex_file.h" |
| Yabin Cui | 3c8c213 | 2015-08-13 20:30:20 -0700 | [diff] [blame] | 23 | |
| Yabin Cui | faa7b92 | 2021-01-11 17:35:57 -0800 | [diff] [blame] | 24 | namespace simpleperf { |
| 25 | |
| Yabin Cui | 3c8c213 | 2015-08-13 20:30:20 -0700 | [diff] [blame] | 26 | bool GetKernelBuildId(BuildId*) { |
| 27 | return false; |
| 28 | } |
| Yabin Cui | f897452 | 2017-07-17 14:36:37 -0700 | [diff] [blame] | 29 | |
| 30 | bool CanRecordRawData() { |
| 31 | return false; |
| 32 | } |
| Yabin Cui | 516a87c | 2018-03-26 17:34:00 -0700 | [diff] [blame] | 33 | |
| Yabin Cui | 2a53ff3 | 2018-05-21 17:37:00 -0700 | [diff] [blame] | 34 | bool ReadSymbolsFromDexFileInMemory(void*, uint64_t, const std::vector<uint64_t>&, |
| 35 | std::vector<DexFileSymbol>*) { |
| 36 | return true; |
| 37 | } |
| 38 | |
| Yabin Cui | 516a87c | 2018-03-26 17:34:00 -0700 | [diff] [blame] | 39 | bool ReadSymbolsFromDexFile(const std::string&, const std::vector<uint64_t>&, |
| 40 | std::vector<DexFileSymbol>*) { |
| 41 | return true; |
| 42 | } |
| Yabin Cui | 5ac7a25 | 2019-07-18 10:43:32 -0700 | [diff] [blame] | 43 | |
| Yabin Cui | a22efeb | 2020-01-29 13:27:33 -0800 | [diff] [blame] | 44 | const char* GetTraceFsDir() { |
| 45 | return nullptr; |
| 46 | } |
| 47 | |
| Yabin Cui | 17cffbb | 2020-07-28 17:11:39 -0700 | [diff] [blame] | 48 | class NoOpOfflineUnwinder : public OfflineUnwinder { |
| Yabin Cui | 5ac7a25 | 2019-07-18 10:43:32 -0700 | [diff] [blame] | 49 | public: |
| 50 | bool UnwindCallChain(const ThreadEntry&, const RegSet&, const char*, size_t, |
| 51 | std::vector<uint64_t>*, std::vector<uint64_t>*) override { |
| 52 | return false; |
| 53 | } |
| 54 | }; |
| 55 | |
| 56 | std::unique_ptr<OfflineUnwinder> OfflineUnwinder::Create(bool) { |
| Yabin Cui | 17cffbb | 2020-07-28 17:11:39 -0700 | [diff] [blame] | 57 | return std::unique_ptr<OfflineUnwinder>(new NoOpOfflineUnwinder); |
| Yabin Cui | 5ac7a25 | 2019-07-18 10:43:32 -0700 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | } // namespace simpleperf |