Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 1 | //===-- ReproducerInstrumentation.h -----------------------------*- C++ -*-===// |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 2 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 3 | // See https://llvm.org/LICENSE.txt for license information. |
| 4 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 5 | // |
| 6 | //===----------------------------------------------------------------------===// |
| 7 | |
Jonas Devlieghere | cdc514e | 2020-02-17 15:57:45 -0800 | [diff] [blame] | 8 | #ifndef LLDB_UTILITY_REPRODUCERINSTRUMENTATION_H |
| 9 | #define LLDB_UTILITY_REPRODUCERINSTRUMENTATION_H |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 10 | |
| 11 | #include "lldb/Utility/FileSpec.h" |
| 12 | #include "lldb/Utility/Log.h" |
| 13 | #include "lldb/Utility/Logging.h" |
| 14 | |
| 15 | #include "llvm/ADT/DenseMap.h" |
| 16 | #include "llvm/ADT/StringRef.h" |
| 17 | #include "llvm/Support/ErrorHandling.h" |
| 18 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 19 | #include <map> |
Jonas Devlieghere | 33e3b07 | 2020-12-07 20:31:07 -0800 | [diff] [blame] | 20 | #include <thread> |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 21 | #include <type_traits> |
| 22 | |
| 23 | template <typename T, |
| 24 | typename std::enable_if<std::is_fundamental<T>::value, int>::type = 0> |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 25 | inline void stringify_append(llvm::raw_string_ostream &ss, const T &t) { |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 26 | ss << t; |
| 27 | } |
| 28 | |
| 29 | template <typename T, typename std::enable_if<!std::is_fundamental<T>::value, |
| 30 | int>::type = 0> |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 31 | inline void stringify_append(llvm::raw_string_ostream &ss, const T &t) { |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 32 | ss << &t; |
| 33 | } |
| 34 | |
| 35 | template <typename T> |
Jonas Devlieghere | 9f6a308 | 2020-04-16 14:02:05 -0700 | [diff] [blame] | 36 | inline void stringify_append(llvm::raw_string_ostream &ss, T *t) { |
Jonas Devlieghere | 9eaf0ab | 2020-04-16 17:50:56 -0700 | [diff] [blame] | 37 | ss << reinterpret_cast<void *>(t); |
Jonas Devlieghere | 9f6a308 | 2020-04-16 14:02:05 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | template <typename T> |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 41 | inline void stringify_append(llvm::raw_string_ostream &ss, const T *t) { |
Jonas Devlieghere | 9eaf0ab | 2020-04-16 17:50:56 -0700 | [diff] [blame] | 42 | ss << reinterpret_cast<const void *>(t); |
Jonas Devlieghere | 7bc8356 | 2019-03-11 20:31:21 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Benjamin Kramer | 93110c2 | 2019-03-08 10:43:56 +0000 | [diff] [blame] | 45 | template <> |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 46 | inline void stringify_append<char>(llvm::raw_string_ostream &ss, |
| 47 | const char *t) { |
Jonas Devlieghere | 449ca01 | 2019-09-13 19:08:10 +0000 | [diff] [blame] | 48 | ss << '\"' << t << '\"'; |
Jonas Devlieghere | 4aba7bb | 2019-03-07 23:37:46 +0000 | [diff] [blame] | 49 | } |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 50 | |
Jonas Devlieghere | 620f5fa | 2020-01-28 14:47:29 -0800 | [diff] [blame] | 51 | template <> |
Jonas Devlieghere | e9326ed | 2020-01-28 15:14:40 -0800 | [diff] [blame] | 52 | inline void stringify_append<std::nullptr_t>(llvm::raw_string_ostream &ss, |
| 53 | const std::nullptr_t &t) { |
Jonas Devlieghere | 620f5fa | 2020-01-28 14:47:29 -0800 | [diff] [blame] | 54 | ss << "\"nullptr\""; |
| 55 | } |
| 56 | |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 57 | template <typename Head> |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 58 | inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head) { |
| 59 | stringify_append(ss, head); |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | template <typename Head, typename... Tail> |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 63 | inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head, |
| 64 | const Tail &... tail) { |
| 65 | stringify_append(ss, head); |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 66 | ss << ", "; |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 67 | stringify_helper(ss, tail...); |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 70 | template <typename... Ts> inline std::string stringify_args(const Ts &... ts) { |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 71 | std::string buffer; |
| 72 | llvm::raw_string_ostream ss(buffer); |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 73 | stringify_helper(ss, ts...); |
Jonas Devlieghere | 581af8b | 2019-03-07 22:47:13 +0000 | [diff] [blame] | 74 | return ss.str(); |
| 75 | } |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 76 | |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 77 | // Define LLDB_REPRO_INSTR_TRACE to trace to stderr instead of LLDB's log |
| 78 | // infrastructure. This is useful when you need to see traces before the logger |
| 79 | // is initialized or enabled. |
Jonas Devlieghere | 3c28c0b | 2019-03-06 01:00:36 +0000 | [diff] [blame] | 80 | // #define LLDB_REPRO_INSTR_TRACE |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 81 | |
Jonas Devlieghere | 33e3b07 | 2020-12-07 20:31:07 -0800 | [diff] [blame] | 82 | #ifdef LLDB_REPRO_INSTR_TRACE |
| 83 | inline llvm::raw_ostream &this_thread_id() { |
| 84 | size_t tid = std::hash<std::thread::id>{}(std::this_thread::get_id()); |
| 85 | return llvm::errs().write_hex(tid) << " :: "; |
| 86 | } |
| 87 | #endif |
| 88 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 89 | #define LLDB_REGISTER_CONSTRUCTOR(Class, Signature) \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 90 | R.Register<Class * Signature>(&construct<Class Signature>::record, "", \ |
| 91 | #Class, #Class, #Signature) |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 92 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 93 | #define LLDB_REGISTER_METHOD(Result, Class, Method, Signature) \ |
Michal Gorny | ae211ec | 2019-03-19 17:13:13 +0000 | [diff] [blame] | 94 | R.Register( \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 95 | &invoke<Result(Class::*) Signature>::method<(&Class::Method)>::record, \ |
Pavel Labath | 075e133 | 2019-03-11 15:00:11 +0000 | [diff] [blame] | 96 | #Result, #Class, #Method, #Signature) |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 97 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 98 | #define LLDB_REGISTER_METHOD_CONST(Result, Class, Method, Signature) \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 99 | R.Register(&invoke<Result(Class::*) \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 100 | Signature const>::method<(&Class::Method)>::record, \ |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 101 | #Result, #Class, #Method, #Signature) |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 102 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 103 | #define LLDB_REGISTER_STATIC_METHOD(Result, Class, Method, Signature) \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 104 | R.Register(&invoke<Result(*) Signature>::method<(&Class::Method)>::record, \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 105 | #Result, #Class, #Method, #Signature) |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 106 | |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 107 | #define LLDB_REGISTER_CHAR_PTR_METHOD_STATIC(Result, Class, Method) \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 108 | R.Register( \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 109 | &invoke<Result (*)(char *, size_t)>::method<(&Class::Method)>::record, \ |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 110 | &invoke_char_ptr<Result (*)(char *, \ |
| 111 | size_t)>::method<(&Class::Method)>::record, \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 112 | #Result, #Class, #Method, "(char*, size_t"); |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 113 | |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 114 | #define LLDB_REGISTER_CHAR_PTR_METHOD(Result, Class, Method) \ |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 115 | R.Register(&invoke<Result (Class::*)(char *, size_t)>::method<( \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 116 | &Class::Method)>::record, \ |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 117 | &invoke_char_ptr<Result (Class::*)(char *, size_t)>::method<( \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 118 | &Class::Method)>::record, \ |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 119 | #Result, #Class, #Method, "(char*, size_t"); |
| 120 | |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 121 | #define LLDB_REGISTER_CHAR_PTR_METHOD_CONST(Result, Class, Method) \ |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 122 | R.Register(&invoke<Result (Class::*)(char *, size_t) \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 123 | const>::method<(&Class::Method)>::record, \ |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 124 | &invoke_char_ptr<Result (Class::*)(char *, size_t) \ |
| 125 | const>::method<(&Class::Method)>::record, \ |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 126 | #Result, #Class, #Method, "(char*, size_t"); |
Jonas Devlieghere | 2f025bb | 2020-02-05 19:41:09 -0800 | [diff] [blame] | 127 | |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 128 | #define LLDB_CONSTRUCT_(T, Class, ...) \ |
| 129 | lldb_private::repro::Recorder _recorder(LLVM_PRETTY_FUNCTION); \ |
| 130 | lldb_private::repro::construct<T>::handle(LLDB_GET_INSTRUMENTATION_DATA(), \ |
| 131 | _recorder, Class, __VA_ARGS__); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 132 | |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 133 | #define LLDB_RECORD_CONSTRUCTOR(Class, Signature, ...) \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 134 | LLDB_CONSTRUCT_(Class Signature, this, __VA_ARGS__) |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 135 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 136 | #define LLDB_RECORD_CONSTRUCTOR_NO_ARGS(Class) \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 137 | LLDB_CONSTRUCT_(Class(), this, lldb_private::repro::EmptyArg()) |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 138 | |
| 139 | #define LLDB_RECORD_(T1, T2, ...) \ |
| 140 | lldb_private::repro::Recorder _recorder(LLVM_PRETTY_FUNCTION, \ |
| 141 | stringify_args(__VA_ARGS__)); \ |
Jonas Devlieghere | ddf8146 | 2020-02-04 16:21:31 -0800 | [diff] [blame] | 142 | if (lldb_private::repro::InstrumentationData _data = \ |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 143 | LLDB_GET_INSTRUMENTATION_DATA()) { \ |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 144 | if (lldb_private::repro::Serializer *_serializer = \ |
| 145 | _data.GetSerializer()) { \ |
| 146 | _recorder.Record(*_serializer, _data.GetRegistry(), \ |
| 147 | &lldb_private::repro::invoke<T1>::method<T2>::record, \ |
| 148 | __VA_ARGS__); \ |
| 149 | } else if (lldb_private::repro::Deserializer *_deserializer = \ |
| 150 | _data.GetDeserializer()) { \ |
| 151 | if (_recorder.ShouldCapture()) { \ |
| 152 | return lldb_private::repro::invoke<T1>::method<T2>::replay( \ |
| 153 | _recorder, *_deserializer, _data.GetRegistry()); \ |
| 154 | } \ |
| 155 | } \ |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | #define LLDB_RECORD_METHOD(Result, Class, Method, Signature, ...) \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 159 | LLDB_RECORD_(Result(Class::*) Signature, (&Class::Method), this, __VA_ARGS__) |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 160 | |
| 161 | #define LLDB_RECORD_METHOD_CONST(Result, Class, Method, Signature, ...) \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 162 | LLDB_RECORD_(Result(Class::*) Signature const, (&Class::Method), this, \ |
| 163 | __VA_ARGS__) |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 164 | |
| 165 | #define LLDB_RECORD_METHOD_NO_ARGS(Result, Class, Method) \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 166 | LLDB_RECORD_(Result (Class::*)(), (&Class::Method), this) |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 167 | |
| 168 | #define LLDB_RECORD_METHOD_CONST_NO_ARGS(Result, Class, Method) \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 169 | LLDB_RECORD_(Result (Class::*)() const, (&Class::Method), this) |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 170 | |
| 171 | #define LLDB_RECORD_STATIC_METHOD(Result, Class, Method, Signature, ...) \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 172 | LLDB_RECORD_(Result(*) Signature, (&Class::Method), __VA_ARGS__) |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 173 | |
| 174 | #define LLDB_RECORD_STATIC_METHOD_NO_ARGS(Result, Class, Method) \ |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 175 | LLDB_RECORD_(Result (*)(), (&Class::Method), lldb_private::repro::EmptyArg()) |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 176 | |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 177 | #define LLDB_RECORD_CHAR_PTR_(T1, T2, StrOut, ...) \ |
| 178 | lldb_private::repro::Recorder _recorder(LLVM_PRETTY_FUNCTION, \ |
| 179 | stringify_args(__VA_ARGS__)); \ |
| 180 | if (lldb_private::repro::InstrumentationData _data = \ |
| 181 | LLDB_GET_INSTRUMENTATION_DATA()) { \ |
| 182 | if (lldb_private::repro::Serializer *_serializer = \ |
| 183 | _data.GetSerializer()) { \ |
| 184 | _recorder.Record(*_serializer, _data.GetRegistry(), \ |
| 185 | &lldb_private::repro::invoke<T1>::method<(T2)>::record, \ |
| 186 | __VA_ARGS__); \ |
| 187 | } else if (lldb_private::repro::Deserializer *_deserializer = \ |
| 188 | _data.GetDeserializer()) { \ |
| 189 | if (_recorder.ShouldCapture()) { \ |
| 190 | return lldb_private::repro::invoke_char_ptr<T1>::method<T2>::replay( \ |
| 191 | _recorder, *_deserializer, _data.GetRegistry(), StrOut); \ |
| 192 | } \ |
| 193 | } \ |
| 194 | } |
| 195 | |
| 196 | #define LLDB_RECORD_CHAR_PTR_METHOD(Result, Class, Method, Signature, StrOut, \ |
| 197 | ...) \ |
| 198 | LLDB_RECORD_CHAR_PTR_(Result(Class::*) Signature, (&Class::Method), StrOut, \ |
| 199 | this, __VA_ARGS__) |
| 200 | |
| 201 | #define LLDB_RECORD_CHAR_PTR_METHOD_CONST(Result, Class, Method, Signature, \ |
| 202 | StrOut, ...) \ |
| 203 | LLDB_RECORD_CHAR_PTR_(Result(Class::*) Signature const, (&Class::Method), \ |
| 204 | StrOut, this, __VA_ARGS__) |
| 205 | |
| 206 | #define LLDB_RECORD_CHAR_PTR_STATIC_METHOD(Result, Class, Method, Signature, \ |
| 207 | StrOut, ...) \ |
| 208 | LLDB_RECORD_CHAR_PTR_(Result(*) Signature, (&Class::Method), StrOut, \ |
| 209 | __VA_ARGS__) |
| 210 | |
Jonas Devlieghere | ddf8146 | 2020-02-04 16:21:31 -0800 | [diff] [blame] | 211 | #define LLDB_RECORD_RESULT(Result) _recorder.RecordResult(Result, true); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 212 | |
Jonas Devlieghere | 84e571c | 2019-03-08 17:50:27 +0000 | [diff] [blame] | 213 | /// The LLDB_RECORD_DUMMY macro is special because it doesn't actually record |
| 214 | /// anything. It's used to track API boundaries when we cannot record for |
| 215 | /// technical reasons. |
| 216 | #define LLDB_RECORD_DUMMY(Result, Class, Method, Signature, ...) \ |
Jonas Devlieghere | e7f1067 | 2020-05-27 10:27:44 -0700 | [diff] [blame] | 217 | lldb_private::repro::Recorder _recorder; |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 218 | |
Jonas Devlieghere | b328dcb | 2019-10-08 19:17:42 +0000 | [diff] [blame] | 219 | #define LLDB_RECORD_DUMMY_NO_ARGS(Result, Class, Method) \ |
Jonas Devlieghere | e7f1067 | 2020-05-27 10:27:44 -0700 | [diff] [blame] | 220 | lldb_private::repro::Recorder _recorder; |
Jonas Devlieghere | 84e571c | 2019-03-08 17:50:27 +0000 | [diff] [blame] | 221 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 222 | namespace lldb_private { |
| 223 | namespace repro { |
| 224 | |
Jonas Devlieghere | 8401698 | 2020-01-22 13:22:58 -0800 | [diff] [blame] | 225 | template <class T> |
| 226 | struct is_trivially_serializable |
| 227 | : std::integral_constant<bool, std::is_fundamental<T>::value || |
| 228 | std::is_enum<T>::value> {}; |
| 229 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 230 | /// Mapping between serialized indices and their corresponding objects. |
| 231 | /// |
| 232 | /// This class is used during replay to map indices back to in-memory objects. |
| 233 | /// |
| 234 | /// When objects are constructed, they are added to this mapping using |
| 235 | /// AddObjectForIndex. |
| 236 | /// |
| 237 | /// When an object is passed to a function, its index is deserialized and |
| 238 | /// AddObjectForIndex returns the corresponding object. If there is no object |
| 239 | /// for the given index, a nullptr is returend. The latter is valid when custom |
| 240 | /// replay code is in place and the actual object is ignored. |
| 241 | class IndexToObject { |
| 242 | public: |
| 243 | /// Returns an object as a pointer for the given index or nullptr if not |
| 244 | /// present in the map. |
| 245 | template <typename T> T *GetObjectForIndex(unsigned idx) { |
| 246 | assert(idx != 0 && "Cannot get object for sentinel"); |
| 247 | void *object = GetObjectForIndexImpl(idx); |
| 248 | return static_cast<T *>(object); |
| 249 | } |
| 250 | |
| 251 | /// Adds a pointer to an object to the mapping for the given index. |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 252 | template <typename T> T *AddObjectForIndex(unsigned idx, T *object) { |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 253 | AddObjectForIndexImpl( |
| 254 | idx, static_cast<void *>( |
| 255 | const_cast<typename std::remove_const<T>::type *>(object))); |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 256 | return object; |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | /// Adds a reference to an object to the mapping for the given index. |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 260 | template <typename T> T &AddObjectForIndex(unsigned idx, T &object) { |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 261 | AddObjectForIndexImpl( |
| 262 | idx, static_cast<void *>( |
| 263 | const_cast<typename std::remove_const<T>::type *>(&object))); |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 264 | return object; |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 265 | } |
| 266 | |
Jonas Devlieghere | f78fcd6 | 2020-04-10 15:42:28 -0700 | [diff] [blame] | 267 | /// Get all objects sorted by their index. |
| 268 | std::vector<void *> GetAllObjects() const; |
| 269 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 270 | private: |
| 271 | /// Helper method that does the actual lookup. The void* result is later cast |
| 272 | /// by the caller. |
| 273 | void *GetObjectForIndexImpl(unsigned idx); |
| 274 | |
| 275 | /// Helper method that does the actual insertion. |
| 276 | void AddObjectForIndexImpl(unsigned idx, void *object); |
| 277 | |
| 278 | /// Keeps a mapping between indices and their corresponding object. |
| 279 | llvm::DenseMap<unsigned, void *> m_mapping; |
| 280 | }; |
| 281 | |
| 282 | /// We need to differentiate between pointers to fundamental and |
| 283 | /// non-fundamental types. See the corresponding Deserializer::Read method |
| 284 | /// for the reason why. |
| 285 | struct PointerTag {}; |
| 286 | struct ReferenceTag {}; |
| 287 | struct ValueTag {}; |
| 288 | struct FundamentalPointerTag {}; |
| 289 | struct FundamentalReferenceTag {}; |
| 290 | |
| 291 | /// Return the deserialization tag for the given type T. |
Lawrence D'Anna | 9eb1371 | 2019-10-09 21:50:49 +0000 | [diff] [blame] | 292 | template <class T> struct serializer_tag { |
Jonas Devlieghere | 12c185a | 2020-01-29 21:21:02 -0800 | [diff] [blame] | 293 | typedef typename std::conditional<std::is_trivially_copyable<T>::value, |
Jonas Devlieghere | f8c0fcd | 2020-02-04 13:18:12 -0800 | [diff] [blame] | 294 | ValueTag, ReferenceTag>::type type; |
Lawrence D'Anna | 9eb1371 | 2019-10-09 21:50:49 +0000 | [diff] [blame] | 295 | }; |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 296 | template <class T> struct serializer_tag<T *> { |
| 297 | typedef |
| 298 | typename std::conditional<std::is_fundamental<T>::value, |
| 299 | FundamentalPointerTag, PointerTag>::type type; |
| 300 | }; |
| 301 | template <class T> struct serializer_tag<T &> { |
| 302 | typedef typename std::conditional<std::is_fundamental<T>::value, |
| 303 | FundamentalReferenceTag, ReferenceTag>::type |
| 304 | type; |
| 305 | }; |
| 306 | |
| 307 | /// Deserializes data from a buffer. It is used to deserialize function indices |
| 308 | /// to replay, their arguments and return values. |
| 309 | /// |
| 310 | /// Fundamental types and strings are read by value. Objects are read by their |
| 311 | /// index, which get translated by the IndexToObject mapping maintained in |
| 312 | /// this class. |
| 313 | /// |
| 314 | /// Additional bookkeeping with regards to the IndexToObject is required to |
| 315 | /// deserialize objects. When a constructor is run or an object is returned by |
| 316 | /// value, we need to capture the object and add it to the index together with |
| 317 | /// its index. This is the job of HandleReplayResult(Void). |
| 318 | class Deserializer { |
| 319 | public: |
| 320 | Deserializer(llvm::StringRef buffer) : m_buffer(buffer) {} |
| 321 | |
| 322 | /// Returns true when the buffer has unread data. |
| 323 | bool HasData(unsigned size) { return size <= m_buffer.size(); } |
| 324 | |
| 325 | /// Deserialize and interpret value as T. |
| 326 | template <typename T> T Deserialize() { |
Jonas Devlieghere | 8e21d7b | 2020-01-28 13:23:36 -0800 | [diff] [blame] | 327 | T t = Read<T>(typename serializer_tag<T>::type()); |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 328 | #ifdef LLDB_REPRO_INSTR_TRACE |
Jonas Devlieghere | 8e21d7b | 2020-01-28 13:23:36 -0800 | [diff] [blame] | 329 | llvm::errs() << "Deserializing with " << LLVM_PRETTY_FUNCTION << " -> " |
| 330 | << stringify_args(t) << "\n"; |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 331 | #endif |
Jonas Devlieghere | 8e21d7b | 2020-01-28 13:23:36 -0800 | [diff] [blame] | 332 | return t; |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 335 | template <typename T> const T &HandleReplayResult(const T &t) { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 336 | CheckSequence(Deserialize<unsigned>()); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 337 | unsigned result = Deserialize<unsigned>(); |
Jonas Devlieghere | 8401698 | 2020-01-22 13:22:58 -0800 | [diff] [blame] | 338 | if (is_trivially_serializable<T>::value) |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 339 | return t; |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 340 | // We need to make a copy as the original object might go out of scope. |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 341 | return *m_index_to_object.AddObjectForIndex(result, new T(t)); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | /// Store the returned value in the index-to-object mapping. |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 345 | template <typename T> T &HandleReplayResult(T &t) { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 346 | CheckSequence(Deserialize<unsigned>()); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 347 | unsigned result = Deserialize<unsigned>(); |
Jonas Devlieghere | 8401698 | 2020-01-22 13:22:58 -0800 | [diff] [blame] | 348 | if (is_trivially_serializable<T>::value) |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 349 | return t; |
| 350 | // We need to make a copy as the original object might go out of scope. |
| 351 | return *m_index_to_object.AddObjectForIndex(result, new T(t)); |
| 352 | } |
| 353 | |
| 354 | /// Store the returned value in the index-to-object mapping. |
| 355 | template <typename T> T *HandleReplayResult(T *t) { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 356 | CheckSequence(Deserialize<unsigned>()); |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 357 | unsigned result = Deserialize<unsigned>(); |
| 358 | if (is_trivially_serializable<T>::value) |
| 359 | return t; |
| 360 | return m_index_to_object.AddObjectForIndex(result, t); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | /// All returned types are recorded, even when the function returns a void. |
| 364 | /// The latter requires special handling. |
| 365 | void HandleReplayResultVoid() { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 366 | CheckSequence(Deserialize<unsigned>()); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 367 | unsigned result = Deserialize<unsigned>(); |
| 368 | assert(result == 0); |
Jonas Devlieghere | 504be84 | 2019-03-06 00:52:48 +0000 | [diff] [blame] | 369 | (void)result; |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 370 | } |
| 371 | |
Jonas Devlieghere | f78fcd6 | 2020-04-10 15:42:28 -0700 | [diff] [blame] | 372 | std::vector<void *> GetAllObjects() const { |
| 373 | return m_index_to_object.GetAllObjects(); |
| 374 | } |
| 375 | |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 376 | void SetExpectedSequence(unsigned sequence) { |
| 377 | m_expected_sequence = sequence; |
| 378 | } |
| 379 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 380 | private: |
| 381 | template <typename T> T Read(ValueTag) { |
| 382 | assert(HasData(sizeof(T))); |
| 383 | T t; |
| 384 | std::memcpy(reinterpret_cast<char *>(&t), m_buffer.data(), sizeof(T)); |
| 385 | m_buffer = m_buffer.drop_front(sizeof(T)); |
| 386 | return t; |
| 387 | } |
| 388 | |
| 389 | template <typename T> T Read(PointerTag) { |
| 390 | typedef typename std::remove_pointer<T>::type UnderlyingT; |
| 391 | return m_index_to_object.template GetObjectForIndex<UnderlyingT>( |
| 392 | Deserialize<unsigned>()); |
| 393 | } |
| 394 | |
| 395 | template <typename T> T Read(ReferenceTag) { |
| 396 | typedef typename std::remove_reference<T>::type UnderlyingT; |
| 397 | // If this is a reference to a fundamental type we just read its value. |
| 398 | return *m_index_to_object.template GetObjectForIndex<UnderlyingT>( |
| 399 | Deserialize<unsigned>()); |
| 400 | } |
| 401 | |
| 402 | /// This method is used to parse references to fundamental types. Because |
| 403 | /// they're not recorded in the object table we have serialized their value. |
| 404 | /// We read its value, allocate a copy on the heap, and return a pointer to |
| 405 | /// the copy. |
| 406 | template <typename T> T Read(FundamentalPointerTag) { |
| 407 | typedef typename std::remove_pointer<T>::type UnderlyingT; |
| 408 | return new UnderlyingT(Deserialize<UnderlyingT>()); |
| 409 | } |
| 410 | |
| 411 | /// This method is used to parse references to fundamental types. Because |
| 412 | /// they're not recorded in the object table we have serialized their value. |
| 413 | /// We read its value, allocate a copy on the heap, and return a reference to |
| 414 | /// the copy. |
| 415 | template <typename T> T Read(FundamentalReferenceTag) { |
| 416 | // If this is a reference to a fundamental type we just read its value. |
| 417 | typedef typename std::remove_reference<T>::type UnderlyingT; |
| 418 | return *(new UnderlyingT(Deserialize<UnderlyingT>())); |
| 419 | } |
| 420 | |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 421 | /// Verify that the given sequence number matches what we expect. |
| 422 | void CheckSequence(unsigned sequence); |
| 423 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 424 | /// Mapping of indices to objects. |
| 425 | IndexToObject m_index_to_object; |
| 426 | |
| 427 | /// Buffer containing the serialized data. |
| 428 | llvm::StringRef m_buffer; |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 429 | |
| 430 | /// The result's expected sequence number. |
| 431 | llvm::Optional<unsigned> m_expected_sequence; |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 432 | }; |
| 433 | |
| 434 | /// Partial specialization for C-style strings. We read the string value |
| 435 | /// instead of treating it as pointer. |
| 436 | template <> const char *Deserializer::Deserialize<const char *>(); |
Jonas Devlieghere | 91aa67b | 2020-01-29 14:06:20 -0800 | [diff] [blame] | 437 | template <> const char **Deserializer::Deserialize<const char **>(); |
Jonas Devlieghere | a5f1fff | 2020-02-04 15:09:53 -0800 | [diff] [blame] | 438 | template <> const uint8_t *Deserializer::Deserialize<const uint8_t *>(); |
Jonas Devlieghere | b453caf | 2020-02-04 19:00:10 -0800 | [diff] [blame] | 439 | template <> const void *Deserializer::Deserialize<const void *>(); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 440 | template <> char *Deserializer::Deserialize<char *>(); |
Jonas Devlieghere | b453caf | 2020-02-04 19:00:10 -0800 | [diff] [blame] | 441 | template <> void *Deserializer::Deserialize<void *>(); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 442 | |
| 443 | /// Helpers to auto-synthesize function replay code. It deserializes the replay |
| 444 | /// function's arguments one by one and finally calls the corresponding |
| 445 | /// function. |
| 446 | template <typename... Remaining> struct DeserializationHelper; |
| 447 | |
| 448 | template <typename Head, typename... Tail> |
| 449 | struct DeserializationHelper<Head, Tail...> { |
| 450 | template <typename Result, typename... Deserialized> struct deserialized { |
| 451 | static Result doit(Deserializer &deserializer, |
| 452 | Result (*f)(Deserialized..., Head, Tail...), |
| 453 | Deserialized... d) { |
| 454 | return DeserializationHelper<Tail...>:: |
| 455 | template deserialized<Result, Deserialized..., Head>::doit( |
| 456 | deserializer, f, d..., deserializer.Deserialize<Head>()); |
| 457 | } |
| 458 | }; |
| 459 | }; |
| 460 | |
| 461 | template <> struct DeserializationHelper<> { |
| 462 | template <typename Result, typename... Deserialized> struct deserialized { |
| 463 | static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...), |
| 464 | Deserialized... d) { |
| 465 | return f(d...); |
| 466 | } |
| 467 | }; |
| 468 | }; |
| 469 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 470 | /// The replayer interface. |
| 471 | struct Replayer { |
Jonas Devlieghere | fd2433e | 2021-07-02 11:27:37 -0700 | [diff] [blame] | 472 | virtual ~Replayer() = default; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 473 | virtual void operator()(Deserializer &deserializer) const = 0; |
| 474 | }; |
| 475 | |
| 476 | /// The default replayer deserializes the arguments and calls the function. |
| 477 | template <typename Signature> struct DefaultReplayer; |
| 478 | template <typename Result, typename... Args> |
| 479 | struct DefaultReplayer<Result(Args...)> : public Replayer { |
| 480 | DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {} |
| 481 | |
| 482 | void operator()(Deserializer &deserializer) const override { |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 483 | Replay(deserializer); |
| 484 | } |
| 485 | |
| 486 | Result Replay(Deserializer &deserializer) const { |
| 487 | return deserializer.HandleReplayResult( |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 488 | DeserializationHelper<Args...>::template deserialized<Result>::doit( |
| 489 | deserializer, f)); |
| 490 | } |
| 491 | |
| 492 | Result (*f)(Args...); |
| 493 | }; |
| 494 | |
| 495 | /// Partial specialization for function returning a void type. It ignores the |
| 496 | /// (absent) return value. |
| 497 | template <typename... Args> |
| 498 | struct DefaultReplayer<void(Args...)> : public Replayer { |
| 499 | DefaultReplayer(void (*f)(Args...)) : Replayer(), f(f) {} |
| 500 | |
| 501 | void operator()(Deserializer &deserializer) const override { |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 502 | Replay(deserializer); |
| 503 | } |
| 504 | |
| 505 | void Replay(Deserializer &deserializer) const { |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 506 | DeserializationHelper<Args...>::template deserialized<void>::doit( |
| 507 | deserializer, f); |
| 508 | deserializer.HandleReplayResultVoid(); |
| 509 | } |
| 510 | |
| 511 | void (*f)(Args...); |
| 512 | }; |
| 513 | |
| 514 | /// The registry contains a unique mapping between functions and their ID. The |
| 515 | /// IDs can be serialized and deserialized to replay a function. Functions need |
| 516 | /// to be registered with the registry for this to work. |
| 517 | class Registry { |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 518 | private: |
| 519 | struct SignatureStr { |
| 520 | SignatureStr(llvm::StringRef result = {}, llvm::StringRef scope = {}, |
| 521 | llvm::StringRef name = {}, llvm::StringRef args = {}) |
| 522 | : result(result), scope(scope), name(name), args(args) {} |
| 523 | |
| 524 | std::string ToString() const; |
| 525 | |
| 526 | llvm::StringRef result; |
| 527 | llvm::StringRef scope; |
| 528 | llvm::StringRef name; |
| 529 | llvm::StringRef args; |
| 530 | }; |
| 531 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 532 | public: |
| 533 | Registry() = default; |
| 534 | virtual ~Registry() = default; |
| 535 | |
| 536 | /// Register a default replayer for a function. |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 537 | template <typename Signature> |
| 538 | void Register(Signature *f, llvm::StringRef result = {}, |
| 539 | llvm::StringRef scope = {}, llvm::StringRef name = {}, |
| 540 | llvm::StringRef args = {}) { |
Jonas Devlieghere | a8f3ae7 | 2019-08-14 22:19:23 +0000 | [diff] [blame] | 541 | DoRegister(uintptr_t(f), std::make_unique<DefaultReplayer<Signature>>(f), |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 542 | SignatureStr(result, scope, name, args)); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | /// Register a replayer that invokes a custom function with the same |
| 546 | /// signature as the replayed function. |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 547 | template <typename Signature> |
| 548 | void Register(Signature *f, Signature *g, llvm::StringRef result = {}, |
| 549 | llvm::StringRef scope = {}, llvm::StringRef name = {}, |
| 550 | llvm::StringRef args = {}) { |
Jonas Devlieghere | a8f3ae7 | 2019-08-14 22:19:23 +0000 | [diff] [blame] | 551 | DoRegister(uintptr_t(f), std::make_unique<DefaultReplayer<Signature>>(g), |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 552 | SignatureStr(result, scope, name, args)); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 553 | } |
| 554 | |
| 555 | /// Replay functions from a file. |
| 556 | bool Replay(const FileSpec &file); |
| 557 | |
| 558 | /// Replay functions from a buffer. |
| 559 | bool Replay(llvm::StringRef buffer); |
| 560 | |
Jonas Devlieghere | f78fcd6 | 2020-04-10 15:42:28 -0700 | [diff] [blame] | 561 | /// Replay functions from a deserializer. |
| 562 | bool Replay(Deserializer &deserializer); |
| 563 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 564 | /// Returns the ID for a given function address. |
| 565 | unsigned GetID(uintptr_t addr); |
| 566 | |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 567 | /// Get the replayer matching the given ID. |
| 568 | Replayer *GetReplayer(unsigned id); |
| 569 | |
| 570 | std::string GetSignature(unsigned id); |
| 571 | |
| 572 | void CheckID(unsigned expected, unsigned actual); |
| 573 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 574 | protected: |
| 575 | /// Register the given replayer for a function (and the ID mapping). |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 576 | void DoRegister(uintptr_t RunID, std::unique_ptr<Replayer> replayer, |
| 577 | SignatureStr signature); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 578 | |
| 579 | private: |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 580 | /// Mapping of function addresses to replayers and their ID. |
| 581 | std::map<uintptr_t, std::pair<std::unique_ptr<Replayer>, unsigned>> |
| 582 | m_replayers; |
| 583 | |
| 584 | /// Mapping of IDs to replayer instances. |
Jonas Devlieghere | 8c436ce | 2019-02-27 16:40:08 +0000 | [diff] [blame] | 585 | std::map<unsigned, std::pair<Replayer *, SignatureStr>> m_ids; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 586 | }; |
| 587 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 588 | /// Maps an object to an index for serialization. Indices are unique and |
| 589 | /// incremented for every new object. |
| 590 | /// |
| 591 | /// Indices start at 1 in order to differentiate with an invalid index (0) in |
| 592 | /// the serialized buffer. |
| 593 | class ObjectToIndex { |
| 594 | public: |
| 595 | template <typename T> unsigned GetIndexForObject(T *t) { |
Pavel Labath | 76016ba | 2019-02-07 13:51:38 +0000 | [diff] [blame] | 596 | return GetIndexForObjectImpl(static_cast<const void *>(t)); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | private: |
Pavel Labath | 76016ba | 2019-02-07 13:51:38 +0000 | [diff] [blame] | 600 | unsigned GetIndexForObjectImpl(const void *object); |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 601 | |
Pavel Labath | 76016ba | 2019-02-07 13:51:38 +0000 | [diff] [blame] | 602 | llvm::DenseMap<const void *, unsigned> m_mapping; |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 603 | }; |
| 604 | |
| 605 | /// Serializes functions, their arguments and their return type to a stream. |
| 606 | class Serializer { |
| 607 | public: |
| 608 | Serializer(llvm::raw_ostream &stream = llvm::outs()) : m_stream(stream) {} |
| 609 | |
| 610 | /// Recursively serialize all the given arguments. |
| 611 | template <typename Head, typename... Tail> |
| 612 | void SerializeAll(const Head &head, const Tail &... tail) { |
| 613 | Serialize(head); |
| 614 | SerializeAll(tail...); |
| 615 | } |
| 616 | |
Jonas Devlieghere | 449ca01 | 2019-09-13 19:08:10 +0000 | [diff] [blame] | 617 | void SerializeAll() { m_stream.flush(); } |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 618 | |
| 619 | private: |
| 620 | /// Serialize pointers. We need to differentiate between pointers to |
| 621 | /// fundamental types (in which case we serialize its value) and pointer to |
| 622 | /// objects (in which case we serialize their index). |
| 623 | template <typename T> void Serialize(T *t) { |
Jonas Devlieghere | 7ac9443 | 2020-02-04 16:10:10 -0800 | [diff] [blame] | 624 | #ifdef LLDB_REPRO_INSTR_TRACE |
Jonas Devlieghere | 33e3b07 | 2020-12-07 20:31:07 -0800 | [diff] [blame] | 625 | this_thread_id() << "Serializing with " << LLVM_PRETTY_FUNCTION << " -> " |
| 626 | << stringify_args(t) << "\n"; |
Jonas Devlieghere | 7ac9443 | 2020-02-04 16:10:10 -0800 | [diff] [blame] | 627 | #endif |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 628 | if (std::is_fundamental<T>::value) { |
| 629 | Serialize(*t); |
| 630 | } else { |
| 631 | unsigned idx = m_tracker.GetIndexForObject(t); |
| 632 | Serialize(idx); |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | /// Serialize references. We need to differentiate between references to |
| 637 | /// fundamental types (in which case we serialize its value) and references |
| 638 | /// to objects (in which case we serialize their index). |
| 639 | template <typename T> void Serialize(T &t) { |
Jonas Devlieghere | 7ac9443 | 2020-02-04 16:10:10 -0800 | [diff] [blame] | 640 | #ifdef LLDB_REPRO_INSTR_TRACE |
Jonas Devlieghere | 33e3b07 | 2020-12-07 20:31:07 -0800 | [diff] [blame] | 641 | this_thread_id() << "Serializing with " << LLVM_PRETTY_FUNCTION << " -> " |
| 642 | << stringify_args(t) << "\n"; |
Jonas Devlieghere | 7ac9443 | 2020-02-04 16:10:10 -0800 | [diff] [blame] | 643 | #endif |
Jonas Devlieghere | 8401698 | 2020-01-22 13:22:58 -0800 | [diff] [blame] | 644 | if (is_trivially_serializable<T>::value) { |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 645 | m_stream.write(reinterpret_cast<const char *>(&t), sizeof(T)); |
| 646 | } else { |
| 647 | unsigned idx = m_tracker.GetIndexForObject(&t); |
| 648 | Serialize(idx); |
| 649 | } |
| 650 | } |
| 651 | |
Jonas Devlieghere | b453caf | 2020-02-04 19:00:10 -0800 | [diff] [blame] | 652 | void Serialize(const void *v) { |
| 653 | // FIXME: Support void* |
| 654 | } |
| 655 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 656 | void Serialize(void *v) { |
| 657 | // FIXME: Support void* |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 658 | } |
| 659 | |
| 660 | void Serialize(const char *t) { |
Jonas Devlieghere | 7ac9443 | 2020-02-04 16:10:10 -0800 | [diff] [blame] | 661 | #ifdef LLDB_REPRO_INSTR_TRACE |
Jonas Devlieghere | 33e3b07 | 2020-12-07 20:31:07 -0800 | [diff] [blame] | 662 | this_thread_id() << "Serializing with " << LLVM_PRETTY_FUNCTION << " -> " |
| 663 | << stringify_args(t) << "\n"; |
Jonas Devlieghere | 7ac9443 | 2020-02-04 16:10:10 -0800 | [diff] [blame] | 664 | #endif |
Jonas Devlieghere | c62ffb1 | 2020-01-31 16:17:28 -0800 | [diff] [blame] | 665 | const size_t size = t ? strlen(t) : std::numeric_limits<size_t>::max(); |
| 666 | Serialize(size); |
| 667 | if (t) { |
| 668 | m_stream << t; |
| 669 | m_stream.write(0x0); |
| 670 | } |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 671 | } |
| 672 | |
Jonas Devlieghere | 91aa67b | 2020-01-29 14:06:20 -0800 | [diff] [blame] | 673 | void Serialize(const char **t) { |
Jonas Devlieghere | 446e4e4 | 2020-01-29 16:32:41 -0800 | [diff] [blame] | 674 | size_t size = 0; |
| 675 | if (!t) { |
| 676 | Serialize(size); |
| 677 | return; |
| 678 | } |
| 679 | |
Jonas Devlieghere | 91aa67b | 2020-01-29 14:06:20 -0800 | [diff] [blame] | 680 | // Compute the size of the array. |
| 681 | const char *const *temp = t; |
Jonas Devlieghere | 91aa67b | 2020-01-29 14:06:20 -0800 | [diff] [blame] | 682 | while (*temp++) |
| 683 | size++; |
| 684 | Serialize(size); |
| 685 | |
| 686 | // Serialize the content of the array. |
Jonas Devlieghere | c62ffb1 | 2020-01-31 16:17:28 -0800 | [diff] [blame] | 687 | while (*t) |
| 688 | Serialize(*t++); |
Jonas Devlieghere | 91aa67b | 2020-01-29 14:06:20 -0800 | [diff] [blame] | 689 | } |
| 690 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 691 | /// Serialization stream. |
| 692 | llvm::raw_ostream &m_stream; |
| 693 | |
| 694 | /// Mapping of objects to indices. |
| 695 | ObjectToIndex m_tracker; |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 696 | }; // namespace repro |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 697 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 698 | class InstrumentationData { |
| 699 | public: |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 700 | Serializer *GetSerializer() { return m_serializer; } |
| 701 | Deserializer *GetDeserializer() { return m_deserializer; } |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 702 | Registry &GetRegistry() { return *m_registry; } |
| 703 | |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 704 | operator bool() { |
| 705 | return (m_serializer != nullptr || m_deserializer != nullptr) && |
| 706 | m_registry != nullptr; |
| 707 | } |
| 708 | |
| 709 | static void Initialize(Serializer &serializer, Registry ®istry); |
| 710 | static void Initialize(Deserializer &serializer, Registry ®istry); |
| 711 | static InstrumentationData &Instance(); |
| 712 | |
| 713 | protected: |
| 714 | friend llvm::optional_detail::OptionalStorage<InstrumentationData, true>; |
| 715 | friend llvm::Optional<InstrumentationData>; |
| 716 | |
Jonas Devlieghere | fd2433e | 2021-07-02 11:27:37 -0700 | [diff] [blame] | 717 | InstrumentationData() = default; |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 718 | InstrumentationData(Serializer &serializer, Registry ®istry) |
| 719 | : m_serializer(&serializer), m_deserializer(nullptr), |
| 720 | m_registry(®istry) {} |
| 721 | InstrumentationData(Deserializer &deserializer, Registry ®istry) |
| 722 | : m_serializer(nullptr), m_deserializer(&deserializer), |
| 723 | m_registry(®istry) {} |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 724 | |
| 725 | private: |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 726 | static llvm::Optional<InstrumentationData> &InstanceImpl(); |
| 727 | |
Jonas Devlieghere | 9494c51 | 2021-06-09 09:25:29 -0700 | [diff] [blame] | 728 | Serializer *m_serializer = nullptr; |
| 729 | Deserializer *m_deserializer = nullptr; |
| 730 | Registry *m_registry = nullptr; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 731 | }; |
| 732 | |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 733 | struct EmptyArg {}; |
| 734 | |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 735 | /// RAII object that records function invocations and their return value. |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 736 | /// |
| 737 | /// API calls are only captured when the API boundary is crossed. Once we're in |
| 738 | /// the API layer, and another API function is called, it doesn't need to be |
| 739 | /// recorded. |
| 740 | /// |
| 741 | /// When a call is recored, its result is always recorded as well, even if the |
| 742 | /// function returns a void. For functions that return by value, RecordResult |
| 743 | /// should be used. Otherwise a sentinel value (0) will be serialized. |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 744 | /// |
| 745 | /// Because of the functional overlap between logging and recording API calls, |
| 746 | /// this class is also used for logging. |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 747 | class Recorder { |
| 748 | public: |
Jonas Devlieghere | e7f1067 | 2020-05-27 10:27:44 -0700 | [diff] [blame] | 749 | Recorder(); |
| 750 | Recorder(llvm::StringRef pretty_func, std::string &&pretty_args = {}); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 751 | ~Recorder(); |
| 752 | |
| 753 | /// Records a single function call. |
| 754 | template <typename Result, typename... FArgs, typename... RArgs> |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 755 | void Record(Serializer &serializer, Registry ®istry, Result (*f)(FArgs...), |
| 756 | const RArgs &... args) { |
| 757 | m_serializer = &serializer; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 758 | if (!ShouldCapture()) |
| 759 | return; |
| 760 | |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 761 | std::lock_guard<std::mutex> lock(g_mutex); |
| 762 | unsigned sequence = GetSequenceNumber(); |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 763 | unsigned id = registry.GetID(uintptr_t(f)); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 764 | |
Jonas Devlieghere | 7ac9443 | 2020-02-04 16:10:10 -0800 | [diff] [blame] | 765 | #ifdef LLDB_REPRO_INSTR_TRACE |
| 766 | Log(id); |
| 767 | #endif |
| 768 | |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 769 | serializer.SerializeAll(sequence); |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 770 | serializer.SerializeAll(id); |
| 771 | serializer.SerializeAll(args...); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 772 | |
| 773 | if (std::is_class<typename std::remove_pointer< |
| 774 | typename std::remove_reference<Result>::type>::type>::value) { |
| 775 | m_result_recorded = false; |
| 776 | } else { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 777 | serializer.SerializeAll(sequence); |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 778 | serializer.SerializeAll(0); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 779 | m_result_recorded = true; |
| 780 | } |
| 781 | } |
| 782 | |
| 783 | /// Records a single function call. |
| 784 | template <typename... Args> |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 785 | void Record(Serializer &serializer, Registry ®istry, void (*f)(Args...), |
| 786 | const Args &... args) { |
| 787 | m_serializer = &serializer; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 788 | if (!ShouldCapture()) |
| 789 | return; |
| 790 | |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 791 | std::lock_guard<std::mutex> lock(g_mutex); |
| 792 | unsigned sequence = GetSequenceNumber(); |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 793 | unsigned id = registry.GetID(uintptr_t(f)); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 794 | |
Jonas Devlieghere | 7ac9443 | 2020-02-04 16:10:10 -0800 | [diff] [blame] | 795 | #ifdef LLDB_REPRO_INSTR_TRACE |
| 796 | Log(id); |
| 797 | #endif |
| 798 | |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 799 | serializer.SerializeAll(sequence); |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 800 | serializer.SerializeAll(id); |
| 801 | serializer.SerializeAll(args...); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 802 | |
| 803 | // Record result. |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 804 | serializer.SerializeAll(sequence); |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 805 | serializer.SerializeAll(0); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 806 | m_result_recorded = true; |
| 807 | } |
| 808 | |
Jonas Devlieghere | a3237f8 | 2020-04-14 13:28:27 -0700 | [diff] [blame] | 809 | /// Specializations for the no-argument methods. These are passed an empty |
| 810 | /// dummy argument so the same variadic macro can be used. These methods |
| 811 | /// strip the arguments before forwarding them. |
| 812 | template <typename Result> |
| 813 | void Record(Serializer &serializer, Registry ®istry, Result (*f)(), |
| 814 | const EmptyArg &arg) { |
| 815 | Record(serializer, registry, f); |
| 816 | } |
| 817 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 818 | /// Record the result of a function call. |
Jonas Devlieghere | 05badc6 | 2020-01-30 11:20:15 -0800 | [diff] [blame] | 819 | template <typename Result> |
| 820 | Result RecordResult(Result &&r, bool update_boundary) { |
| 821 | // When recording the result from the LLDB_RECORD_RESULT macro, we need to |
| 822 | // update the boundary so we capture the copy constructor. However, when |
| 823 | // called to record the this pointer of the (copy) constructor, the |
| 824 | // boundary should not be toggled, because it is called from the |
| 825 | // LLDB_RECORD_CONSTRUCTOR macro, which might be followed by other API |
| 826 | // calls. |
| 827 | if (update_boundary) |
| 828 | UpdateBoundary(); |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 829 | if (m_serializer && ShouldCapture()) { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 830 | std::lock_guard<std::mutex> lock(g_mutex); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 831 | assert(!m_result_recorded); |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 832 | m_serializer->SerializeAll(GetSequenceNumber()); |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 833 | m_serializer->SerializeAll(r); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 834 | m_result_recorded = true; |
| 835 | } |
Jonas Devlieghere | 306809f | 2019-04-03 21:31:22 +0000 | [diff] [blame] | 836 | return std::forward<Result>(r); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 837 | } |
| 838 | |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 839 | template <typename Result, typename T> |
| 840 | Result Replay(Deserializer &deserializer, Registry ®istry, uintptr_t addr, |
| 841 | bool update_boundary) { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 842 | deserializer.SetExpectedSequence(deserializer.Deserialize<unsigned>()); |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 843 | unsigned actual_id = registry.GetID(addr); |
| 844 | unsigned id = deserializer.Deserialize<unsigned>(); |
| 845 | registry.CheckID(id, actual_id); |
| 846 | return ReplayResult<Result>( |
| 847 | static_cast<DefaultReplayer<T> *>(registry.GetReplayer(id)) |
| 848 | ->Replay(deserializer), |
| 849 | update_boundary); |
| 850 | } |
| 851 | |
| 852 | void Replay(Deserializer &deserializer, Registry ®istry, uintptr_t addr) { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 853 | deserializer.SetExpectedSequence(deserializer.Deserialize<unsigned>()); |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 854 | unsigned actual_id = registry.GetID(addr); |
| 855 | unsigned id = deserializer.Deserialize<unsigned>(); |
| 856 | registry.CheckID(id, actual_id); |
| 857 | registry.GetReplayer(id)->operator()(deserializer); |
| 858 | } |
| 859 | |
| 860 | template <typename Result> |
| 861 | Result ReplayResult(Result &&r, bool update_boundary) { |
| 862 | if (update_boundary) |
| 863 | UpdateBoundary(); |
| 864 | return std::forward<Result>(r); |
| 865 | } |
| 866 | |
| 867 | bool ShouldCapture() { return m_local_boundary; } |
| 868 | |
Jonas Devlieghere | 5861234 | 2020-12-07 20:59:13 -0800 | [diff] [blame] | 869 | /// Mark the current thread as a private thread and pretend that everything |
| 870 | /// on this thread is behind happening behind the API boundary. |
Martin Storsjö | 7106f58 | 2021-10-08 11:41:02 +0300 | [diff] [blame] | 871 | static void PrivateThread(); |
Jonas Devlieghere | 5861234 | 2020-12-07 20:59:13 -0800 | [diff] [blame] | 872 | |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 873 | private: |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 874 | static unsigned GetNextSequenceNumber() { return g_sequence++; } |
| 875 | unsigned GetSequenceNumber() const; |
| 876 | |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 877 | template <typename T> friend struct replay; |
Martin Storsjö | 7106f58 | 2021-10-08 11:41:02 +0300 | [diff] [blame] | 878 | void UpdateBoundary(); |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 879 | |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 880 | #ifdef LLDB_REPRO_INSTR_TRACE |
Jonas Devlieghere | 7ac9443 | 2020-02-04 16:10:10 -0800 | [diff] [blame] | 881 | void Log(unsigned id) { |
Jonas Devlieghere | 33e3b07 | 2020-12-07 20:31:07 -0800 | [diff] [blame] | 882 | this_thread_id() << "Recording " << id << ": " << m_pretty_func << " (" |
| 883 | << m_pretty_args << ")\n"; |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 884 | } |
| 885 | #endif |
| 886 | |
Jonas Devlieghere | 9494c51 | 2021-06-09 09:25:29 -0700 | [diff] [blame] | 887 | Serializer *m_serializer = nullptr; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 888 | |
| 889 | /// Pretty function for logging. |
| 890 | llvm::StringRef m_pretty_func; |
Jonas Devlieghere | db41fe1 | 2019-04-23 17:44:40 +0000 | [diff] [blame] | 891 | std::string m_pretty_args; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 892 | |
| 893 | /// Whether this function call was the one crossing the API boundary. |
Jonas Devlieghere | 9494c51 | 2021-06-09 09:25:29 -0700 | [diff] [blame] | 894 | bool m_local_boundary = false; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 895 | |
| 896 | /// Whether the return value was recorded explicitly. |
Jonas Devlieghere | 9494c51 | 2021-06-09 09:25:29 -0700 | [diff] [blame] | 897 | bool m_result_recorded = true; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 898 | |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 899 | /// The sequence number for this pair of function and result. |
| 900 | unsigned m_sequence; |
| 901 | |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 902 | /// Global mutex to protect concurrent access. |
| 903 | static std::mutex g_mutex; |
| 904 | |
| 905 | /// Unique, monotonically increasing sequence number. |
| 906 | static std::atomic<unsigned> g_sequence; |
Jonas Devlieghere | 58947cf | 2019-02-06 18:57:42 +0000 | [diff] [blame] | 907 | }; |
| 908 | |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 909 | /// To be used as the "Runtime ID" of a constructor. It also invokes the |
| 910 | /// constructor when called. |
| 911 | template <typename Signature> struct construct; |
| 912 | template <typename Class, typename... Args> struct construct<Class(Args...)> { |
| 913 | static Class *handle(lldb_private::repro::InstrumentationData data, |
| 914 | lldb_private::repro::Recorder &recorder, Class *c, |
| 915 | const EmptyArg &) { |
| 916 | return handle(data, recorder, c); |
| 917 | } |
| 918 | |
| 919 | static Class *handle(lldb_private::repro::InstrumentationData data, |
| 920 | lldb_private::repro::Recorder &recorder, Class *c, |
| 921 | Args... args) { |
| 922 | if (!data) |
| 923 | return nullptr; |
| 924 | |
| 925 | if (Serializer *serializer = data.GetSerializer()) { |
| 926 | recorder.Record(*serializer, data.GetRegistry(), &record, args...); |
| 927 | recorder.RecordResult(c, false); |
| 928 | } else if (Deserializer *deserializer = data.GetDeserializer()) { |
| 929 | if (recorder.ShouldCapture()) { |
| 930 | replay(recorder, *deserializer, data.GetRegistry()); |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | return nullptr; |
| 935 | } |
| 936 | |
| 937 | static Class *record(Args... args) { return new Class(args...); } |
| 938 | |
| 939 | static Class *replay(Recorder &recorder, Deserializer &deserializer, |
| 940 | Registry ®istry) { |
| 941 | return recorder.Replay<Class *, Class *(Args...)>( |
| 942 | deserializer, registry, uintptr_t(&record), false); |
| 943 | } |
| 944 | }; |
| 945 | |
| 946 | /// To be used as the "Runtime ID" of a member function. It also invokes the |
| 947 | /// member function when called. |
| 948 | template <typename Signature> struct invoke; |
| 949 | template <typename Result, typename Class, typename... Args> |
| 950 | struct invoke<Result (Class::*)(Args...)> { |
| 951 | template <Result (Class::*m)(Args...)> struct method { |
| 952 | static Result record(Class *c, Args... args) { return (c->*m)(args...); } |
| 953 | |
| 954 | static Result replay(Recorder &recorder, Deserializer &deserializer, |
| 955 | Registry ®istry) { |
| 956 | return recorder.Replay<Result, Result(Class *, Args...)>( |
| 957 | deserializer, registry, uintptr_t(&record), true); |
| 958 | } |
| 959 | }; |
| 960 | }; |
| 961 | |
| 962 | template <typename Class, typename... Args> |
| 963 | struct invoke<void (Class::*)(Args...)> { |
| 964 | template <void (Class::*m)(Args...)> struct method { |
| 965 | static void record(Class *c, Args... args) { (c->*m)(args...); } |
| 966 | static void replay(Recorder &recorder, Deserializer &deserializer, |
| 967 | Registry ®istry) { |
| 968 | recorder.Replay(deserializer, registry, uintptr_t(&record)); |
| 969 | } |
| 970 | }; |
| 971 | }; |
| 972 | |
| 973 | template <typename Result, typename Class, typename... Args> |
| 974 | struct invoke<Result (Class::*)(Args...) const> { |
| 975 | template <Result (Class::*m)(Args...) const> struct method { |
| 976 | static Result record(Class *c, Args... args) { return (c->*m)(args...); } |
| 977 | static Result replay(Recorder &recorder, Deserializer &deserializer, |
| 978 | Registry ®istry) { |
| 979 | return recorder.Replay<Result, Result(Class *, Args...)>( |
| 980 | deserializer, registry, uintptr_t(&record), true); |
| 981 | } |
| 982 | }; |
| 983 | }; |
| 984 | |
| 985 | template <typename Class, typename... Args> |
| 986 | struct invoke<void (Class::*)(Args...) const> { |
| 987 | template <void (Class::*m)(Args...) const> struct method { |
| 988 | static void record(Class *c, Args... args) { return (c->*m)(args...); } |
| 989 | static void replay(Recorder &recorder, Deserializer &deserializer, |
| 990 | Registry ®istry) { |
| 991 | recorder.Replay(deserializer, registry, uintptr_t(&record)); |
| 992 | } |
| 993 | }; |
| 994 | }; |
| 995 | |
| 996 | template <typename Signature> struct replay; |
| 997 | |
| 998 | template <typename Result, typename Class, typename... Args> |
| 999 | struct replay<Result (Class::*)(Args...)> { |
| 1000 | template <Result (Class::*m)(Args...)> struct method {}; |
| 1001 | }; |
| 1002 | |
| 1003 | template <typename Result, typename... Args> |
| 1004 | struct invoke<Result (*)(Args...)> { |
| 1005 | template <Result (*m)(Args...)> struct method { |
| 1006 | static Result record(Args... args) { return (*m)(args...); } |
| 1007 | static Result replay(Recorder &recorder, Deserializer &deserializer, |
| 1008 | Registry ®istry) { |
| 1009 | return recorder.Replay<Result, Result(Args...)>(deserializer, registry, |
| 1010 | uintptr_t(&record), true); |
| 1011 | } |
| 1012 | }; |
| 1013 | }; |
| 1014 | |
| 1015 | template <typename... Args> struct invoke<void (*)(Args...)> { |
| 1016 | template <void (*m)(Args...)> struct method { |
| 1017 | static void record(Args... args) { return (*m)(args...); } |
| 1018 | static void replay(Recorder &recorder, Deserializer &deserializer, |
| 1019 | Registry ®istry) { |
| 1020 | recorder.Replay(deserializer, registry, uintptr_t(&record)); |
| 1021 | } |
| 1022 | }; |
| 1023 | }; |
| 1024 | |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1025 | /// Special handling for functions returning strings as (char*, size_t). |
| 1026 | /// { |
| 1027 | |
| 1028 | /// For inline replay, we ignore the arguments and use the ones from the |
| 1029 | /// serializer instead. This doesn't work for methods that use a char* and a |
| 1030 | /// size to return a string. For one these functions have a custom replayer to |
| 1031 | /// prevent override the input buffer. Furthermore, the template-generated |
| 1032 | /// deserialization is not easy to hook into. |
| 1033 | /// |
| 1034 | /// The specializations below hand-implement the serialization logic for the |
| 1035 | /// inline replay. Instead of using the function from the registry, it uses the |
| 1036 | /// one passed into the macro. |
| 1037 | template <typename Signature> struct invoke_char_ptr; |
| 1038 | template <typename Result, typename Class, typename... Args> |
| 1039 | struct invoke_char_ptr<Result (Class::*)(Args...) const> { |
| 1040 | template <Result (Class::*m)(Args...) const> struct method { |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 1041 | static Result record(Class *c, char *s, size_t l) { |
Jonas Devlieghere | 2f025bb | 2020-02-05 19:41:09 -0800 | [diff] [blame] | 1042 | char *buffer = reinterpret_cast<char *>(calloc(l, sizeof(char))); |
| 1043 | return (c->*m)(buffer, l); |
| 1044 | } |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1045 | |
| 1046 | static Result replay(Recorder &recorder, Deserializer &deserializer, |
| 1047 | Registry ®istry, char *str) { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 1048 | deserializer.SetExpectedSequence(deserializer.Deserialize<unsigned>()); |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1049 | deserializer.Deserialize<unsigned>(); |
| 1050 | Class *c = deserializer.Deserialize<Class *>(); |
| 1051 | deserializer.Deserialize<const char *>(); |
| 1052 | size_t l = deserializer.Deserialize<size_t>(); |
| 1053 | return recorder.ReplayResult( |
| 1054 | std::move(deserializer.HandleReplayResult((c->*m)(str, l))), true); |
| 1055 | } |
Jonas Devlieghere | 2f025bb | 2020-02-05 19:41:09 -0800 | [diff] [blame] | 1056 | }; |
| 1057 | }; |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1058 | |
| 1059 | template <typename Signature> struct invoke_char_ptr; |
| 1060 | template <typename Result, typename Class, typename... Args> |
| 1061 | struct invoke_char_ptr<Result (Class::*)(Args...)> { |
| 1062 | template <Result (Class::*m)(Args...)> struct method { |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 1063 | static Result record(Class *c, char *s, size_t l) { |
Jonas Devlieghere | 2f025bb | 2020-02-05 19:41:09 -0800 | [diff] [blame] | 1064 | char *buffer = reinterpret_cast<char *>(calloc(l, sizeof(char))); |
| 1065 | return (c->*m)(buffer, l); |
| 1066 | } |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1067 | |
| 1068 | static Result replay(Recorder &recorder, Deserializer &deserializer, |
| 1069 | Registry ®istry, char *str) { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 1070 | deserializer.SetExpectedSequence(deserializer.Deserialize<unsigned>()); |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1071 | deserializer.Deserialize<unsigned>(); |
| 1072 | Class *c = deserializer.Deserialize<Class *>(); |
| 1073 | deserializer.Deserialize<const char *>(); |
| 1074 | size_t l = deserializer.Deserialize<size_t>(); |
| 1075 | return recorder.ReplayResult( |
| 1076 | std::move(deserializer.HandleReplayResult((c->*m)(str, l))), true); |
| 1077 | } |
Jonas Devlieghere | 2f025bb | 2020-02-05 19:41:09 -0800 | [diff] [blame] | 1078 | }; |
| 1079 | }; |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1080 | |
| 1081 | template <typename Result, typename... Args> |
| 1082 | struct invoke_char_ptr<Result (*)(Args...)> { |
| 1083 | template <Result (*m)(Args...)> struct method { |
Jonas Devlieghere | 950a8aa | 2020-04-20 09:37:07 -0700 | [diff] [blame] | 1084 | static Result record(char *s, size_t l) { |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 1085 | char *buffer = reinterpret_cast<char *>(calloc(l, sizeof(char))); |
| 1086 | return (*m)(buffer, l); |
| 1087 | } |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1088 | |
| 1089 | static Result replay(Recorder &recorder, Deserializer &deserializer, |
| 1090 | Registry ®istry, char *str) { |
Jonas Devlieghere | ac25e86 | 2020-12-10 09:35:12 -0800 | [diff] [blame] | 1091 | deserializer.SetExpectedSequence(deserializer.Deserialize<unsigned>()); |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1092 | deserializer.Deserialize<unsigned>(); |
| 1093 | deserializer.Deserialize<const char *>(); |
| 1094 | size_t l = deserializer.Deserialize<size_t>(); |
| 1095 | return recorder.ReplayResult( |
| 1096 | std::move(deserializer.HandleReplayResult((*m)(str, l))), true); |
| 1097 | } |
Jonas Devlieghere | ba10840 | 2020-04-14 10:18:50 -0700 | [diff] [blame] | 1098 | }; |
| 1099 | }; |
Jonas Devlieghere | e687aa8 | 2020-04-20 13:20:24 -0700 | [diff] [blame] | 1100 | /// } |
Jonas Devlieghere | 2f025bb | 2020-02-05 19:41:09 -0800 | [diff] [blame] | 1101 | |
Jonas Devlieghere | 494fd8f | 2019-02-05 18:46:36 +0000 | [diff] [blame] | 1102 | } // namespace repro |
| 1103 | } // namespace lldb_private |
| 1104 | |
Jonas Devlieghere | cdc514e | 2020-02-17 15:57:45 -0800 | [diff] [blame] | 1105 | #endif // LLDB_UTILITY_REPRODUCERINSTRUMENTATION_H |