/root/bitcoin/src/serialize.h
Line | Count | Source |
1 | | // Copyright (c) 2009-2010 Satoshi Nakamoto |
2 | | // Copyright (c) 2009-present The Bitcoin Core developers |
3 | | // Distributed under the MIT software license, see the accompanying |
4 | | // file COPYING or http://www.opensource.org/licenses/mit-license.php. |
5 | | |
6 | | #ifndef BITCOIN_SERIALIZE_H |
7 | | #define BITCOIN_SERIALIZE_H |
8 | | |
9 | | #include <attributes.h> |
10 | | #include <compat/assumptions.h> // IWYU pragma: keep |
11 | | #include <compat/endian.h> |
12 | | #include <prevector.h> |
13 | | #include <span.h> |
14 | | #include <util/overflow.h> |
15 | | |
16 | | #include <algorithm> |
17 | | #include <concepts> |
18 | | #include <cstdint> |
19 | | #include <cstring> |
20 | | #include <ios> |
21 | | #include <limits> |
22 | | #include <map> |
23 | | #include <memory> |
24 | | #include <set> |
25 | | #include <span> |
26 | | #include <string> |
27 | | #include <string_view> |
28 | | #include <utility> |
29 | | #include <vector> |
30 | | |
31 | | /** |
32 | | * The maximum size of a serialized object in bytes or number of elements |
33 | | * (for eg vectors) when the size is encoded as CompactSize. |
34 | | */ |
35 | | static constexpr uint64_t MAX_SIZE = 0x02000000; |
36 | | |
37 | | /** Maximum amount of memory (in bytes) to allocate at once when deserializing vectors. */ |
38 | | static const unsigned int MAX_VECTOR_ALLOCATE = 5000000; |
39 | | |
40 | | /** |
41 | | * Dummy data type to identify deserializing constructors. |
42 | | * |
43 | | * By convention, a constructor of a type T with signature |
44 | | * |
45 | | * template <typename Stream> T::T(deserialize_type, Stream& s) |
46 | | * |
47 | | * is a deserializing constructor, which builds the type by |
48 | | * deserializing it from s. If T contains const fields, this |
49 | | * is likely the only way to do so. |
50 | | */ |
51 | | struct deserialize_type {}; |
52 | | constexpr deserialize_type deserialize {}; |
53 | | |
54 | | /* |
55 | | * Lowest-level serialization and conversion. |
56 | | */ |
57 | | template<typename Stream> inline void ser_writedata8(Stream &s, uint8_t obj) |
58 | 1.63M | { |
59 | 1.63M | s.write(std::as_bytes(std::span{&obj, 1})); |
60 | 1.63M | } Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I8AutoFileEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12VectorWriterEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_h _Z14ser_writedata8I10DataStreamEvRT_h Line | Count | Source | 58 | 1.63M | { | 59 | 1.63M | s.write(std::as_bytes(std::span{&obj, 1})); | 60 | 1.63M | } |
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12SizeComputerEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_h Unexecuted instantiation: _Z14ser_writedata8I10HashWriterEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I14BufferedWriterI8AutoFileEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_h Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_h |
61 | | template<typename Stream> inline void ser_writedata16(Stream &s, uint16_t obj) |
62 | 5.93M | { |
63 | 5.93M | obj = htole16_internal(obj); |
64 | 5.93M | s.write(std::as_bytes(std::span{&obj, 1})); |
65 | 5.93M | } Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I8AutoFileEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12VectorWriterEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_t _Z15ser_writedata16I10DataStreamEvRT_t Line | Count | Source | 62 | 5.93M | { | 63 | 5.93M | obj = htole16_internal(obj); | 64 | 5.93M | s.write(std::as_bytes(std::span{&obj, 1})); | 65 | 5.93M | } |
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12SizeComputerEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_t Unexecuted instantiation: _Z15ser_writedata16I10HashWriterEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I14BufferedWriterI8AutoFileEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_t Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_t |
66 | | template<typename Stream> inline void ser_writedata32(Stream &s, uint32_t obj) |
67 | 0 | { |
68 | 0 | obj = htole32_internal(obj); |
69 | 0 | s.write(std::as_bytes(std::span{&obj, 1})); |
70 | 0 | } Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I8AutoFileEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12VectorWriterEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I10DataStreamEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12SizeComputerEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_j Unexecuted instantiation: _Z15ser_writedata32I10HashWriterEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I14BufferedWriterI8AutoFileEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_j |
71 | | template<typename Stream> inline void ser_writedata32be(Stream &s, uint32_t obj) |
72 | 0 | { |
73 | 0 | obj = htobe32_internal(obj); |
74 | 0 | s.write(std::as_bytes(std::span{&obj, 1})); |
75 | 0 | } |
76 | | template<typename Stream> inline void ser_writedata64(Stream &s, uint64_t obj) |
77 | 0 | { |
78 | 0 | obj = htole64_internal(obj); |
79 | 0 | s.write(std::as_bytes(std::span{&obj, 1})); |
80 | 0 | } Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I8AutoFileEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12VectorWriterEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I10DataStreamEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12SizeComputerEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_m Unexecuted instantiation: _Z15ser_writedata64I10HashWriterEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I14BufferedWriterI8AutoFileEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_m |
81 | | template<typename Stream> inline uint8_t ser_readdata8(Stream &s) |
82 | 3.33M | { |
83 | 3.33M | uint8_t obj; |
84 | 3.33M | s.read(std::as_writable_bytes(std::span{&obj, 1})); |
85 | 3.33M | return obj; |
86 | 3.33M | } Unexecuted instantiation: _Z13ser_readdata8I8AutoFileEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR10SpanReader20TransactionSerParamsEEhRT_ _Z13ser_readdata8I10SpanReaderEhRT_ Line | Count | Source | 82 | 3.28M | { | 83 | 3.28M | uint8_t obj; | 84 | 3.28M | s.read(std::as_writable_bytes(std::span{&obj, 1})); | 85 | 3.28M | return obj; | 86 | 3.28M | } |
Unexecuted instantiation: _Z13ser_readdata8I12BufferedFileEhRT_ _Z13ser_readdata8I10DataStreamEhRT_ Line | Count | Source | 82 | 46.3k | { | 83 | 46.3k | uint8_t obj; | 84 | 46.3k | s.read(std::as_writable_bytes(std::span{&obj, 1})); | 85 | 46.3k | return obj; | 86 | 46.3k | } |
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR10DataStream20TransactionSerParamsEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12HashVerifierI14BufferedReaderI8AutoFileEEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR8AutoFile20TransactionSerParamsEEhRT_ Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR12BufferedFile20TransactionSerParamsEEhRT_ |
87 | | template<typename Stream> inline uint16_t ser_readdata16(Stream &s) |
88 | 1.60M | { |
89 | 1.60M | uint16_t obj; |
90 | 1.60M | s.read(std::as_writable_bytes(std::span{&obj, 1})); |
91 | 1.60M | return le16toh_internal(obj); |
92 | 1.60M | } Unexecuted instantiation: _Z14ser_readdata16I8AutoFileEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10SpanReader20TransactionSerParamsEEtRT_ _Z14ser_readdata16I10SpanReaderEtRT_ Line | Count | Source | 88 | 1.57M | { | 89 | 1.57M | uint16_t obj; | 90 | 1.57M | s.read(std::as_writable_bytes(std::span{&obj, 1})); | 91 | 1.57M | return le16toh_internal(obj); | 92 | 1.57M | } |
Unexecuted instantiation: _Z14ser_readdata16I12BufferedFileEtRT_ _Z14ser_readdata16I10DataStreamEtRT_ Line | Count | Source | 88 | 30.2k | { | 89 | 30.2k | uint16_t obj; | 90 | 30.2k | s.read(std::as_writable_bytes(std::span{&obj, 1})); | 91 | 30.2k | return le16toh_internal(obj); | 92 | 30.2k | } |
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10DataStream20TransactionSerParamsEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12HashVerifierI14BufferedReaderI8AutoFileEEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR8AutoFile20TransactionSerParamsEEtRT_ Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR12BufferedFile20TransactionSerParamsEEtRT_ |
93 | | template<typename Stream> inline uint32_t ser_readdata32(Stream &s) |
94 | 0 | { |
95 | 0 | uint32_t obj; |
96 | 0 | s.read(std::as_writable_bytes(std::span{&obj, 1})); |
97 | 0 | return le32toh_internal(obj); |
98 | 0 | } Unexecuted instantiation: _Z14ser_readdata32I8AutoFileEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR10SpanReader20TransactionSerParamsEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I10SpanReaderEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12BufferedFileEjRT_ Unexecuted instantiation: _Z14ser_readdata32I10DataStreamEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR10DataStream20TransactionSerParamsEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12HashVerifierI14BufferedReaderI8AutoFileEEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR8AutoFile20TransactionSerParamsEEjRT_ Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR12BufferedFile20TransactionSerParamsEEjRT_ |
99 | | template<typename Stream> inline uint32_t ser_readdata32be(Stream &s) |
100 | 0 | { |
101 | 0 | uint32_t obj; |
102 | 0 | s.read(std::as_writable_bytes(std::span{&obj, 1})); |
103 | 0 | return be32toh_internal(obj); |
104 | 0 | } Unexecuted instantiation: _Z16ser_readdata32beI10DataStreamEjRT_ Unexecuted instantiation: _Z16ser_readdata32beI10SpanReaderEjRT_ |
105 | | template<typename Stream> inline uint64_t ser_readdata64(Stream &s) |
106 | 8.96k | { |
107 | 8.96k | uint64_t obj; |
108 | 8.96k | s.read(std::as_writable_bytes(std::span{&obj, 1})); |
109 | 8.96k | return le64toh_internal(obj); |
110 | 8.96k | } Unexecuted instantiation: _Z14ser_readdata64I8AutoFileEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR10SpanReader20TransactionSerParamsEEmRT_ _Z14ser_readdata64I10SpanReaderEmRT_ Line | Count | Source | 106 | 8.96k | { | 107 | 8.96k | uint64_t obj; | 108 | 8.96k | s.read(std::as_writable_bytes(std::span{&obj, 1})); | 109 | 8.96k | return le64toh_internal(obj); | 110 | 8.96k | } |
Unexecuted instantiation: _Z14ser_readdata64I12BufferedFileEmRT_ Unexecuted instantiation: _Z14ser_readdata64I10DataStreamEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR10DataStream20TransactionSerParamsEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12HashVerifierI14BufferedReaderI8AutoFileEEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR8AutoFile20TransactionSerParamsEEmRT_ Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR12BufferedFile20TransactionSerParamsEEmRT_ |
111 | | |
112 | | |
113 | | class SizeComputer; |
114 | | |
115 | | /** |
116 | | * Convert any argument to a reference to X, maintaining constness. |
117 | | * |
118 | | * This can be used in serialization code to invoke a base class's |
119 | | * serialization routines. |
120 | | * |
121 | | * Example use: |
122 | | * class Base { ... }; |
123 | | * class Child : public Base { |
124 | | * int m_data; |
125 | | * public: |
126 | | * SERIALIZE_METHODS(Child, obj) { |
127 | | * READWRITE(AsBase<Base>(obj), obj.m_data); |
128 | | * } |
129 | | * }; |
130 | | * |
131 | | * static_cast cannot easily be used here, as the type of Obj will be const Child& |
132 | | * during serialization and Child& during deserialization. AsBase will convert to |
133 | | * const Base& and Base& appropriately. |
134 | | */ |
135 | | template <class Out, class In> |
136 | | Out& AsBase(In& x) |
137 | 0 | { |
138 | 0 | static_assert(std::is_base_of_v<Out, In>); |
139 | 0 | return x; |
140 | 0 | } Unexecuted instantiation: _Z6AsBaseI9prevectorILj36EhjiE7CScriptERT_RT0_ Unexecuted instantiation: _Z6AsBaseI12CBlockHeader6CBlockERT_RT0_ Unexecuted instantiation: _Z6AsBaseI8CNetAddr8CServiceERT_RT0_ Unexecuted instantiation: _Z6AsBaseI8CService8CAddressERT_RT0_ Unexecuted instantiation: _Z6AsBaseI8CAddress8AddrInfoERT_RT0_ Unexecuted instantiation: _Z6AsBaseI11FlatFilePos10CDiskTxPosERT_RT0_ |
141 | | template <class Out, class In> |
142 | | const Out& AsBase(const In& x) |
143 | 0 | { |
144 | 0 | static_assert(std::is_base_of_v<Out, In>); |
145 | 0 | return x; |
146 | 0 | } Unexecuted instantiation: _Z6AsBaseI9prevectorILj36EhjiE7CScriptERKT_RKT0_ Unexecuted instantiation: _Z6AsBaseI12CBlockHeader6CBlockERKT_RKT0_ Unexecuted instantiation: _Z6AsBaseI8CNetAddr8CServiceERKT_RKT0_ Unexecuted instantiation: _Z6AsBaseI8CService8CAddressERKT_RKT0_ Unexecuted instantiation: _Z6AsBaseI8CAddress8AddrInfoERKT_RKT0_ Unexecuted instantiation: _Z6AsBaseI11FlatFilePos10CDiskTxPosERKT_RKT0_ |
147 | | |
148 | 0 | #define READWRITE(...) (ser_action.SerReadWriteMany(s, __VA_ARGS__)) |
149 | 0 | #define SER_READ(obj, code) ser_action.SerRead(s, obj, [&](Stream& s, std::remove_const_t<Type>& obj) { code; })Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR10SpanReaderNS_9SerParamsEES_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS5_RS_E_clESC_SD_ Unexecuted instantiation: _ZZN18CPartialMerkleTree16SerializationOpsI10SpanReaderS_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS1_RS_E_clES8_S9_ Unexecuted instantiation: _ZZN18CPartialMerkleTree16SerializationOpsI10SpanReaderS_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS1_RS_E0_clES8_S9_ Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR10DataStreamNS_9SerParamsEES_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS5_RS_E_clESC_SD_ Unexecuted instantiation: _ZZN6wallet16WalletDescriptor16SerializationOpsI10DataStreamS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E_clES9_SA_ Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR12HashVerifierI8AutoFileENS_9SerParamsEES_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS7_RS_E_clESE_SF_ Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR8AutoFileNS_9SerParamsEES_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS5_RS_E_clESC_SD_ Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR12HashVerifierI10DataStreamENS_9SerParamsEES_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS7_RS_E_clESE_SF_ Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E_clES9_SA_ Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E0_clES9_SA_ Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E1_clES9_SA_ Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10SpanReaderS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E_clES9_SA_ Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10SpanReaderS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E0_clES9_SA_ Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10SpanReaderS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E1_clES9_SA_ |
150 | 0 | #define SER_WRITE(obj, code) ser_action.SerWrite(s, obj, [&](Stream& s, const Type& obj) { code; })Unexecuted instantiation: _ZZN18CPartialMerkleTree16SerializationOpsI10DataStreamKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS1_RS2_E_clES9_SA_ Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR10DataStreamNS_9SerParamsEEKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS5_RS6_E_clESD_SE_ Unexecuted instantiation: _ZZN6wallet16WalletDescriptor16SerializationOpsI10DataStreamKS0_15ActionSerializeEEvRT0_RT_T1_ENKUlRS2_RS3_E_clESA_SB_ Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR18HashedSourceWriterI8AutoFileENS_9SerParamsEEKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS7_RS8_E_clESF_SG_ Unexecuted instantiation: _ZZN18CPartialMerkleTree16SerializationOpsI12VectorWriterKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS1_RS2_E_clES9_SA_ Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR12VectorWriterNS_9SerParamsEEKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS5_RS6_E_clESD_SE_ Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamKS0_15ActionSerializeEEvRT0_RT_T1_ENKUlRS2_RS3_E_clESA_SB_ Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamKS0_15ActionSerializeEEvRT0_RT_T1_ENKUlRS2_RS3_E0_clESA_SB_ Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamKS0_15ActionSerializeEEvRT0_RT_T1_ENKUlRS2_RS3_E1_clESA_SB_ |
151 | | |
152 | | /** |
153 | | * Implement the Ser and Unser methods needed for implementing a formatter (see Using below). |
154 | | * |
155 | | * Both Ser and Unser are delegated to a single static method SerializationOps, which is polymorphic |
156 | | * in the serialized/deserialized type (allowing it to be const when serializing, and non-const when |
157 | | * deserializing). |
158 | | * |
159 | | * Example use: |
160 | | * struct FooFormatter { |
161 | | * FORMATTER_METHODS(Class, obj) { READWRITE(obj.val1, VARINT(obj.val2)); } |
162 | | * } |
163 | | * would define a class FooFormatter that defines a serialization of Class objects consisting |
164 | | * of serializing its val1 member using the default serialization, and its val2 member using |
165 | | * VARINT serialization. That FooFormatter can then be used in statements like |
166 | | * READWRITE(Using<FooFormatter>(obj.bla)). |
167 | | */ |
168 | | #define FORMATTER_METHODS(cls, obj) \ |
169 | | template<typename Stream> \ |
170 | 0 | static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN6CBlock3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN12CBlockHeader3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN12CBlockHeader3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN20PrefilledTransaction3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN17BlockTransactions3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN6CBlock3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN12CBlockHeader3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN6kernel14CBlockFileInfo3SerI10DataStreamEEvRT_RKS0_ Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN12CBlockHeader3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN20PrefilledTransaction3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN8CFeeRate3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN12CMerkleBlock3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN18CPartialMerkleTree3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN9COutPoint3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN5CTxIn3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN11FlatFilePos3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN13KeyOriginInfo3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI12SizeComputerEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI12SizeComputerEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN11XOnlyPubKey3SerI12SizeComputerEEvRT_RKS_ Unexecuted instantiation: _ZN11XOnlyPubKey3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN6CBlock3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN12CBlockHeader3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN13CBlockLocator3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN7CTxUndo3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN16TxOutCompression3SerI10DataStreamEEvRT_RK6CTxOut Unexecuted instantiation: _ZN10CBlockUndo3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN8CService3SerI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN14CMessageHeader3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN8CAddress3SerI12ParamsStreamIR10DataStreamNS_9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN8CService3SerI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN4CInv3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN12CBloomFilter3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN15CDiskBlockIndex3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN17BlockTransactions3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN24BlockTransactionsRequest3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN20PrefilledTransaction3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_RKS_ Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN11XOnlyPubKey3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN16TxOutCompression3SerI8AutoFileEEvRT_RK6CTxOut Unexecuted instantiation: _ZN6wallet12CKeyMetadata3SerI10DataStreamEEvRT_RKS0_ Unexecuted instantiation: _ZN6wallet10CMasterKey3SerI10DataStreamEEvRT_RKS0_ Unexecuted instantiation: _ZN6wallet16WalletDescriptor3SerI10DataStreamEEvRT_RKS0_ Unexecuted instantiation: _ZN8CService3SerI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN8CAddress3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileENS_9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN8CService3SerI12ParamsStreamIRS1_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN8AddrInfo3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN8AddrInfo3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs3SerI12SizeComputerEEvRT_RKS_ Unexecuted instantiation: _ZN12CBlockHeader3SerI12SizeComputerEEvRT_RKS_ Unexecuted instantiation: _ZN20PrefilledTransaction3SerI12SizeComputerEEvRT_RKS_ Unexecuted instantiation: _ZN9COutPoint3SerI10HashWriterEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI10HashWriterEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI10HashWriterEEvRT_RKS_ Unexecuted instantiation: _ZN14CMessageHeader3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN4CInv3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN12CMerkleBlock3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN18CPartialMerkleTree3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN13CBlockLocator3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN24BlockTransactionsRequest3SerI12VectorWriterEEvRT_RKS_ Unexecuted instantiation: _ZN8CAddress3SerI12ParamsStreamIR12VectorWriterNS_9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN8CService3SerI12ParamsStreamIRS1_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RKS_ Unexecuted instantiation: _ZN10CBlockUndo3SerI12SizeComputerEEvRT_RKS_ Unexecuted instantiation: _ZN7CTxUndo3SerI12SizeComputerEEvRT_RKS_ Unexecuted instantiation: _ZN16TxOutCompression3SerI12SizeComputerEEvRT_RK6CTxOut Unexecuted instantiation: _ZN10CBlockUndo3SerI10HashWriterEEvRT_RKS_ Unexecuted instantiation: _ZN7CTxUndo3SerI10HashWriterEEvRT_RKS_ Unexecuted instantiation: _ZN16TxOutCompression3SerI10HashWriterEEvRT_RK6CTxOut Unexecuted instantiation: _ZN10CBlockUndo3SerI14BufferedWriterI8AutoFileEEEvRT_RKS_ Unexecuted instantiation: _ZN7CTxUndo3SerI14BufferedWriterI8AutoFileEEEvRT_RKS_ Unexecuted instantiation: _ZN16TxOutCompression3SerI14BufferedWriterI8AutoFileEEEvRT_RK6CTxOut Unexecuted instantiation: _ZN6CBlock3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN12CBlockHeader3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN5CCoin3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: txdb.cpp:_ZN12_GLOBAL__N_19CoinEntry3SerI10DataStreamEEvRT_RKS0_ Unexecuted instantiation: _ZN10index_util9DBHashKey3SerI10DataStreamEEvRT_RKS0_ Unexecuted instantiation: blockfilterindex.cpp:_ZN12_GLOBAL__N_15DBVal3SerI10DataStreamEEvRT_RKS0_ Unexecuted instantiation: coinstatsindex.cpp:_ZN12_GLOBAL__N_15DBVal3SerI10DataStreamEEvRT_RKS0_ Unexecuted instantiation: _ZN10MuHash30723SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN7Num30723SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN10CDiskTxPos3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN5DBKey3SerI10DataStreamEEvRT_RKS_ Unexecuted instantiation: _ZN12CBlockHeader3SerI10HashWriterEEvRT_RKS_ Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_ Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_ |
171 | | template<typename Stream> \ |
172 | 0 | static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \Unexecuted instantiation: _ZN6CBlock5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN12CBlockHeader5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN5CTxIn5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN9COutPoint5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN7CScript5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN6CTxOut5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN12CBlockHeader5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN13CBlockLocator5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN6kernel14CBlockFileInfo5UnserI10SpanReaderEEvRT_RS0_ Unexecuted instantiation: _ZN9COutPoint5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN15CDiskBlockIndex5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN16TxOutCompression5UnserI10SpanReaderEEvRT_R6CTxOut Unexecuted instantiation: _ZN8AddrInfo5UnserI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CAddress5UnserI12ParamsStreamIR10SpanReaderNS_9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIRS1_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN20PrefilledTransaction5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN8CFeeRate5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN8CFeeRate5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN12CMerkleBlock5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN18CPartialMerkleTree5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN9COutPoint5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN7CScript5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN5CTxIn5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN5CTxIn5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN7CScript5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN11FlatFilePos5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN11FlatFilePos5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN13KeyOriginInfo5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN13KeyOriginInfo5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN6CTxOut5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN11XOnlyPubKey5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN7CTxUndo5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN10CBlockUndo5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN14CMessageHeader5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN8CAddress5UnserI12ParamsStreamIR10DataStreamNS_9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN4CInv5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN12CBloomFilter5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN17BlockTransactions5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN24BlockTransactionsRequest5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN24BlockTransactionsRequest5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN6wallet12CKeyMetadata5UnserI10DataStreamEEvRT_RS0_ Unexecuted instantiation: _ZN6wallet16WalletDescriptor5UnserI10DataStreamEEvRT_RS0_ Unexecuted instantiation: _ZN5CTxIn5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN9COutPoint5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN7CScript5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN6CTxOut5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN13CBlockLocator5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN6wallet10CMasterKey5UnserI10DataStreamEEvRT_RS0_ Unexecuted instantiation: _ZN6wallet8CHDChain5UnserI10DataStreamEEvRT_RS0_ Unexecuted instantiation: _ZN6CBlock5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN12CBlockHeader5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN8CAddress5UnserI12ParamsStreamIR12HashVerifierI8AutoFileENS_9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIRS1_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8AddrInfo5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CAddress5UnserI12ParamsStreamIR8AutoFileNS_9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIRS1_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8AddrInfo5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8AddrInfo5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8AddrInfo5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CAddress5UnserI12ParamsStreamIR12HashVerifierI10DataStreamENS_9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIRS1_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEEvRT_RS_ Unexecuted instantiation: _ZN14CMessageHeader5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN4CInv5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN12CBlockHeader5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN20PrefilledTransaction5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN17BlockTransactions5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN12CBloomFilter5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN15CDiskBlockIndex5UnserI10DataStreamEEvRT_RS_ Unexecuted instantiation: _ZN10CBlockUndo5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_RS_ Unexecuted instantiation: _ZN7CTxUndo5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_RS_ Unexecuted instantiation: _ZN16TxOutCompression5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_R6CTxOut Unexecuted instantiation: _ZN5CTxIn5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN9COutPoint5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN7CScript5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN6CTxOut5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: txdb.cpp:_ZN12_GLOBAL__N_19CoinEntry5UnserI10SpanReaderEEvRT_RS0_ Unexecuted instantiation: _ZN16TxOutCompression5UnserI10DataStreamEEvRT_R6CTxOut Unexecuted instantiation: _ZN12CBlockHeader5UnserI12BufferedFileEEvRT_RS_ Unexecuted instantiation: _ZN6CBlock5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN12CBlockHeader5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN5CTxIn5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN9COutPoint5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN7CScript5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN6CTxOut5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_ Unexecuted instantiation: _ZN16TxOutCompression5UnserI8AutoFileEEvRT_R6CTxOut Unexecuted instantiation: blockfilterindex.cpp:_ZN12_GLOBAL__N_15DBVal5UnserI10DataStreamEEvRT_RS0_ Unexecuted instantiation: blockfilterindex.cpp:_ZN12_GLOBAL__N_15DBVal5UnserI10SpanReaderEEvRT_RS0_ Unexecuted instantiation: coinstatsindex.cpp:_ZN12_GLOBAL__N_15DBVal5UnserI10DataStreamEEvRT_RS0_ Unexecuted instantiation: coinstatsindex.cpp:_ZN12_GLOBAL__N_15DBVal5UnserI10SpanReaderEEvRT_RS0_ Unexecuted instantiation: _ZN10MuHash30725UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN7Num30725UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN10CDiskTxPos5UnserI10SpanReaderEEvRT_RS_ Unexecuted instantiation: _ZN12CBlockHeader5UnserI8AutoFileEEvRT_RS_ Unexecuted instantiation: _ZN5DBKey5UnserI10SpanReaderEEvRT_RS_ |
173 | | template<typename Stream, typename Type, typename Operation> \ |
174 | | static void SerializationOps(Type& obj, Stream& s, Operation ser_action) |
175 | | |
176 | | /** |
177 | | * Formatter methods can retrieve parameters attached to a stream using the |
178 | | * SER_PARAMS(type) macro as long as the stream is created directly or |
179 | | * indirectly with a parameter of that type. This permits making serialization |
180 | | * depend on run-time context in a type-safe way. |
181 | | * |
182 | | * Example use: |
183 | | * struct BarParameter { bool fancy; ... }; |
184 | | * struct Bar { ... }; |
185 | | * struct FooFormatter { |
186 | | * FORMATTER_METHODS(Bar, obj) { |
187 | | * auto& param = SER_PARAMS(BarParameter); |
188 | | * if (param.fancy) { |
189 | | * READWRITE(VARINT(obj.value)); |
190 | | * } else { |
191 | | * READWRITE(obj.value); |
192 | | * } |
193 | | * } |
194 | | * }; |
195 | | * which would then be invoked as |
196 | | * READWRITE(BarParameter{...}(Using<FooFormatter>(obj.foo))) |
197 | | * |
198 | | * parameter(obj) can be invoked anywhere in the call stack; it is |
199 | | * passed down recursively into all serialization code, until another |
200 | | * serialization parameter overrides it. |
201 | | * |
202 | | * Parameters will be implicitly converted where appropriate. This means that |
203 | | * "parent" serialization code can use a parameter that derives from, or is |
204 | | * convertible to, a "child" formatter's parameter type. |
205 | | * |
206 | | * Compilation will fail in any context where serialization is invoked but |
207 | | * no parameter of a type convertible to BarParameter is provided. |
208 | | */ |
209 | 0 | #define SER_PARAMS(type) (s.template GetParams<type>()) |
210 | | |
211 | | #define BASE_SERIALIZE_METHODS(cls) \ |
212 | | template <typename Stream> \ |
213 | | void Serialize(Stream& s) const \ |
214 | 0 | { \ |
215 | 0 | static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch"); \ |
216 | 0 | Ser(s, *this); \ |
217 | 0 | } \ Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK6CBlock9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK25CBlockHeaderAndShortTxIDs9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK20PrefilledTransaction9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK17BlockTransactions9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK6CBlock9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK6kernel14CBlockFileInfo9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK25CBlockHeaderAndShortTxIDs9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK20PrefilledTransaction9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK8CFeeRate9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK12CMerkleBlock9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK18CPartialMerkleTree9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK9COutPoint9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK5CTxIn9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK11FlatFilePos9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13KeyOriginInfo9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK11XOnlyPubKey9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK11XOnlyPubKey9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK6CBlock9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK13CBlockLocator9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7CTxUndo9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK10CBlockUndo9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK14CMessageHeader9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK8CAddress9SerializeI12ParamsStreamIR10DataStreamNS_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK4CInv9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK12CBloomFilter9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK15CDiskBlockIndex9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK17BlockTransactions9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK24BlockTransactionsRequest9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK25CBlockHeaderAndShortTxIDs9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK20PrefilledTransaction9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_ Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK11XOnlyPubKey9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK6wallet12CKeyMetadata9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK6wallet10CMasterKey9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK6wallet16WalletDescriptor9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK8CAddress9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileENS_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIRS1_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK8AddrInfo9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK8AddrInfo9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK25CBlockHeaderAndShortTxIDs9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK20PrefilledTransaction9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK9COutPoint9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK14CMessageHeader9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK4CInv9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK12CMerkleBlock9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK18CPartialMerkleTree9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13CBlockLocator9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK24BlockTransactionsRequest9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK8CAddress9SerializeI12ParamsStreamIR12VectorWriterNS_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIRS1_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK10CBlockUndo9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7CTxUndo9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK10CBlockUndo9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK7CTxUndo9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK10CBlockUndo9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK7CTxUndo9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK6CBlock9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK5CCoin9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: txdb.cpp:_ZNK12_GLOBAL__N_19CoinEntry9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK10index_util9DBHashKey9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: blockfilterindex.cpp:_ZNK12_GLOBAL__N_15DBVal9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: coinstatsindex.cpp:_ZNK12_GLOBAL__N_15DBVal9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK10MuHash30729SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7Num30729SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK10CDiskTxPos9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK5DBKey9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_ |
218 | | template <typename Stream> \ |
219 | | void Unserialize(Stream& s) \ |
220 | 0 | { \ |
221 | 0 | static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch"); \ |
222 | 0 | Unser(s, *this); \ |
223 | 0 | } Unexecuted instantiation: _ZN6CBlock11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN5CTxIn11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN9COutPoint11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7CScript11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN6CTxOut11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13CBlockLocator11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN6kernel14CBlockFileInfo11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN9COutPoint11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN15CDiskBlockIndex11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR10SpanReaderNS_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN20PrefilledTransaction11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN8CFeeRate11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN8CFeeRate11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN12CMerkleBlock11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN18CPartialMerkleTree11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN9COutPoint11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7CScript11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN5CTxIn11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN5CTxIn11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7CScript11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN11FlatFilePos11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN11FlatFilePos11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13KeyOriginInfo11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13KeyOriginInfo11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN6CTxOut11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN11XOnlyPubKey11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7CTxUndo11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN10CBlockUndo11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN14CMessageHeader11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR10DataStreamNS_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN4CInv11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN12CBloomFilter11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN17BlockTransactions11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN24BlockTransactionsRequest11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN24BlockTransactionsRequest11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN6wallet12CKeyMetadata11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN6wallet16WalletDescriptor11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN5CTxIn11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN9COutPoint11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7CScript11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN6CTxOut11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN13CBlockLocator11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN6wallet10CMasterKey11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN6wallet8CHDChain11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN6CBlock11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileENS_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR8AutoFileNS_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamENS_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN14CMessageHeader11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN4CInv11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN20PrefilledTransaction11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN17BlockTransactions11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN12CBloomFilter11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN15CDiskBlockIndex11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN10CBlockUndo11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_ Unexecuted instantiation: _ZN7CTxUndo11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_ Unexecuted instantiation: _ZN5CTxIn11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN9COutPoint11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7CScript11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN6CTxOut11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: txdb.cpp:_ZN12_GLOBAL__N_19CoinEntry11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI12BufferedFileEEvRT_ Unexecuted instantiation: _ZN6CBlock11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN5CTxIn11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN9COutPoint11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7CScript11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN6CTxOut11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: blockfilterindex.cpp:_ZN12_GLOBAL__N_15DBVal11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: blockfilterindex.cpp:_ZN12_GLOBAL__N_15DBVal11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: coinstatsindex.cpp:_ZN12_GLOBAL__N_15DBVal11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: coinstatsindex.cpp:_ZN12_GLOBAL__N_15DBVal11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN10MuHash307211UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7Num307211UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN10CDiskTxPos11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZN5DBKey11UnserializeI10SpanReaderEEvRT_ |
224 | | |
225 | | /** |
226 | | * Implement the Serialize and Unserialize methods by delegating to a single templated |
227 | | * static method that takes the to-be-(de)serialized object as a parameter. This approach |
228 | | * has the advantage that the constness of the object becomes a template parameter, and |
229 | | * thus allows a single implementation that sees the object as const for serializing |
230 | | * and non-const for deserializing, without casts. |
231 | | */ |
232 | | #define SERIALIZE_METHODS(cls, obj) \ |
233 | | BASE_SERIALIZE_METHODS(cls) \ |
234 | | FORMATTER_METHODS(cls, obj) |
235 | | |
236 | | // Templates for serializing to anything that looks like a stream, |
237 | | // i.e. anything that supports .read(std::span<std::byte>) and .write(std::span<const std::byte>) |
238 | | // |
239 | | |
240 | | // Typically int8_t and char are distinct types, but some systems may define int8_t |
241 | | // in terms of char. Forbid serialization of char in the typical case, but allow it if |
242 | | // it's the only way to describe an int8_t. |
243 | | template<class T> |
244 | | concept CharNotInt8 = std::same_as<T, char> && !std::same_as<T, int8_t>; |
245 | | |
246 | | // clang-format off |
247 | | template <typename Stream, CharNotInt8 V> void Serialize(Stream&, V) = delete; // char serialization forbidden. Use uint8_t or int8_t |
248 | | template <typename Stream> void Serialize(Stream& s, std::byte a) { ser_writedata8(s, uint8_t(a)); } |
249 | 0 | template <typename Stream> void Serialize(Stream& s, int8_t a) { ser_writedata8(s, uint8_t(a)); }Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_a Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_a |
250 | 0 | template <typename Stream> void Serialize(Stream& s, uint8_t a) { ser_writedata8(s, a); }Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_h Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_h Unexecuted instantiation: _Z9SerializeI12VectorWriterEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_h Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_h Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z9SerializeI10HashWriterEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileEEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_h Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_h |
251 | 0 | template <typename Stream> void Serialize(Stream& s, int16_t a) { ser_writedata16(s, uint16_t(a)); }Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_s Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_s |
252 | 5.85M | template <typename Stream> void Serialize(Stream& s, uint16_t a) { ser_writedata16(s, a); }Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_t _Z9SerializeI10DataStreamEvRT_t Line | Count | Source | 252 | 5.85M | template <typename Stream> void Serialize(Stream& s, uint16_t a) { ser_writedata16(s, a); } |
|
253 | 0 | template <typename Stream> void Serialize(Stream& s, int32_t a) { ser_writedata32(s, uint32_t(a)); }Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_i Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_i Unexecuted instantiation: _Z9SerializeI12VectorWriterEvRT_i Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_i Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_i Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_i Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_i Unexecuted instantiation: _Z9SerializeI10HashWriterEvRT_i Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_i Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_i Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_i |
254 | 0 | template <typename Stream> void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_j Unexecuted instantiation: _Z9SerializeI12VectorWriterEvRT_j Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_j Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_j Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_j Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_j Unexecuted instantiation: _Z9SerializeI10HashWriterEvRT_j Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_j Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_j Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileEEvRT_j Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_j Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_j |
255 | 0 | template <typename Stream> void Serialize(Stream& s, int64_t a) { ser_writedata64(s, uint64_t(a)); }Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_l Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_l Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_l Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_l Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_l Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_l Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_l Unexecuted instantiation: _Z9SerializeI12VectorWriterEvRT_l Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_l Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_l Unexecuted instantiation: _Z9SerializeI10HashWriterEvRT_l Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_l Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_l Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_l |
256 | 0 | template <typename Stream> void Serialize(Stream& s, uint64_t a) { ser_writedata64(s, a); }Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_m Unexecuted instantiation: _Z9SerializeI12VectorWriterEvRT_m Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_m Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z9SerializeI10HashWriterEvRT_m Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_m |
257 | | |
258 | 0 | template <typename Stream, BasicByte B, size_t N> void Serialize(Stream& s, const B (&a)[N]) { s.write(MakeByteSpan(a)); }Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm4EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm5EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12SizeComputerTk9BasicBytehLm78EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm78EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicBytehLm4EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytecLm12EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicBytehLm5EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicBytehLm78EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicBytecLm12EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytecLm1EEvRT_RAT1__KT0_ Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicBytehLm384EEvRT_RAT1__KT0_ |
259 | 0 | template <typename Stream, BasicByte B, size_t N> void Serialize(Stream& s, const std::array<B, N>& a) { s.write(MakeByteSpan(a)); }Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm4EEvRT_RKSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm5EEvRT_RKSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicBytehLm5EEvRT_RKSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicBytehLm4EEvRT_RKSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI18HashedSourceWriterI8AutoFileETk9BasicBytehLm4EEvRT_RKSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicBytehLm4EEvRT_RKSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicByteSt4byteLm168EEvRT_RKSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicByteSt4byteLm8EEvRT_RKSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileETk9BasicBytehLm4EEvRT_RKSt5arrayIT0_XT1_EE |
260 | 0 | template <typename Stream, BasicByte B, size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12SizeComputerTk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicByteKhLm20EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_ETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsETk9BasicByteKhLm32EEvRT_St4spanIT0_XT1_EE |
261 | 0 | template <typename Stream, BasicByte B> void Serialize(Stream& s, std::span<B> span) { s.write(std::as_bytes(span)); }Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicByteKhEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI12SizeComputerTk9BasicByteKhEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicByteKhEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicByteSt4byteEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicByteKhEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicByteKhEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicByteKSt4byteEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicBytecEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicByteKSt4byteEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicByteKcEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicByteKSt4byteEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI12SizeComputerTk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileETk9BasicByteKhEvRT_St4spanIT0_Lm18446744073709551615EE |
262 | | |
263 | | template <typename Stream, CharNotInt8 V> void Unserialize(Stream&, V) = delete; // char serialization forbidden. Use uint8_t or int8_t |
264 | 0 | template <typename Stream> void Unserialize(Stream& s, std::byte& a) { a = std::byte(ser_readdata8(s)); } |
265 | 0 | template <typename Stream> void Unserialize(Stream& s, int8_t& a) { a = int8_t(ser_readdata8(s)); }Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Ra Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Ra Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Ra |
266 | 0 | template <typename Stream> void Unserialize(Stream& s, uint8_t& a) { a = ser_readdata8(s); }Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI10SpanReaderEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_Rh Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEvRT_Rh |
267 | 0 | template <typename Stream> void Unserialize(Stream& s, int16_t& a) { a = int16_t(ser_readdata16(s)); }Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rs Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rs Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rs |
268 | 45.2k | template <typename Stream> void Unserialize(Stream& s, uint16_t& a) { a = ser_readdata16(s); }Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rt Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rt _Z11UnserializeI10SpanReaderEvRT_Rt Line | Count | Source | 268 | 45.2k | template <typename Stream> void Unserialize(Stream& s, uint16_t& a) { a = ser_readdata16(s); } |
Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rt |
269 | 0 | template <typename Stream> void Unserialize(Stream& s, int32_t& a) { a = int32_t(ser_readdata32(s)); }Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Ri Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Ri Unexecuted instantiation: _Z11UnserializeI10SpanReaderEvRT_Ri Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Ri Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEvRT_Ri Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Ri Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Ri Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEvRT_Ri Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEvRT_Ri Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Ri Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEvRT_Ri Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEvRT_Ri |
270 | 0 | template <typename Stream> void Unserialize(Stream& s, uint32_t& a) { a = ser_readdata32(s); }Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Rj Unexecuted instantiation: _Z11UnserializeI10SpanReaderEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEvRT_Rj Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_Rj Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEvRT_Rj |
271 | 0 | template <typename Stream> void Unserialize(Stream& s, int64_t& a) { a = int64_t(ser_readdata64(s)); }Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEvRT_Rl Unexecuted instantiation: _Z11UnserializeI10SpanReaderEvRT_Rl Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_Rl Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEvRT_Rl |
272 | 0 | template <typename Stream> void Unserialize(Stream& s, uint64_t& a) { a = ser_readdata64(s); }Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rm Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rm Unexecuted instantiation: _Z11UnserializeI10SpanReaderEvRT_Rm Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rm |
273 | | |
274 | 0 | template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, B (&a)[N]) { s.read(MakeWritableByteSpan(a)); }Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderTk9BasicBytehLm4EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI10DataStreamTk9BasicBytehLm4EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderTk9BasicBytehLm5EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderTk9BasicBytecLm12EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytecLm368EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytecLm12EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehLm20EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_ Unexecuted instantiation: _Z11UnserializeI10DataStreamTk9BasicBytecLm12EEvRT_RAT1__T0_ |
275 | 0 | template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, std::array<B, N>& a) { s.read(MakeWritableByteSpan(a)); }Unexecuted instantiation: _Z11UnserializeI10SpanReaderTk9BasicBytehLm4EEvRT_RSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z11UnserializeI10SpanReaderTk9BasicBytehLm5EEvRT_RSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehLm5EEvRT_RSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehLm4EEvRT_RSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicByteSt4byteLm20EEvRT_RSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z11UnserializeI12HashVerifierI10DataStreamETk9BasicBytehLm4EEvRT_RSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z11UnserializeI12HashVerifierI8AutoFileETk9BasicBytehLm4EEvRT_RSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z11UnserializeI10DataStreamTk9BasicBytehLm4EEvRT_RSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicByteSt4byteLm8EEvRT_RSt5arrayIT0_XT1_EE Unexecuted instantiation: _Z11UnserializeI12BufferedFileTk9BasicBytehLm4EEvRT_RSt5arrayIT0_XT1_EE |
276 | 0 | template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, std::span<B, N> span) { s.read(std::as_writable_bytes(span)); } |
277 | 0 | template <typename Stream, BasicByte B> void Unserialize(Stream& s, std::span<B> span) { s.read(std::as_writable_bytes(span)); }Unexecuted instantiation: _Z11UnserializeI10SpanReaderTk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI10DataStreamTk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEETk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehEvRT_St4spanIT0_Lm18446744073709551615EE |
278 | | |
279 | 0 | template <typename Stream> void Serialize(Stream& s, bool a) { uint8_t f = a; ser_writedata8(s, f); }Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_b Unexecuted instantiation: _Z9SerializeI12VectorWriterEvRT_b Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_b |
280 | 0 | template <typename Stream> void Unserialize(Stream& s, bool& a) { uint8_t f = ser_readdata8(s); a = f; }Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rb Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rb Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rb |
281 | | // clang-format on |
282 | | |
283 | | |
284 | | /** |
285 | | * Compact Size |
286 | | * size < 253 -- 1 byte |
287 | | * size <= USHRT_MAX -- 3 bytes (253 + 2 bytes) |
288 | | * size <= UINT_MAX -- 5 bytes (254 + 4 bytes) |
289 | | * size > UINT_MAX -- 9 bytes (255 + 8 bytes) |
290 | | */ |
291 | | constexpr inline unsigned int GetSizeOfCompactSize(uint64_t nSize) |
292 | 0 | { |
293 | 0 | if (nSize < 253) return sizeof(unsigned char); Branch (293:9): [True: 0, False: 0]
|
294 | 0 | else if (nSize <= std::numeric_limits<uint16_t>::max()) return sizeof(unsigned char) + sizeof(uint16_t); Branch (294:14): [True: 0, False: 0]
|
295 | 0 | else if (nSize <= std::numeric_limits<unsigned int>::max()) return sizeof(unsigned char) + sizeof(unsigned int); Branch (295:14): [True: 0, False: 0]
|
296 | 0 | else return sizeof(unsigned char) + sizeof(uint64_t); |
297 | 0 | } |
298 | | |
299 | | inline void WriteCompactSize(SizeComputer& os, uint64_t nSize); |
300 | | |
301 | | template<typename Stream> |
302 | | void WriteCompactSize(Stream& os, uint64_t nSize) |
303 | 1.63M | { |
304 | 1.63M | if (nSize < 253) Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 1.55M, False: 84.2k]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
Branch (304:9): [True: 0, False: 0]
|
305 | 1.55M | { |
306 | 1.55M | ser_writedata8(os, nSize); |
307 | 1.55M | } |
308 | 84.2k | else if (nSize <= std::numeric_limits<uint16_t>::max()) Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 84.2k, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
Branch (308:14): [True: 0, False: 0]
|
309 | 84.2k | { |
310 | 84.2k | ser_writedata8(os, 253); |
311 | 84.2k | ser_writedata16(os, nSize); |
312 | 84.2k | } |
313 | 0 | else if (nSize <= std::numeric_limits<unsigned int>::max()) Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
Branch (313:14): [True: 0, False: 0]
|
314 | 0 | { |
315 | 0 | ser_writedata8(os, 254); |
316 | 0 | ser_writedata32(os, nSize); |
317 | 0 | } |
318 | 0 | else |
319 | 0 | { |
320 | 0 | ser_writedata8(os, 255); |
321 | 0 | ser_writedata64(os, nSize); |
322 | 0 | } |
323 | 1.63M | return; |
324 | 1.63M | } Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI8AutoFileEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12VectorWriterEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_m _Z16WriteCompactSizeI10DataStreamEvRT_m Line | Count | Source | 303 | 1.63M | { | 304 | 1.63M | if (nSize < 253) Branch (304:9): [True: 1.55M, False: 84.2k]
| 305 | 1.55M | { | 306 | 1.55M | ser_writedata8(os, nSize); | 307 | 1.55M | } | 308 | 84.2k | else if (nSize <= std::numeric_limits<uint16_t>::max()) Branch (308:14): [True: 84.2k, False: 0]
| 309 | 84.2k | { | 310 | 84.2k | ser_writedata8(os, 253); | 311 | 84.2k | ser_writedata16(os, nSize); | 312 | 84.2k | } | 313 | 0 | else if (nSize <= std::numeric_limits<unsigned int>::max()) Branch (313:14): [True: 0, False: 0]
| 314 | 0 | { | 315 | 0 | ser_writedata8(os, 254); | 316 | 0 | ser_writedata32(os, nSize); | 317 | 0 | } | 318 | 0 | else | 319 | 0 | { | 320 | 0 | ser_writedata8(os, 255); | 321 | 0 | ser_writedata64(os, nSize); | 322 | 0 | } | 323 | 1.63M | return; | 324 | 1.63M | } |
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12SizeComputerEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI10HashWriterEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI14BufferedWriterI8AutoFileEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_m Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_m |
325 | | |
326 | | /** |
327 | | * Decode a CompactSize-encoded variable-length integer. |
328 | | * |
329 | | * As these are primarily used to encode the size of vector-like serializations, by default a range |
330 | | * check is performed. When used as a generic number encoding, range_check should be set to false. |
331 | | */ |
332 | | template<typename Stream> |
333 | | uint64_t ReadCompactSize(Stream& is, bool range_check = true) |
334 | 3.33M | { |
335 | 3.33M | uint8_t chSize = ser_readdata8(is); |
336 | 3.33M | uint64_t nSizeRet = 0; |
337 | 3.33M | if (chSize < 253) Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 1.75M, False: 1.53M]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 16.2k, False: 30.0k]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
Branch (337:9): [True: 0, False: 0]
|
338 | 1.76M | { |
339 | 1.76M | nSizeRet = chSize; |
340 | 1.76M | } |
341 | 1.56M | else if (chSize == 253) Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 1.53M, False: 5.74k]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 30.2k, False: 18.4E]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
Branch (341:14): [True: 0, False: 0]
|
342 | 1.56M | { |
343 | 1.56M | nSizeRet = ser_readdata16(is); |
344 | 1.56M | if (nSizeRet < 253) Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 1.53M]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 30.2k]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
Branch (344:13): [True: 0, False: 0]
|
345 | 0 | throw std::ios_base::failure("non-canonical ReadCompactSize()"); |
346 | 1.56M | } |
347 | 5.51k | else if (chSize == 254) Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 5.74k]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 18.4E]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
Branch (347:14): [True: 0, False: 0]
|
348 | 0 | { |
349 | 0 | nSizeRet = ser_readdata32(is); |
350 | 0 | if (nSizeRet < 0x10000u) Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
Branch (350:13): [True: 0, False: 0]
|
351 | 0 | throw std::ios_base::failure("non-canonical ReadCompactSize()"); |
352 | 0 | } |
353 | 5.51k | else |
354 | 5.51k | { |
355 | 5.51k | nSizeRet = ser_readdata64(is); |
356 | 5.51k | if (nSizeRet < 0x100000000ULL) Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 5.74k]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 18.4E]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
Branch (356:13): [True: 0, False: 0]
|
357 | 0 | throw std::ios_base::failure("non-canonical ReadCompactSize()"); |
358 | 5.51k | } |
359 | 3.33M | if (range_check && nSizeRet > MAX_SIZE) { Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 3.28M, False: 1.26k]
Branch (359:24): [True: 0, False: 3.28M]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 46.5k, False: 18.4E]
Branch (359:24): [True: 0, False: 46.5k]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
Branch (359:9): [True: 0, False: 0]
Branch (359:24): [True: 0, False: 0]
|
360 | 0 | throw std::ios_base::failure("ReadCompactSize(): size too large"); |
361 | 0 | } |
362 | 3.33M | return nSizeRet; |
363 | 3.33M | } Unexecuted instantiation: _Z15ReadCompactSizeI8AutoFileEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEmRT_b _Z15ReadCompactSizeI10SpanReaderEmRT_b Line | Count | Source | 334 | 3.28M | { | 335 | 3.28M | uint8_t chSize = ser_readdata8(is); | 336 | 3.28M | uint64_t nSizeRet = 0; | 337 | 3.28M | if (chSize < 253) Branch (337:9): [True: 1.75M, False: 1.53M]
| 338 | 1.75M | { | 339 | 1.75M | nSizeRet = chSize; | 340 | 1.75M | } | 341 | 1.53M | else if (chSize == 253) Branch (341:14): [True: 1.53M, False: 5.74k]
| 342 | 1.53M | { | 343 | 1.53M | nSizeRet = ser_readdata16(is); | 344 | 1.53M | if (nSizeRet < 253) Branch (344:13): [True: 0, False: 1.53M]
| 345 | 0 | throw std::ios_base::failure("non-canonical ReadCompactSize()"); | 346 | 1.53M | } | 347 | 5.74k | else if (chSize == 254) Branch (347:14): [True: 0, False: 5.74k]
| 348 | 0 | { | 349 | 0 | nSizeRet = ser_readdata32(is); | 350 | 0 | if (nSizeRet < 0x10000u) Branch (350:13): [True: 0, False: 0]
| 351 | 0 | throw std::ios_base::failure("non-canonical ReadCompactSize()"); | 352 | 0 | } | 353 | 5.74k | else | 354 | 5.74k | { | 355 | 5.74k | nSizeRet = ser_readdata64(is); | 356 | 5.74k | if (nSizeRet < 0x100000000ULL) Branch (356:13): [True: 0, False: 5.74k]
| 357 | 0 | throw std::ios_base::failure("non-canonical ReadCompactSize()"); | 358 | 5.74k | } | 359 | 3.28M | if (range_check && nSizeRet > MAX_SIZE) { Branch (359:9): [True: 3.28M, False: 1.26k]
Branch (359:24): [True: 0, False: 3.28M]
| 360 | 0 | throw std::ios_base::failure("ReadCompactSize(): size too large"); | 361 | 0 | } | 362 | 3.28M | return nSizeRet; | 363 | 3.28M | } |
Unexecuted instantiation: _Z15ReadCompactSizeI12BufferedFileEmRT_b _Z15ReadCompactSizeI10DataStreamEmRT_b Line | Count | Source | 334 | 46.2k | { | 335 | 46.2k | uint8_t chSize = ser_readdata8(is); | 336 | 46.2k | uint64_t nSizeRet = 0; | 337 | 46.2k | if (chSize < 253) Branch (337:9): [True: 16.2k, False: 30.0k]
| 338 | 16.2k | { | 339 | 16.2k | nSizeRet = chSize; | 340 | 16.2k | } | 341 | 30.0k | else if (chSize == 253) Branch (341:14): [True: 30.2k, False: 18.4E]
| 342 | 30.2k | { | 343 | 30.2k | nSizeRet = ser_readdata16(is); | 344 | 30.2k | if (nSizeRet < 253) Branch (344:13): [True: 0, False: 30.2k]
| 345 | 0 | throw std::ios_base::failure("non-canonical ReadCompactSize()"); | 346 | 30.2k | } | 347 | 18.4E | else if (chSize == 254) Branch (347:14): [True: 0, False: 18.4E]
| 348 | 0 | { | 349 | 0 | nSizeRet = ser_readdata32(is); | 350 | 0 | if (nSizeRet < 0x10000u) Branch (350:13): [True: 0, False: 0]
| 351 | 0 | throw std::ios_base::failure("non-canonical ReadCompactSize()"); | 352 | 0 | } | 353 | 18.4E | else | 354 | 18.4E | { | 355 | 18.4E | nSizeRet = ser_readdata64(is); | 356 | 18.4E | if (nSizeRet < 0x100000000ULL) Branch (356:13): [True: 0, False: 18.4E]
| 357 | 0 | throw std::ios_base::failure("non-canonical ReadCompactSize()"); | 358 | 18.4E | } | 359 | 46.5k | if (range_check && nSizeRet > MAX_SIZE) { Branch (359:9): [True: 46.5k, False: 18.4E]
Branch (359:24): [True: 0, False: 46.5k]
| 360 | 0 | throw std::ios_base::failure("ReadCompactSize(): size too large"); | 361 | 0 | } | 362 | 46.2k | return nSizeRet; | 363 | 46.2k | } |
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR10DataStream20TransactionSerParamsEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12HashVerifierI14BufferedReaderI8AutoFileEEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEmRT_b Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEmRT_b |
364 | | |
365 | | /** |
366 | | * Variable-length integers: bytes are a MSB base-128 encoding of the number. |
367 | | * The high bit in each byte signifies whether another digit follows. To make |
368 | | * sure the encoding is one-to-one, one is subtracted from all but the last digit. |
369 | | * Thus, the byte sequence a[] with length len, where all but the last byte |
370 | | * has bit 128 set, encodes the number: |
371 | | * |
372 | | * (a[len-1] & 0x7F) + sum(i=1..len-1, 128^i*((a[len-i-1] & 0x7F)+1)) |
373 | | * |
374 | | * Properties: |
375 | | * * Very small (0-127: 1 byte, 128-16511: 2 bytes, 16512-2113663: 3 bytes) |
376 | | * * Every integer has exactly one encoding |
377 | | * * Encoding does not depend on size of original integer type |
378 | | * * No redundancy: every (infinite) byte sequence corresponds to a list |
379 | | * of encoded integers. |
380 | | * |
381 | | * 0: [0x00] 256: [0x81 0x00] |
382 | | * 1: [0x01] 16383: [0xFE 0x7F] |
383 | | * 127: [0x7F] 16384: [0xFF 0x00] |
384 | | * 128: [0x80 0x00] 16511: [0xFF 0x7F] |
385 | | * 255: [0x80 0x7F] 65535: [0x82 0xFE 0x7F] |
386 | | * 2^32: [0x8E 0xFE 0xFE 0xFF 0x00] |
387 | | */ |
388 | | |
389 | | /** |
390 | | * Mode for encoding VarInts. |
391 | | * |
392 | | * Currently there is no support for signed encodings. The default mode will not |
393 | | * compile with signed values, and the legacy "nonnegative signed" mode will |
394 | | * accept signed values, but improperly encode and decode them if they are |
395 | | * negative. In the future, the DEFAULT mode could be extended to support |
396 | | * negative numbers in a backwards compatible way, and additional modes could be |
397 | | * added to support different varint formats (e.g. zigzag encoding). |
398 | | */ |
399 | | enum class VarIntMode { DEFAULT, NONNEGATIVE_SIGNED }; |
400 | | |
401 | | template <VarIntMode Mode, typename I> |
402 | | struct CheckVarIntMode { |
403 | | constexpr CheckVarIntMode() |
404 | 0 | { |
405 | 0 | static_assert(Mode != VarIntMode::DEFAULT || std::is_unsigned_v<I>, "Unsigned type required with mode DEFAULT."); |
406 | 0 | static_assert(Mode != VarIntMode::NONNEGATIVE_SIGNED || std::is_signed_v<I>, "Signed type required with mode NONNEGATIVE_SIGNED."); |
407 | 0 | } Unexecuted instantiation: _ZN15CheckVarIntModeIL10VarIntMode0EjEC2Ev Unexecuted instantiation: _ZN15CheckVarIntModeIL10VarIntMode0EmEC2Ev Unexecuted instantiation: _ZN15CheckVarIntModeIL10VarIntMode1EiEC2Ev |
408 | | }; |
409 | | |
410 | | template<VarIntMode Mode, typename I> |
411 | | inline unsigned int GetSizeOfVarInt(I n) |
412 | | { |
413 | | CheckVarIntMode<Mode, I>(); |
414 | | int nRet = 0; |
415 | | while(true) { |
416 | | nRet++; |
417 | | if (n <= 0x7F) |
418 | | break; |
419 | | n = (n >> 7) - 1; |
420 | | } |
421 | | return nRet; |
422 | | } |
423 | | |
424 | | template<typename I> |
425 | | inline void WriteVarInt(SizeComputer& os, I n); |
426 | | |
427 | | template<typename Stream, VarIntMode Mode, typename I> |
428 | | void WriteVarInt(Stream& os, I n) |
429 | 0 | { |
430 | 0 | CheckVarIntMode<Mode, I>(); |
431 | 0 | unsigned char tmp[CeilDiv(sizeof(n) * 8, 7u)]; |
432 | 0 | int len=0; |
433 | 0 | while(true) { Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
Branch (433:11): [Folded - Ignored]
|
434 | 0 | tmp[len] = (n & 0x7F) | (len ? 0x80 : 0x00); Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
Branch (434:34): [True: 0, False: 0]
|
435 | 0 | if (n <= 0x7F) Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
Branch (435:13): [True: 0, False: 0]
|
436 | 0 | break; |
437 | 0 | n = (n >> 7) - 1; |
438 | 0 | len++; |
439 | 0 | } |
440 | 0 | do { |
441 | 0 | ser_writedata8(os, tmp[len]); |
442 | 0 | } while(len--); Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
Branch (442:13): [True: 0, False: 0]
|
443 | 0 | } Unexecuted instantiation: _Z11WriteVarIntI12VectorWriterL10VarIntMode1EiEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI12VectorWriterL10VarIntMode0EmEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI10DataStreamL10VarIntMode0EjEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI10DataStreamL10VarIntMode0EmEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI10DataStreamL10VarIntMode1EiEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI8AutoFileL10VarIntMode0EjEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI8AutoFileL10VarIntMode0EmEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI12SizeComputerL10VarIntMode0EjEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI12SizeComputerL10VarIntMode0EmEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI10HashWriterL10VarIntMode0EjEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI10HashWriterL10VarIntMode0EmEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI14BufferedWriterI8AutoFileEL10VarIntMode0EjEvRT_T1_ Unexecuted instantiation: _Z11WriteVarIntI14BufferedWriterI8AutoFileEL10VarIntMode0EmEvRT_T1_ |
444 | | |
445 | | template<typename Stream, VarIntMode Mode, typename I> |
446 | | I ReadVarInt(Stream& is) |
447 | 0 | { |
448 | 0 | CheckVarIntMode<Mode, I>(); |
449 | 0 | I n = 0; |
450 | 0 | while(true) { Branch (450:11): [Folded - Ignored]
Branch (450:11): [Folded - Ignored]
Branch (450:11): [Folded - Ignored]
Branch (450:11): [Folded - Ignored]
Branch (450:11): [Folded - Ignored]
Branch (450:11): [Folded - Ignored]
Branch (450:11): [Folded - Ignored]
Branch (450:11): [Folded - Ignored]
Branch (450:11): [Folded - Ignored]
Branch (450:11): [Folded - Ignored]
|
451 | 0 | unsigned char chData = ser_readdata8(is); |
452 | 0 | if (n > (std::numeric_limits<I>::max() >> 7)) { Branch (452:13): [True: 0, False: 0]
Branch (452:13): [True: 0, False: 0]
Branch (452:13): [True: 0, False: 0]
Branch (452:13): [True: 0, False: 0]
Branch (452:13): [True: 0, False: 0]
Branch (452:13): [True: 0, False: 0]
Branch (452:13): [True: 0, False: 0]
Branch (452:13): [True: 0, False: 0]
Branch (452:13): [True: 0, False: 0]
Branch (452:13): [True: 0, False: 0]
|
453 | 0 | throw std::ios_base::failure("ReadVarInt(): size too large"); |
454 | 0 | } |
455 | 0 | n = (n << 7) | (chData & 0x7F); |
456 | 0 | if (chData & 0x80) { Branch (456:13): [True: 0, False: 0]
Branch (456:13): [True: 0, False: 0]
Branch (456:13): [True: 0, False: 0]
Branch (456:13): [True: 0, False: 0]
Branch (456:13): [True: 0, False: 0]
Branch (456:13): [True: 0, False: 0]
Branch (456:13): [True: 0, False: 0]
Branch (456:13): [True: 0, False: 0]
Branch (456:13): [True: 0, False: 0]
Branch (456:13): [True: 0, False: 0]
|
457 | 0 | if (n == std::numeric_limits<I>::max()) { Branch (457:17): [True: 0, False: 0]
Branch (457:17): [True: 0, False: 0]
Branch (457:17): [True: 0, False: 0]
Branch (457:17): [True: 0, False: 0]
Branch (457:17): [True: 0, False: 0]
Branch (457:17): [True: 0, False: 0]
Branch (457:17): [True: 0, False: 0]
Branch (457:17): [True: 0, False: 0]
Branch (457:17): [True: 0, False: 0]
Branch (457:17): [True: 0, False: 0]
|
458 | 0 | throw std::ios_base::failure("ReadVarInt(): size too large"); |
459 | 0 | } |
460 | 0 | n++; |
461 | 0 | } else { |
462 | 0 | return n; |
463 | 0 | } |
464 | 0 | } |
465 | 0 | } Unexecuted instantiation: _Z10ReadVarIntI10SpanReaderL10VarIntMode0EjET1_RT_ Unexecuted instantiation: _Z10ReadVarIntI10SpanReaderL10VarIntMode0EmET1_RT_ Unexecuted instantiation: _Z10ReadVarIntI10SpanReaderL10VarIntMode1EiET1_RT_ Unexecuted instantiation: _Z10ReadVarIntI10DataStreamL10VarIntMode1EiET1_RT_ Unexecuted instantiation: _Z10ReadVarIntI10DataStreamL10VarIntMode0EjET1_RT_ Unexecuted instantiation: _Z10ReadVarIntI12HashVerifierI14BufferedReaderI8AutoFileEEL10VarIntMode0EjET1_RT_ Unexecuted instantiation: _Z10ReadVarIntI12HashVerifierI14BufferedReaderI8AutoFileEEL10VarIntMode0EmET1_RT_ Unexecuted instantiation: _Z10ReadVarIntI10DataStreamL10VarIntMode0EmET1_RT_ Unexecuted instantiation: _Z10ReadVarIntI8AutoFileL10VarIntMode0EjET1_RT_ Unexecuted instantiation: _Z10ReadVarIntI8AutoFileL10VarIntMode0EmET1_RT_ |
466 | | |
467 | | /** Simple wrapper class to serialize objects using a formatter; used by Using(). */ |
468 | | template<typename Formatter, typename T> |
469 | | class Wrapper |
470 | | { |
471 | | static_assert(std::is_lvalue_reference_v<T>, "Wrapper needs an lvalue reference type T"); |
472 | | protected: |
473 | | T m_object; |
474 | | public: |
475 | 0 | explicit Wrapper(T obj) : m_object(obj) {}Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEEC2ES9_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEEC2ESB_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEEC2ESA_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjEC2ES3_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERmEC2ES3_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERiEC2ES3_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEC2ES4_ Unexecuted instantiation: cluster_linearize.cpp:_ZN7WrapperIN12_GLOBAL__N_117DepGraphFormatterERKN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEEC2ES9_ Unexecuted instantiation: cluster_linearize.cpp:_ZN7WrapperIN12_GLOBAL__N_117DepGraphFormatterERN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERKtEC2ES3_ Unexecuted instantiation: _ZN7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEC2ES6_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CBlockSaIS4_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI17AmountCompressionRlEC2ES1_ Unexecuted instantiation: _ZN7WrapperI17ScriptCompressionR7CScriptEC2ES2_ Unexecuted instantiation: _ZN7WrapperI16TxOutCompressionR6CTxOutEC2ES2_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEEC2ESA_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERmEC2ES2_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEC2ES3_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmEC2ES2_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtEC2ES2_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEEC2ESA_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEC2ES4_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERKmEC2ES4_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERtEC2ES2_ Unexecuted instantiation: _ZN7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEEC2ES5_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI20PrefilledTransactionSaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS4_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIjSaIjEEEC2ES6_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIjSaIjEEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI17AmountCompressionRKlEC2ES2_ Unexecuted instantiation: _ZN7WrapperI17ScriptCompressionRK7CScriptEC2ES3_ Unexecuted instantiation: _ZN7WrapperI16TxOutCompressionRK6CTxOutEC2ES3_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS4_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7CTxUndoSaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS4_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERKmEC2ES3_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERKtEC2ES3_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEEC2ESB_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEC2ES4_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEEC2ES6_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI12CBlockHeaderSaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIiSaIiEEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERK9prevectorILj8EijiEEC2ES6_ Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm10EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm10EERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2ES9_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIN6wallet9CMerkleTxESaIS5_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_ESaISB_EEEC2ESE_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_ESaISB_EEEC2ESF_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI8CAddressSaIS4_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI8CAddressSaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEEC2ESB_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEC2ES4_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI4CInvSaIS4_EEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm256EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm80EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2ES8_ Unexecuted instantiation: _ZN7WrapperI22LimitedVectorFormatterILm512E16DefaultFormatterERSt6vectorIhSaIhEEEC2ES6_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI4CInvSaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI12CBlockHeaderSaIS4_EEEC2ES8_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERKdEC2ES3_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERKSt6vectorIdSaIdEEEC2ES8_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN7WrapperI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERKSt6vectorIS5_IdSaIdEESaIS7_EEEC2ESB_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERdEC2ES2_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERSt6vectorIdSaIdEEEC2ES7_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN7WrapperI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERSt6vectorIS5_IdSaIdEESaIS7_EEEC2ESA_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI9COutPointSaIS4_EEEC2ES7_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CCoinSaIS4_EEEC2ES8_ |
476 | 0 | template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: cluster_linearize.cpp:_ZNK7WrapperIN12_GLOBAL__N_117DepGraphFormatterERKN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode1EERKiE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERmE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKtE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CBlockSaIS4_EEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERKjE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERKmE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKtE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS4_EEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode1EERKiE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIjSaIjEEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS4_EEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17AmountCompressionRKlE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERmE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS4_EEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb0EERmE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIRS6_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIRS6_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode1EERiE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16TxOutCompressionR6CTxOutE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKtE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEE9SerializeI12ParamsStreamIRS9_IR12VectorWriter20TransactionSerParamsESC_EEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE9SerializeI12ParamsStreamIRSB_IR12VectorWriter20TransactionSerParamsESE_EEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE9SerializeI12ParamsStreamIRSB_IR12VectorWriter20TransactionSerParamsESE_EEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI12ParamsStreamIRSC_IR12VectorWriter20TransactionSerParamsESF_EEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIiSaIiEEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERK9prevectorILj8EijiEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI22LimitedStringFormatterILm10EERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17AmountCompressionRKlE9SerializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERmE9SerializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_ESaISB_EEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI8CAddressSaIS4_EEE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileENS4_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb0EERmE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIRS6_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIRS6_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKtE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI4CInvSaIS4_EEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS4_EEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI12CBlockHeaderSaIS4_EEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI8CAddressSaIS4_EEE9SerializeI12ParamsStreamIR12VectorWriterNS4_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb0EERmE9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIRS6_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIRS6_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS4_EEE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS4_EEE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17AmountCompressionRKlE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERmE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS4_EEE9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS4_EEE9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17AmountCompressionRKlE9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERmE9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS4_EEE9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS4_EEE9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17AmountCompressionRKlE9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERmE9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: block_policy_estimator.cpp:_ZNK7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERKdE9SerializeI8AutoFileEEvRT_ Unexecuted instantiation: block_policy_estimator.cpp:_ZNK7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERKSt6vectorIdSaIdEEE9SerializeI8AutoFileEEvRT_ Unexecuted instantiation: block_policy_estimator.cpp:_ZNK7WrapperI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERKSt6vectorIS5_IdSaIdEESaIS7_EEE9SerializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CCoinSaIS4_EEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_ |
477 | 0 | template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERmE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERiE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: cluster_linearize.cpp:_ZN7WrapperIN12_GLOBAL__N_117DepGraphFormatterERN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI16TxOutCompressionR6CTxOutE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI17AmountCompressionRlE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI17ScriptCompressionR7CScriptE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERmE11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIRS5_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIRS5_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI20PrefilledTransactionSaIS4_EEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERtE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERiE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIjSaIjEEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIjSaIjEEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaIS4_EEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7CTxUndoSaIS4_EEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERmE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIRS5_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIRS5_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI12CBlockHeaderSaIS4_EEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm10EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIN6wallet9CMerkleTxESaIS5_EEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_ESaISB_EEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI8CAddressSaIS4_EEE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileENS4_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERmE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIRS5_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIRS5_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERmE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIRS5_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIRS5_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE11UnserializeI12HashVerifierI8AutoFileEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE11UnserializeI12HashVerifierI10DataStreamEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERmE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIRS5_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIRS5_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm256EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm80EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI22LimitedVectorFormatterILm512E16DefaultFormatterERSt6vectorIhSaIhEEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI8CAddressSaIS4_EEE11UnserializeI12ParamsStreamIR10DataStreamNS4_9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI4CInvSaIS4_EEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI20PrefilledTransactionSaIS4_EEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERtE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7CTxUndoSaIS4_EEE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaIS4_EEE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI16TxOutCompressionR6CTxOutE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI17AmountCompressionRlE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERmE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI17ScriptCompressionR7CScriptE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERdE11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERSt6vectorIdSaIdEEE11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN7WrapperI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERSt6vectorIS5_IdSaIdEESaIS7_EEE11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI9COutPointSaIS4_EEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI16TxOutCompressionR6CTxOutE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI17AmountCompressionRlE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERmE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI17ScriptCompressionR7CScriptE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjE11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZN7WrapperI16TxOutCompressionR6CTxOutE11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZN7WrapperI17AmountCompressionRlE11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERmE11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZN7WrapperI17ScriptCompressionR7CScriptE11UnserializeI8AutoFileEEvRT_ |
478 | | }; |
479 | | |
480 | | /** Cause serialization/deserialization of an object to be done using a specified formatter class. |
481 | | * |
482 | | * To use this, you need a class Formatter that has public functions Ser(stream, const object&) for |
483 | | * serialization, and Unser(stream, object&) for deserialization. Serialization routines (inside |
484 | | * READWRITE, or directly with << and >> operators), can then use Using<Formatter>(object). |
485 | | * |
486 | | * This works by constructing a Wrapper<Formatter, T>-wrapped version of object, where T is |
487 | | * const during serialization, and non-const during deserialization, which maintains const |
488 | | * correctness. |
489 | | */ |
490 | | template<typename Formatter, typename T> |
491 | 0 | static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }Unexecuted instantiation: addition_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: addition_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: addition_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: addition_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: autofile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: autofile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: autofile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: autofile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: banman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: banman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: banman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: banman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: bip324.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: bip324.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: bip324.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: bip324.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: bitdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: bitdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: bitdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: bitdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: bitset.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: bitset.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: bitset.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: bitset.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: block_index_tree.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block_index_tree.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block_index_tree.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: block_index_tree.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: blockfilter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockfilter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockfilter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: blockfilter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: buffered_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: buffered_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: buffered_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: buffered_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: chain.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: chain.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: chain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: chain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: chain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: chain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: checkqueue.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: checkqueue.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: checkqueue.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: checkqueue.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingIN12_GLOBAL__N_117DepGraphFormatterERKN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingIN12_GLOBAL__N_117DepGraphFormatterERN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: cmpctblock.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: cmpctblock.cpp:_ZL5UsingI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: cmpctblock.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CBlockSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI17AmountCompressionRlE7WrapperIT_RT0_EOS4_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: coinscache_sim.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coinscache_sim.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coinscache_sim.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: coinscache_sim.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: connman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: connman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: connman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: connman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypto.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypto.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypto_aes256.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_aes256.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_aes256.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypto_aes256.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypto_aes256cbc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_aes256cbc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_aes256cbc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypto_aes256cbc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypto_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypto_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypto_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypto_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypto_poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypto_poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypto_poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: cuckoocache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: cuckoocache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: cuckoocache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: cuckoocache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: dbwrapper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: dbwrapper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: dbwrapper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: dbwrapper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb0EERmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKjE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKmE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERtE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI16DefaultFormatterRSt10shared_ptrIK12CTransactionEE7WrapperIT_RT0_EOS8_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI20PrefilledTransactionSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIjSaIjEEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIjSaIjEEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI17AmountCompressionRlE7WrapperIT_RT0_EOS4_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI17AmountCompressionRKlE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7CTxUndoSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: difference_formatter.cpp:_ZL5UsingI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: feefrac.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: feefrac.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: feefrac.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: feefrac.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: fee_rate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: fee_rate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: fee_rate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: fee_rate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: feeratediagram.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: feeratediagram.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: feeratediagram.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: feeratediagram.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: float.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: float.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: float.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: float.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: golomb_rice.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: golomb_rice.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: golomb_rice.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: golomb_rice.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI12CBlockHeaderSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: http_request.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: http_request.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: http_request.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: http_request.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: i2p.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: i2p.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: i2p.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: i2p.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: integer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: integer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: integer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: integer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: key.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: key.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: key.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: key.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: kitchen_sink.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: kitchen_sink.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: kitchen_sink.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: kitchen_sink.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: load_external_block_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: load_external_block_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: load_external_block_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: load_external_block_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: miniscript.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: miniscript.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: miniscript.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: miniscript.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: minisketch.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: minisketch.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: minisketch.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: minisketch.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: mini_miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mini_miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mini_miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: mini_miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: muhash.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: muhash.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: muhash.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: muhash.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: multiplication_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: multiplication_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: multiplication_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: multiplication_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: net.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: net.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: net.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: net.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: net_permissions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_permissions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_permissions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: net_permissions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: netaddress.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: netaddress.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: netaddress.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: netaddress.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: netbase_dns_lookup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: netbase_dns_lookup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: netbase_dns_lookup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: netbase_dns_lookup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: node_eviction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: node_eviction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: node_eviction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: node_eviction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: p2p_handshake.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: p2p_handshake.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: p2p_handshake.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: p2p_handshake.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CBlockSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: p2p_transport_serialization.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: p2p_transport_serialization.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: p2p_transport_serialization.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: p2p_transport_serialization.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: pcp.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: pcp.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: pcp.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: pcp.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: package_eval.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: package_eval.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: package_eval.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: package_eval.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: parse_hd_keypath.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: parse_hd_keypath.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: parse_hd_keypath.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: parse_hd_keypath.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: policy_estimator_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: policy_estimator_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: policy_estimator_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: policy_estimator_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: poolresource.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: poolresource.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: poolresource.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: poolresource.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: pow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: pow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: pow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: pow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: prevector.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIiSaIiEEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: prevector.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERK9prevectorILj8EijiEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: process_message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: process_message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: process_message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: process_message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: process_messages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: process_messages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: process_messages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: process_messages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: protocol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: protocol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: protocol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: protocol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: random.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: random.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: random.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: random.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: rolling_bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rolling_bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rolling_bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: rolling_bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: script.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: script.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: script_assets_test_minimizer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_assets_test_minimizer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_assets_test_minimizer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_descriptor_cache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_descriptor_cache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_descriptor_cache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: script_descriptor_cache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: script_flags.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_flags.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_flags.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_format.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_format.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_format.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: script_format.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: script_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: script_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIjSaIjEEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: scriptnum_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: scriptnum_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: scriptnum_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: scriptnum_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: signature_checker.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: signature_checker.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: signature_checker.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: signature_checker.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: socks5.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: socks5.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: socks5.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: socks5.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: span.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: span.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: span.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: span.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: string.cpp:_ZL5UsingI22LimitedStringFormatterILm10EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: string.cpp:_ZL5UsingI22LimitedStringFormatterILm10EERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: string.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: string.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: string.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: string.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: strprintf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: strprintf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: strprintf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: strprintf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: system.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: system.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: system.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: system.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: timeoffsets.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: timeoffsets.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: timeoffsets.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: timeoffsets.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: torcontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: torcontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: torcontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: torcontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: txdownloadman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txdownloadman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txdownloadman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: txdownloadman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: tx_in.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: tx_in.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_in.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_in.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: tx_out.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_out.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_out.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: tx_out.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: tx_pool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_pool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_pool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: tx_pool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: txorphan.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txorphan.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txorphan.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: txorphan.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI17AmountCompressionRKlE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: utxo_total_supply.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: utxo_total_supply.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: utxo_total_supply.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: utxo_total_supply.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: validation_load_mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: validation_load_mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: validation_load_mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: validation_load_mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: vecdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: vecdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: vecdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: vecdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: versionbits.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: versionbits.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: versionbits.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: versionbits.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: coincontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coincontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coincontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: coincontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: coinselection.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coinselection.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coinselection.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: coinselection.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: crypter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: crypter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: crypter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: spend.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: spend.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: spend.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: spend.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: wallet_bdb_parser.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: wallet_bdb_parser.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: wallet_bdb_parser.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: wallet_bdb_parser.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: threadinterrupt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: threadinterrupt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: threadinterrupt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: threadinterrupt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: fuzz.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: fuzz.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: fuzz.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: fuzz.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: util.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: util.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: util.cpp:_ZL5UsingI17AmountCompressionRlE7WrapperIT_RT0_EOS4_ Unexecuted instantiation: util.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: util.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: core_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: core_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: core_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: core_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: core_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: core_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: core_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: core_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: descriptor.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: descriptor.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: descriptor.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: descriptor.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: wallet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: wallet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: wallet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: wallet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIjSaIjEEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIN6wallet9CMerkleTxESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_ESaISB_EEE7WrapperIT_RT0_EOSH_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_ESaISB_EEE7WrapperIT_RT0_EOSI_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIjSaIjEEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: feebumper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: feebumper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: feebumper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: feebumper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: backup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: transactions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: transactions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: transactions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: transactions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: mining.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mining.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mining.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: mining.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: net.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: net.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: net.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: transaction_utils.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: transaction_utils.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: transaction_utils.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: transaction_utils.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: txmempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txmempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txmempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: txmempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI20CompactSizeFormatterILb0EERmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI8CAddressSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: addrdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI8CAddressSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI20CompactSizeFormatterILb0EERmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: addrman.cpp:_ZL5UsingI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: tx_verify.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_verify.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_verify.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: tx_verify.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: init.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: init.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: init.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: init.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: coinstats.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coinstats.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coinstats.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: coinstats.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI4CInvSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI22LimitedStringFormatterILm256EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI22LimitedStringFormatterILm80EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI22LimitedVectorFormatterILm512E16DefaultFormatterERSt6vectorIhSaIhEEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb0EERmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI8CAddressSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI4CInvSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEE7WrapperIT_RT0_EOS9_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI12CBlockHeaderSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CBlockSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERtE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI16DefaultFormatterRSt10shared_ptrIK12CTransactionEE7WrapperIT_RT0_EOS8_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI20PrefilledTransactionSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS2_8durationIlSt5ratioILl1ELl1EEEEEEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI8CAddressSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockmanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockmanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockmanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: blockmanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKjE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKmE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI17AmountCompressionRlE7WrapperIT_RT0_EOS4_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7CTxUndoSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI17AmountCompressionRKlE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: chainstate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: chainstate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: chainstate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: chainstate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: chainstatemanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: chainstatemanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: chainstatemanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: chainstatemanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: context.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: context.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: context.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: context.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: interfaces.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: interfaces.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: interfaces.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: interfaces.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: mempool_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mempool_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mempool_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: mempool_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: mempool_persist_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mempool_persist_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mempool_persist_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: mempool_persist_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: mining_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mining_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: mining_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: mining_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: peerman_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: peerman_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: peerman_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: peerman_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: txdownloadman_impl.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txdownloadman_impl.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txdownloadman_impl.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: txdownloadman_impl.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: txorphanage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txorphanage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txorphanage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: txorphanage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingIN12_GLOBAL__N_122EncodedDoubleFormatterERKdE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERKSt6vectorIdSaIdEEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERKSt6vectorIS5_IdSaIdEESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingIN12_GLOBAL__N_122EncodedDoubleFormatterERdE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERSt6vectorIdSaIdEEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERSt6vectorIS5_IdSaIdEESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: block_policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: packages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: packages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: packages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: packages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: settings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: settings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: settings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: settings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI9COutPointSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CCoinSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI17AmountCompressionRKlE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: node.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: node.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: node.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: node.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: rawtransaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rawtransaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rawtransaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: rawtransaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: server.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: server.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: server.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: server.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: server_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: server_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: server_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: server_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI17AmountCompressionRlE7WrapperIT_RT0_EOS4_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEmE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI17AmountCompressionRKlE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: txdb.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSD_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: validation.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERmE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: validation.cpp:_ZL5UsingI17AmountCompressionRlE7WrapperIT_RT0_EOS4_ Unexecuted instantiation: validation.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: validation.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_ Unexecuted instantiation: validationinterface.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: validationinterface.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: validationinterface.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: validationinterface.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKjE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: coinstatsindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coinstatsindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coinstatsindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: coinstatsindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKjE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKjE7WrapperIT_RT0_EOS7_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSA_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_ Unexecuted instantiation: txospenderindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: coin.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coin.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: coin.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: coin.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: ephemeral_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: ephemeral_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: ephemeral_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: ephemeral_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: truc_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: truc_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: truc_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: truc_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: external_signer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: external_signer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: external_signer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: rawtransaction_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rawtransaction_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: rawtransaction_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: rawtransaction_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: tx_check.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_check.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaIS4_EEE7WrapperIT_RT0_EOSB_ Unexecuted instantiation: tx_check.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ Unexecuted instantiation: tx_check.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS7_EEE7WrapperIT_RT0_EOSE_ Unexecuted instantiation: interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_IhSaIhEESaIS5_EEE7WrapperIT_RT0_EOSC_ |
492 | | |
493 | 0 | #define VARINT_MODE(obj, mode) Using<VarIntFormatter<mode>>(obj) |
494 | 0 | #define VARINT(obj) Using<VarIntFormatter<VarIntMode::DEFAULT>>(obj) |
495 | 0 | #define COMPACTSIZE(obj) Using<CompactSizeFormatter<true>>(obj) |
496 | 0 | #define LIMITED_STRING(obj,n) Using<LimitedStringFormatter<n>>(obj) |
497 | 0 | #define LIMITED_VECTOR(obj,n) Using<LimitedVectorFormatter<n>>(obj) |
498 | | |
499 | | /** Serialization wrapper class for integers in VarInt format. */ |
500 | | template<VarIntMode Mode> |
501 | | struct VarIntFormatter |
502 | | { |
503 | | template<typename Stream, typename I> void Ser(Stream &s, I v) |
504 | 0 | { |
505 | 0 | WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v); |
506 | 0 | } Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode1EE3SerI12VectorWriteriEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI12VectorWritermEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI10DataStreamjEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI10DataStreammEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode1EE3SerI10DataStreamiEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI8AutoFilejEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI8AutoFilemEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI12SizeComputerjEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI12SizeComputermEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI10HashWriterjEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI10HashWritermEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI14BufferedWriterI8AutoFileEjEEvRT_T0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI14BufferedWriterI8AutoFileEmEEvRT_T0_ |
507 | | |
508 | | template<typename Stream, typename I> void Unser(Stream& s, I& v) |
509 | 0 | { |
510 | 0 | v = ReadVarInt<Stream,Mode, std::remove_cv_t<I>>(s); |
511 | 0 | } Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10SpanReaderjEEvRT_RT0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10SpanReadermEEvRT_RT0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode1EE5UnserI10SpanReaderiEEvRT_RT0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode1EE5UnserI10DataStreamiEEvRT_RT0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10DataStreamjEEvRT_RT0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEjEEvRT_RT0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEmEEvRT_RT0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10DataStreammEEvRT_RT0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI8AutoFilejEEvRT_RT0_ Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI8AutoFilemEEvRT_RT0_ |
512 | | }; |
513 | | |
514 | | /** Serialization wrapper class for custom integers and enums. |
515 | | * |
516 | | * It permits specifying the serialized size (1 to 8 bytes) and endianness. |
517 | | * |
518 | | * Use the big endian mode for values that are stored in memory in native |
519 | | * byte order, but serialized in big endian notation. This is only intended |
520 | | * to implement serializers that are compatible with existing formats, and |
521 | | * its use is not recommended for new data structures. |
522 | | */ |
523 | | template<int Bytes, bool BigEndian = false> |
524 | | struct CustomUintFormatter |
525 | | { |
526 | | static_assert(Bytes > 0 && Bytes <= 8, "CustomUintFormatter Bytes out of range"); |
527 | | static constexpr uint64_t MAX = 0xffffffffffffffff >> (8 * (8 - Bytes)); |
528 | | |
529 | | template <typename Stream, typename I> void Ser(Stream& s, I v) |
530 | 0 | { |
531 | 0 | if (v < 0 || v > MAX) throw std::ios_base::failure("CustomUintFormatter value out of range"); Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
Branch (531:13): [True: 0, False: 0]
Branch (531:22): [True: 0, False: 0]
|
532 | 0 | if (BigEndian) { Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
Branch (532:13): [Folded - Ignored]
|
533 | 0 | uint64_t raw = htobe64_internal(v); |
534 | 0 | s.write(std::as_bytes(std::span{&raw, 1}).last(Bytes)); |
535 | 0 | } else { |
536 | 0 | uint64_t raw = htole64_internal(v); |
537 | 0 | s.write(std::as_bytes(std::span{&raw, 1}).first(Bytes)); |
538 | 0 | } |
539 | 0 | } Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE3SerI12VectorWritermEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE3SerI10DataStreammEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEtEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE12ServiceFlagsEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEmEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE3SerI12VectorWriter12ServiceFlagsEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEtEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE12ServiceFlagsEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIRS2_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE3SerI12SizeComputermEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE12ServiceFlagsEEvRT_T0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIRS2_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_T0_ |
540 | | |
541 | | template <typename Stream, typename I> void Unser(Stream& s, I& v) |
542 | 0 | { |
543 | 0 | using U = typename std::conditional_t<std::is_enum_v<I>, std::underlying_type<I>, std::common_type<I>>::type; |
544 | 0 | static_assert(std::numeric_limits<U>::max() >= MAX && std::numeric_limits<U>::min() <= 0, "Assigned type too small"); |
545 | 0 | uint64_t raw = 0; |
546 | 0 | if (BigEndian) { Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
Branch (546:13): [Folded - Ignored]
|
547 | 0 | s.read(std::as_writable_bytes(std::span{&raw, 1}).last(Bytes)); |
548 | 0 | v = static_cast<I>(be64toh_internal(raw)); |
549 | 0 | } else { |
550 | 0 | s.read(std::as_writable_bytes(std::span{&raw, 1}).first(Bytes)); |
551 | 0 | v = static_cast<I>(le64toh_internal(raw)); |
552 | 0 | } |
553 | 0 | } Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE5UnserI10SpanReadermEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEtEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEtEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi1ELb0EE5UnserI8AutoFileN11AddrManImpl6FormatEEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi1ELb0EE5UnserI12HashVerifierI8AutoFileEN11AddrManImpl6FormatEEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi1ELb0EE5UnserI10DataStreamN11AddrManImpl6FormatEEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi1ELb0EE5UnserI12HashVerifierI10DataStreamEN11AddrManImpl6FormatEEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEtEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI10DataStream12ServiceFlagsEEvRT_RT0_ Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE5UnserI10DataStreammEEvRT_RT0_ |
554 | | }; |
555 | | |
556 | | template<int Bytes> using BigEndianFormatter = CustomUintFormatter<Bytes, true>; |
557 | | |
558 | | /** Formatter for integers in CompactSize format. */ |
559 | | template<bool RangeCheck> |
560 | | struct CompactSizeFormatter |
561 | | { |
562 | | template<typename Stream, typename I> |
563 | | void Unser(Stream& s, I& v) |
564 | 0 | { |
565 | 0 | uint64_t n = ReadCompactSize<Stream>(s, RangeCheck); |
566 | 0 | if (n < std::numeric_limits<I>::min() || n > std::numeric_limits<I>::max()) { Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
Branch (566:13): [True: 0, False: 0]
Branch (566:50): [True: 0, False: 0]
|
567 | 0 | throw std::ios_base::failure("CompactSize exceeds limit of type"); |
568 | 0 | } |
569 | 0 | v = n; |
570 | 0 | } Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI10SpanReadertEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEmEEvRT_RT0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI10DataStreamtEEvRT_RT0_ |
571 | | |
572 | | template<typename Stream, typename I> |
573 | | void Ser(Stream& s, I v) |
574 | 0 | { |
575 | 0 | static_assert(std::is_unsigned_v<I>, "CompactSize only supported for unsigned integers"); |
576 | 0 | static_assert(std::numeric_limits<I>::max() <= std::numeric_limits<uint64_t>::max(), "CompactSize only supports 64-bit integers and below"); |
577 | |
|
578 | 0 | WriteCompactSize<Stream>(s, v); |
579 | 0 | } Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12VectorWritertEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI10DataStreamtEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEmEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEmEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEtEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEmEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEmEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIRS2_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEmEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEmEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12SizeComputertEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEmEEvRT_T0_ Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIRS2_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_T0_ |
580 | | }; |
581 | | |
582 | | template <typename U, bool LOSSY = false> |
583 | | struct ChronoFormatter { |
584 | | template <typename Stream, typename Tp> |
585 | | void Unser(Stream& s, Tp& tp) |
586 | 0 | { |
587 | 0 | U u; |
588 | 0 | s >> u; |
589 | | // Lossy deserialization does not make sense, so force Wnarrowing |
590 | 0 | tp = Tp{typename Tp::duration{typename Tp::duration::rep{u}}}; |
591 | 0 | } Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE5UnserI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNS8_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ Unexecuted instantiation: _ZN15ChronoFormatterIlLb0EE5UnserI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNS8_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNS8_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNS8_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ Unexecuted instantiation: _ZN15ChronoFormatterIlLb0EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNS8_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ Unexecuted instantiation: _ZN15ChronoFormatterIlLb0EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ Unexecuted instantiation: _ZN15ChronoFormatterIlLb0EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNS8_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ Unexecuted instantiation: _ZN15ChronoFormatterIlLb0EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_RT0_ |
592 | | template <typename Stream, typename Tp> |
593 | | void Ser(Stream& s, Tp tp) |
594 | 0 | { |
595 | 0 | if constexpr (LOSSY) { |
596 | 0 | s << U(tp.time_since_epoch().count()); |
597 | 0 | } else { |
598 | 0 | s << U{tp.time_since_epoch().count()}; |
599 | 0 | } |
600 | 0 | } Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNS8_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_T0_ Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_T0_ Unexecuted instantiation: _ZN15ChronoFormatterIlLb0EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_T0_ Unexecuted instantiation: _ZN15ChronoFormatterIlLb0EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNS8_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_T0_ Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEENSt6chrono10time_pointI9NodeClockNS8_8durationIlSt5ratioILl1ELl1EEEEEEEEvRT_T0_ |
601 | | }; |
602 | | template <typename U> |
603 | | using LossyChronoFormatter = ChronoFormatter<U, true>; |
604 | | |
605 | | class CompactSizeReader |
606 | | { |
607 | | protected: |
608 | | uint64_t& n; |
609 | | public: |
610 | 0 | explicit CompactSizeReader(uint64_t& n_in) : n(n_in) {} |
611 | | |
612 | | template<typename Stream> |
613 | 0 | void Unserialize(Stream &s) const { |
614 | 0 | n = ReadCompactSize<Stream>(s); |
615 | 0 | } |
616 | | }; |
617 | | |
618 | | class CompactSizeWriter |
619 | | { |
620 | | protected: |
621 | | uint64_t n; |
622 | | public: |
623 | 0 | explicit CompactSizeWriter(uint64_t n_in) : n(n_in) { } |
624 | | |
625 | | template<typename Stream> |
626 | 0 | void Serialize(Stream &s) const { |
627 | 0 | WriteCompactSize<Stream>(s, n); |
628 | 0 | } Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI10HashWriterEEvRT_ |
629 | | }; |
630 | | |
631 | | template<size_t Limit> |
632 | | struct LimitedStringFormatter |
633 | | { |
634 | | template<typename Stream> |
635 | | void Unser(Stream& s, std::string& v) |
636 | 0 | { |
637 | 0 | size_t size = ReadCompactSize(s); |
638 | 0 | if (size > Limit) { Branch (638:13): [True: 0, False: 0]
Branch (638:13): [True: 0, False: 0]
Branch (638:13): [True: 0, False: 0]
|
639 | 0 | throw std::ios_base::failure("String length limit exceeded"); |
640 | 0 | } |
641 | 0 | v.resize(size); |
642 | 0 | if (size != 0) s.read(MakeWritableByteSpan(v)); Branch (642:13): [True: 0, False: 0]
Branch (642:13): [True: 0, False: 0]
Branch (642:13): [True: 0, False: 0]
|
643 | 0 | } Unexecuted instantiation: _ZN22LimitedStringFormatterILm10EE5UnserI10DataStreamEEvRT_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZN22LimitedStringFormatterILm256EE5UnserI10DataStreamEEvRT_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZN22LimitedStringFormatterILm80EE5UnserI10DataStreamEEvRT_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE |
644 | | |
645 | | template<typename Stream> |
646 | | void Ser(Stream& s, const std::string& v) |
647 | 0 | { |
648 | 0 | s << v; |
649 | 0 | } |
650 | | }; |
651 | | |
652 | | /** Formatter to serialize/deserialize vector elements using another formatter |
653 | | * |
654 | | * Example: |
655 | | * struct X { |
656 | | * std::vector<uint64_t> v; |
657 | | * SERIALIZE_METHODS(X, obj) { READWRITE(Using<VectorFormatter<VarInt>>(obj.v)); } |
658 | | * }; |
659 | | * will define a struct that contains a vector of uint64_t, which is serialized |
660 | | * as a vector of VarInt-encoded integers. |
661 | | * |
662 | | * V is not required to be an std::vector type. It works for any class that |
663 | | * exposes a value_type, size, reserve, emplace_back, back, and const iterators. |
664 | | */ |
665 | | template<class Formatter> |
666 | | struct VectorFormatter |
667 | | { |
668 | | template<typename Stream, typename V> |
669 | | void Ser(Stream& s, const V& v) |
670 | 0 | { |
671 | 0 | Formatter formatter; |
672 | 0 | WriteCompactSize(s, v.size()); |
673 | 0 | for (const typename V::value_type& elem : v) { Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
Branch (673:49): [True: 0, False: 0]
|
674 | 0 | formatter.Ser(s, elem); |
675 | 0 | } |
676 | 0 | } Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsESt6vectorI5CTxInSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsESt6vectorI6CTxOutSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsESt6vectorIS8_IhSaIhEESaISA_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsESt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12SizeComputerSt6vectorIS4_IhSaIhEESaIS6_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE3SerI12VectorWriterSt6vectorImSaImEEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterSt6vectorI20PrefilledTransactionSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt6vectorI5CTxInSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt6vectorI6CTxOutSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt6vectorIS8_IhSaIhEESaISA_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt6vectorI6CBlockSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE3SerI10DataStreamSt6vectorImSaImEEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamSt6vectorI20PrefilledTransactionSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorI5CTxInSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorI6CTxOutSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorIS8_IhSaIhEESaISA_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamSt6vectorI7uint256SaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamSt6vectorIjSaIjEEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamSt6vectorIS4_IhSaIhEESaIS6_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE3SerI10DataStreamSt6vectorI4CoinSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamSt6vectorI7CTxUndoSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI19DifferenceFormatterE3SerI10DataStreamSt6vectorItSaItEEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt6vectorImSaImEEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt6vectorI20PrefilledTransactionSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIRS3_IR12VectorWriter20TransactionSerParamsES6_ESt6vectorI5CTxInSaISB_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIRS3_IR12VectorWriter20TransactionSerParamsES6_ESt6vectorI6CTxOutSaISB_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIRS3_IR12VectorWriter20TransactionSerParamsES6_ESt6vectorISA_IhSaIhEESaISC_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamSt6vectorIiSaIiEEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStream9prevectorILj8EijiEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterSt6vectorIS4_IhSaIhEESaIS6_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_ESaISC_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEESt6vectorIS8_SaIS8_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE3SerI12SizeComputerSt6vectorImSaImEEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12SizeComputerSt6vectorI20PrefilledTransactionSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterSt6vectorI4CInvSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterSt6vectorI7uint256SaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterSt6vectorI12CBlockHeaderSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI19DifferenceFormatterE3SerI12VectorWriterSt6vectorItSaItEEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEESt6vectorIS6_SaIS6_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12SizeComputerSt6vectorI7CTxUndoSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE3SerI12SizeComputerSt6vectorI4CoinSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10HashWriterSt6vectorI7CTxUndoSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE3SerI10HashWriterSt6vectorI4CoinSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI14BufferedWriterI8AutoFileESt6vectorI7CTxUndoSaIS7_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE3SerI14BufferedWriterI8AutoFileESt6vectorI4CoinSaIS7_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsESt6vectorISt10shared_ptrIK12CTransactionESaISE_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsESt6vectorI5CTxInSaISB_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsESt6vectorI6CTxOutSaISB_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsESt6vectorISA_IhSaIhEESaISC_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorI5CTxInSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorI6CTxOutSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorIS8_IhSaIhEESaISA_EEEEvRT_RKT0_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEE3SerI8AutoFileSt6vectorIdSaIdEEEEvRT_RKT0_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN15VectorFormatterIS_IN12_GLOBAL__N_122EncodedDoubleFormatterEEE3SerI8AutoFileSt6vectorIS6_IdSaIdEESaIS8_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamSt6vectorI5CCoinSaIS5_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsESt6vectorI5CTxInSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsESt6vectorI6CTxOutSaIS9_EEEEvRT_RKT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsESt6vectorIS8_IhSaIhEESaISA_EEEEvRT_RKT0_ |
677 | | |
678 | | template<typename Stream, typename V> |
679 | | void Unser(Stream& s, V& v) |
680 | 0 | { |
681 | 0 | Formatter formatter; |
682 | 0 | v.clear(); |
683 | 0 | size_t size = ReadCompactSize(s); |
684 | 0 | size_t allocated = 0; |
685 | 0 | while (allocated < size) { Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
Branch (685:16): [True: 0, False: 0]
|
686 | | // For DoS prevention, do not blindly allocate as much as the stream claims to contain. |
687 | | // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide |
688 | | // X MiB of data to make us allocate X+5 Mib. |
689 | 0 | static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large"); |
690 | 0 | allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type)); |
691 | 0 | v.reserve(allocated); |
692 | 0 | while (v.size() < allocated) { Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
Branch (692:20): [True: 0, False: 0]
|
693 | 0 | v.emplace_back(); |
694 | 0 | formatter.Unser(s, v.back()); |
695 | 0 | } |
696 | 0 | } |
697 | 0 | }; Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsESt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsESt6vectorI5CTxInSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsESt6vectorI6CTxOutSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsESt6vectorIS8_IhSaIhEESaISA_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10SpanReaderSt6vectorI7uint256SaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE5UnserI10SpanReaderSt6vectorImSaImEEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10SpanReaderSt6vectorI20PrefilledTransactionSaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10SpanReaderSt6vectorIjSaIjEEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamSt6vectorIjSaIjEEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10SpanReaderSt6vectorIS4_IhSaIhEESaIS6_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE5UnserI10SpanReaderSt6vectorI4CoinSaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10SpanReaderSt6vectorI7CTxUndoSaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI19DifferenceFormatterE5UnserI10SpanReaderSt6vectorItSaItEEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI19DifferenceFormatterE5UnserI10DataStreamSt6vectorItSaItEEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10SpanReaderSt6vectorI12CBlockHeaderSaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10SpanReaderSt6vectorI5CTxInSaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10SpanReaderSt6vectorI6CTxOutSaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorI5CTxInSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorI6CTxOutSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorIS8_IhSaIhEESaISA_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamSt6vectorI7uint256SaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamSt6vectorIN6wallet9CMerkleTxESaIS6_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_ESaISC_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEESt6vectorIS8_SaIS8_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEESt6vectorIS6_SaIS6_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamSt6vectorI4CInvSaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE5UnserI10DataStreamSt6vectorImSaImEEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamSt6vectorI20PrefilledTransactionSaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12HashVerifierI14BufferedReaderI8AutoFileEESt6vectorI7CTxUndoSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE5UnserI12HashVerifierI14BufferedReaderI8AutoFileEESt6vectorI4CoinSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorI5CTxInSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorI6CTxOutSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorIS8_IhSaIhEESaISA_EEEEvRT_RT0_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEE5UnserI8AutoFileSt6vectorIdSaIdEEEEvRT_RT0_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN15VectorFormatterIS_IN12_GLOBAL__N_122EncodedDoubleFormatterEEE5UnserI8AutoFileSt6vectorIS6_IdSaIdEESaIS8_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamSt6vectorI9COutPointSaIS5_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsESt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsESt6vectorI5CTxInSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsESt6vectorI6CTxOutSaIS9_EEEEvRT_RT0_ Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsESt6vectorIS8_IhSaIhEESaISA_EEEEvRT_RT0_ |
698 | | }; |
699 | | |
700 | | /** |
701 | | * Forward declarations |
702 | | */ |
703 | | |
704 | | /** |
705 | | * string |
706 | | */ |
707 | | template<typename Stream, typename C> void Serialize(Stream& os, const std::basic_string<C>& str); |
708 | | template<typename Stream, typename C> void Unserialize(Stream& is, std::basic_string<C>& str); |
709 | | |
710 | | /** |
711 | | * string_view |
712 | | */ |
713 | | template<typename Stream, typename C> void Serialize(Stream& os, const std::basic_string_view<C>& str); |
714 | | template<typename Stream, typename C> void Unserialize(Stream& is, std::basic_string_view<C>& str) = delete; |
715 | | |
716 | | /** |
717 | | * prevector |
718 | | */ |
719 | | template<typename Stream, unsigned int N, typename T> inline void Serialize(Stream& os, const prevector<N, T>& v); |
720 | | template<typename Stream, unsigned int N, typename T> inline void Unserialize(Stream& is, prevector<N, T>& v); |
721 | | |
722 | | /** |
723 | | * vector |
724 | | */ |
725 | | template<typename Stream, typename T, typename A> inline void Serialize(Stream& os, const std::vector<T, A>& v); |
726 | | template<typename Stream, typename T, typename A> inline void Unserialize(Stream& is, std::vector<T, A>& v); |
727 | | |
728 | | /** |
729 | | * pair |
730 | | */ |
731 | | template<typename Stream, typename K, typename T> void Serialize(Stream& os, const std::pair<K, T>& item); |
732 | | template<typename Stream, typename K, typename T> void Unserialize(Stream& is, std::pair<K, T>& item); |
733 | | |
734 | | /** |
735 | | * map |
736 | | */ |
737 | | template<typename Stream, typename K, typename T, typename Pred, typename A> void Serialize(Stream& os, const std::map<K, T, Pred, A>& m); |
738 | | template<typename Stream, typename K, typename T, typename Pred, typename A> void Unserialize(Stream& is, std::map<K, T, Pred, A>& m); |
739 | | |
740 | | /** |
741 | | * set |
742 | | */ |
743 | | template<typename Stream, typename K, typename Pred, typename A> void Serialize(Stream& os, const std::set<K, Pred, A>& m); |
744 | | template<typename Stream, typename K, typename Pred, typename A> void Unserialize(Stream& is, std::set<K, Pred, A>& m); |
745 | | |
746 | | /** |
747 | | * shared_ptr |
748 | | */ |
749 | | template<typename Stream, typename T> void Serialize(Stream& os, const std::shared_ptr<const T>& p); |
750 | | template<typename Stream, typename T> void Unserialize(Stream& os, std::shared_ptr<const T>& p); |
751 | | |
752 | | /** |
753 | | * unique_ptr |
754 | | */ |
755 | | template<typename Stream, typename T> void Serialize(Stream& os, const std::unique_ptr<const T>& p); |
756 | | template<typename Stream, typename T> void Unserialize(Stream& os, std::unique_ptr<const T>& p); |
757 | | |
758 | | |
759 | | /** |
760 | | * If none of the specialized versions above matched, default to calling member function. |
761 | | */ |
762 | | template <class T, class Stream> |
763 | | concept Serializable = requires(T a, Stream s) { a.Serialize(s); }; |
764 | | template <typename Stream, typename T> |
765 | | requires Serializable<T, Stream> |
766 | | void Serialize(Stream& os, const T& a) |
767 | 1.21k | { |
768 | 1.21k | a.Serialize(os); |
769 | 1.21k | } Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS9_IhSaIhEESaISB_EEEQ12SerializableIT0_T_EEvRSI_RKSH_ Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEQ12SerializableIT0_T_EEvRSK_RKSJ_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsK5CTxInEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS5_IhSaIhEESaIS7_EEEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI10DataStream7AddrManQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream20AddrManDeterministicQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: cluster_linearize.cpp:_Z9SerializeI12VectorWriter7WrapperIN12_GLOBAL__N_117DepGraphFormatterERKN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12VectorWriter25CBlockHeaderAndShortTxIDsQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7uint256Q12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12VectorWriter20PrefilledTransactionQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI20CompactSizeFormatterILb1EERKtEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEQ12SerializableIT0_T_EEvRSF_RKSE_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS9_IhSaIhEESaISB_EEEQ12SerializableIT0_T_EEvRSI_RKSH_ Unexecuted instantiation: _Z9SerializeI12VectorWriter17BlockTransactionsQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEQ12SerializableIT0_T_EEvRSJ_RKSI_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEQ12SerializableIT0_T_EEvRSK_RKSJ_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParamsSt6vectorI6CBlockSaIS4_EEEQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CBlockSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI10DataStream11BlockFilterQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7uint256Q12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStreamN6kernel14CBlockFileInfoEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERKmEQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI10DataStream25CBlockHeaderAndShortTxIDsQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10DataStream20PrefilledTransactionQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI20CompactSizeFormatterILb1EERKtEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEQ12SerializableIT0_T_EEvRSF_RKSE_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS9_IhSaIhEESaISB_EEEQ12SerializableIT0_T_EEvRSI_RKSH_ Unexecuted instantiation: _Z9SerializeI10DataStream8CFeeRateQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream12CMerkleBlockQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream18CPartialMerkleTreeQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10DataStream9COutPointQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStream7CPubKeyQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7CScriptQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream5CTxInQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream11FlatFilePosQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI10DataStream13KeyOriginInfoQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIjSaIjEEEQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI10DataStream26PartiallySignedTransactionQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer17CompactSizeWriterQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream17CompactSizeWriterQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParams19CMutableTransactionEQ12SerializableIT0_T_EEvRS6_RKS5_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE19CMutableTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParams19CMutableTransactionEQ12SerializableIT0_T_EEvRS6_RKS5_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE19CMutableTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI10DataStream9PSBTInputQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEEQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEEQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI12SizeComputer6CTxOutQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7CScriptQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream6CTxOutQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer11XOnlyPubKeyQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7uint256Q12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream11XOnlyPubKeyQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS5_IhSaIhEESaIS7_EEEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12SizeComputer22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStream10PSBTOutputQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParams6CBlockEQ12SerializableIT0_T_EEvRS6_RKS5_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEQ12SerializableIT0_T_EEvRSK_RKSJ_ Unexecuted instantiation: _Z9SerializeI10DataStream13CBlockLocatorQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7CTxUndoQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI17AmountCompressionRKlEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10DataStream10CBlockUndoQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10DataStream4CoinQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperIN8CNetAddr9SerParamsEKS2_EQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEES3_Q12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10DataStream14CMessageHeaderQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperIN8CAddress9SerParamsEKS2_EQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEES3_Q12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEQ12SerializableIT0_T_EEvRSL_RKSK_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb0EERmEQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEES7_Q12SerializableIT0_T_EEvRSB_RKSA_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI10DataStream4CInvQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream12CBloomFilterQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream15CDiskBlockIndexQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode1EERiEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI16TxOutCompressionR6CTxOutEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI10DataStream17BlockTransactionsQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEQ12SerializableIT0_T_EEvRSJ_RKSI_ Unexecuted instantiation: _Z9SerializeI10DataStream24BlockTransactionsRequestQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEEQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI10DataStreamN4node16SnapshotMetadataEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStream7uint160Q12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams25CBlockHeaderAndShortTxIDsEQ12SerializableIT0_T_EEvRS6_RKS5_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE25CBlockHeaderAndShortTxIDsQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE20PrefilledTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI20CompactSizeFormatterILb1EERKtEQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE13ParamsWrapperIS3_7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E12CTransactionQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaISC_EEEQ12SerializableIT0_T_EEvRSJ_RKSI_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E5CTxInQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E9COutPointQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7CScriptQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaISC_EEEQ12SerializableIT0_T_EEvRSJ_RKSI_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E6CTxOutQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISB_IhSaIhEESaISD_EEEQ12SerializableIT0_T_EEvRSK_RKSJ_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams6CBlockEQ12SerializableIT0_T_EEvRS6_RKS5_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIiSaIiEEEQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERK9prevectorILj8EijiEEQ12SerializableIT0_T_EEvRSB_RKSA_ Unexecuted instantiation: _Z9SerializeI12VectorWriter26PartiallySignedTransactionQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter17CompactSizeWriterQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams19CMutableTransactionEQ12SerializableIT0_T_EEvRS6_RKS5_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE19CMutableTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12VectorWriter9PSBTInputQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEEQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI12VectorWriter6CTxOutQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7CScriptQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter11XOnlyPubKeyQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS5_IhSaIhEESaIS7_EEEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12VectorWriter22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI12VectorWriter10PSBTOutputQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI22LimitedStringFormatterILm10EERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI8AutoFileN4node16SnapshotMetadataEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI8AutoFile7uint256Q12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI8AutoFile22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI8AutoFile4CoinQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI17AmountCompressionRKlEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI10HashWriter7CPubKeyQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10HashWriter7uint256Q12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet9CWalletTxEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_ESaISD_EEEQ12SerializableIT0_T_EEvRSK_RKSJ_ Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet12CKeyMetadataEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStream6CKeyIDQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet10CMasterKeyEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet16WalletDescriptorEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEES3_Q12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI18HashedSourceWriterI8AutoFileE7AddrManQ12SerializableIT0_T_EEvRS5_RKS4_ Unexecuted instantiation: _Z9SerializeI18HashedSourceWriterI8AutoFileE13ParamsWrapperIN8CAddress9SerParamsEKSt6vectorIS4_SaIS4_EEEQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS5_SaIS5_EEEQ12SerializableIT0_T_EEvRSJ_RKSI_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEES5_Q12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEQ12SerializableIT0_T_EEvRSN_RKSM_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb0EERmEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEQ12SerializableIT0_T_EEvRSG_RKSF_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEQ12SerializableIT0_T_EEvRSF_RKSE_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEES9_Q12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSJ_RKSI_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSJ_RKSI_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7uint256Q12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE8AddrInfoQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE8CNetAddrQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSF_RKSE_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEQ12SerializableIT0_T_EEvRSN_RKSM_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7uint256Q12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE8AddrInfoQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE8CNetAddrQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEQ12SerializableIT0_T_EEvRSL_RKSK_ Unexecuted instantiation: _Z9SerializeI12SizeComputer25CBlockHeaderAndShortTxIDsQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI20PrefilledTransactionSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12SizeComputer20PrefilledTransactionQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI20CompactSizeFormatterILb1EERKtEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEQ12SerializableIT0_T_EEvRSF_RKSE_ _Z9SerializeI10DataStream11ObfuscationQ12SerializableIT0_T_EEvRS3_RKS2_ Line | Count | Source | 767 | 1.21k | { | 768 | 1.21k | a.Serialize(os); | 769 | 1.21k | } |
Unexecuted instantiation: _Z9SerializeI10HashWriter9COutPointQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10HashWriter22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10HashWriter6CTxOutQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10HashWriter7CScriptQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter14CMessageHeaderQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI4CInvSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12VectorWriter4CInvQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12VectorWriter12CMerkleBlockQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter18CPartialMerkleTreeQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7uint256SaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13CBlockLocatorQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI12CBlockHeaderSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12VectorWriter24BlockTransactionsRequestQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEEQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI12VectorWriter11BlockFilterQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperIN8CAddress9SerParamsESt6vectorIS2_SaIS2_EEEQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS3_SaIS3_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEES3_Q12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEQ12SerializableIT0_T_EEvRSL_RKSK_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb0EERmEQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEQ12SerializableIT0_T_EEvRSE_RKSD_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRSC_RKSB_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEES7_Q12SerializableIT0_T_EEvRSB_RKSA_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12SizeComputer10CBlockUndoQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7CTxUndoQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI17AmountCompressionRKlEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10HashWriter10CBlockUndoQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10HashWriter7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10HashWriter7CTxUndoQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10HashWriter7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10HashWriter7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10HashWriter7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10HashWriter7WrapperI17AmountCompressionRKlEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI10HashWriter7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI10HashWriter7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE10CBlockUndoQ12SerializableIT0_T_EEvRS5_RKS4_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI7CTxUndoSaIS8_EEEQ12SerializableIT0_T_EEvRSF_RKSE_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7CTxUndoQ12SerializableIT0_T_EEvRS5_RKS4_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS8_EEEQ12SerializableIT0_T_EEvRSF_RKSE_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI17AmountCompressionRKlEQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7uint256Q12SerializableIT0_T_EEvRS5_RKS4_ Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISF_EEEQ12SerializableIT0_T_EEvRSM_RKSL_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaISC_EEEQ12SerializableIT0_T_EEvRSJ_RKSI_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRSA_RKS9_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaISC_EEEQ12SerializableIT0_T_EEvRSJ_RKSI_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS9_RKS8_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISB_IhSaIhEESaISD_EEEQ12SerializableIT0_T_EEvRSK_RKSJ_ Unexecuted instantiation: _Z9SerializeI8AutoFile11ObfuscationQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI8AutoFile13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS9_IhSaIhEESaISB_EEEQ12SerializableIT0_T_EEvRSI_RKSH_ Unexecuted instantiation: block_policy_estimator.cpp:_Z9SerializeI8AutoFile7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERKdEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: block_policy_estimator.cpp:_Z9SerializeI8AutoFile7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERKSt6vectorIdSaIdEEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: block_policy_estimator.cpp:_Z9SerializeI8AutoFile7WrapperI15VectorFormatterIS2_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERKSt6vectorIS7_IdSaIdEESaIS9_EEEQ12SerializableIT0_T_EEvRSG_RKSF_ Unexecuted instantiation: _Z9SerializeI10HashWriter22transaction_identifierILb1EEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CCoinSaIS6_EEEQ12SerializableIT0_T_EEvRSD_RKSC_ Unexecuted instantiation: _Z9SerializeI10DataStream5CCoinQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: txdb.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_19CoinEntryEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStreamN10index_util11DBHeightKeyEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStreamN10index_util9DBHashKeyEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: blockfilterindex.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_15DBValEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: coinstatsindex.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_15DBValEQ12SerializableIT0_T_EEvRS4_RKS3_ Unexecuted instantiation: _Z9SerializeI10DataStream10MuHash3072Q12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream7Num3072Q12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream10CDiskTxPosQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10DataStream5DBKeyQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10HashWriter12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_ Unexecuted instantiation: _Z9SerializeI10HashWriter13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE19CMutableTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI5CTxInSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorI6CTxOutSaISA_EEEQ12SerializableIT0_T_EEvRSH_RKSG_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorIS9_IhSaIhEESaISB_EEEQ12SerializableIT0_T_EEvRSI_RKSH_ Unexecuted instantiation: _Z9SerializeI10HashWriter13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_ Unexecuted instantiation: interpreter.cpp:_Z9SerializeI10HashWriterN12_GLOBAL__N_131CTransactionSignatureSerializerI12CTransactionEEQ12SerializableIT0_T_EEvRS6_RKS5_ Unexecuted instantiation: interpreter.cpp:_Z9SerializeI10HashWriterN12_GLOBAL__N_131CTransactionSignatureSerializerI19CMutableTransactionEEQ12SerializableIT0_T_EEvRS6_RKS5_ Unexecuted instantiation: _Z9SerializeI10HashWriter17CompactSizeWriterQ12SerializableIT0_T_EEvRS3_RKS2_ |
770 | | |
771 | | template <class T, class Stream> |
772 | | concept Unserializable = requires(T a, Stream s) { a.Unserialize(s); }; |
773 | | template <typename Stream, typename T> |
774 | | requires Unserializable<T, Stream> |
775 | | void Unserialize(Stream& is, T&& a) |
776 | 0 | { |
777 | 0 | a.Unserialize(is); |
778 | 0 | } Unexecuted instantiation: _Z11UnserializeI10DataStreamR20AddrManDeterministicQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperI20TransactionSerParams6CBlockEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER6CBlockQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER12CBlockHeaderQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER7uint256Q14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaISA_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaISA_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS9_IhSaIhEESaISB_EEEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR12CBlockHeaderQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7uint256Q14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13CBlockLocatorQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderRN6kernel14CBlockFileInfoEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR11BlockFilterQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR9COutPointQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperI20TransactionSerParams19CMutableTransactionEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER19CMutableTransactionQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR15CDiskBlockIndexQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI15VarIntFormatterIL10VarIntMode1EERiEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: cluster_linearize.cpp:_Z11UnserializeI10SpanReaderR7WrapperIN12_GLOBAL__N_117DepGraphFormatterERN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEEQ14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR4CoinQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI17AmountCompressionRlEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI17ScriptCompressionR7CScriptEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: dbwrapper.cpp:_Z11UnserializeI10SpanReaderRN12_GLOBAL__N_115FailUnserializeEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperIN8CAddress9SerParamsE8AddrInfoEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEER8AddrInfoQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEERS3_Q14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSL_OSK_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb0EERmEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEER13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEERS7_Q14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSL_OSK_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR25CBlockHeaderAndShortTxIDsQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI20PrefilledTransactionSaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR20PrefilledTransactionQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI20CompactSizeFormatterILb1EERtEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEEEQ14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEEQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR8CFeeRateQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR8CFeeRateQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR12CMerkleBlockQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR18CPartialMerkleTreeQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR9COutPointQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7CPubKeyQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7CPubKeyQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7CScriptQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR5CTxInQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR5CTxInQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7CScriptQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR11FlatFilePosQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR11FlatFilePosQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI15VarIntFormatterIL10VarIntMode1EERiEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13KeyOriginInfoQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIjSaIjEEEQ14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13KeyOriginInfoQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIjSaIjEEEQ14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR17CompactSizeReaderQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR9PSBTInputQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperI20TransactionSerParamsSt10shared_ptrIK12CTransactionEEQ14UnserializableIT0_T_EEvRSA_OS9_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR6CTxOutQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS5_IhSaIhEESaIS7_EEEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR11XOnlyPubKeyQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR10PSBTOutputQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7CTxUndoQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaIS6_EEEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR10CBlockUndoQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7CTxUndoSaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperIN8CNetAddr9SerParamsES2_EQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEERS3_Q14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperIN8CNetAddr9SerParamsES2_EQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEERS3_Q14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR14CMessageHeaderQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperIN8CAddress9SerParamsES2_EQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperIN8CAddress9SerParamsES2_EQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERS3_Q14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSL_OSK_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb0EERmEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEERS7_Q14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR4CInvQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR12CBloomFilterQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR17BlockTransactionsQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEQ14UnserializableIT0_T_EEvRSK_OSJ_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR24BlockTransactionsRequestQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderRN4node16SnapshotMetadataEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7uint160Q14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7uint160Q14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7uint256Q14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR24BlockTransactionsRequestQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI12CBlockHeaderSaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI22LimitedStringFormatterILm10EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEQ14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN4node16SnapshotMetadataEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR7uint256Q14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperIN8CAddress9SerParamsE8CNetAddrEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet8MetaPageEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet10PageHeaderEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet11RecordsPageEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet12RecordHeaderEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet10DataRecordEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet14OverflowRecordEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet12InternalPageEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet14InternalRecordEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet12OverflowPageEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet12CKeyMetadataEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR6CKeyIDQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet16WalletDescriptorEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet9CWalletTxEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParamsSt10shared_ptrIK12CTransactionEEQ14UnserializableIT0_T_EEvRSA_OS9_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaISA_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaISA_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS9_IhSaIhEESaISB_EEEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7uint256SaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIN6wallet9CMerkleTxESaIS7_EEEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet9CMerkleTxEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_ESaISD_EEEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13CBlockLocatorQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet10CMasterKeyEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet8CHDChainEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParams6CBlockEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER6CBlockQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER12CBlockHeaderQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7uint256Q14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI10DataStreamER7AddrManQ14UnserializableIT0_T_EEvRS6_OS5_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI8AutoFileER7AddrManQ14UnserializableIT0_T_EEvRS6_OS5_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI8AutoFileER13ParamsWrapperIN8CAddress9SerParamsESt6vectorIS4_SaIS4_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS5_SaIS5_EEEQ14UnserializableIT0_T_EEvRSI_OSH_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEERS5_Q14UnserializableIT0_T_EEvRSA_OS9_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSN_OSM_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb0EERmEQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEERS9_Q14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEQ14UnserializableIT0_T_EEvRSA_OS9_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7uint256Q14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER8AddrInfoQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEERS3_Q14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSL_OSK_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb0EERmEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEERS7_Q14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSL_OSK_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI8AutoFileER7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7uint256Q14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER8AddrInfoQ14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSN_OSM_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEQ14UnserializableIT0_T_EEvRSA_OS9_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7uint256Q14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER8AddrInfoQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSL_OSK_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI10DataStreamER7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7uint256Q14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER8AddrInfoQ14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEERS5_Q14UnserializableIT0_T_EEvRSA_OS9_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSN_OSM_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb0EERmEQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEERS9_Q14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEQ14UnserializableIT0_T_EEvRSN_OSM_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR11ObfuscationQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR14CMessageHeaderQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI22LimitedStringFormatterILm256EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEQ14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI22LimitedStringFormatterILm80EERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEQ14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI22LimitedVectorFormatterILm512E16DefaultFormatterERSt6vectorIhSaIhEEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperIN8CAddress9SerParamsESt6vectorIS2_SaIS2_EEEQ14UnserializableIT0_T_EEvRSA_OS9_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS3_SaIS3_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI4CInvSaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR4CInvQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR25CBlockHeaderAndShortTxIDsQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR12CBlockHeaderQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI20PrefilledTransactionSaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR20PrefilledTransactionQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI20CompactSizeFormatterILb1EERtEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEEEQ14UnserializableIT0_T_EEvRSE_OSD_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEEQ14UnserializableIT0_T_EEvRSF_OSE_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR17BlockTransactionsQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEQ14UnserializableIT0_T_EEvRSK_OSJ_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR12CBloomFilterQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR15CDiskBlockIndexQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER10CBlockUndoQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI7CTxUndoSaISA_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7CTxUndoQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaISA_EEEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEE7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI17AmountCompressionRlEQ14UnserializableIT0_T_EEvRSB_OSA_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI17ScriptCompressionR7CScriptEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: _Z11UnserializeI14BufferedReaderI8AutoFileER7uint256Q14UnserializableIT0_T_EEvRS6_OS5_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR11ObfuscationQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR13ParamsWrapperI20TransactionSerParamsSt10shared_ptrIK12CTransactionEEQ14UnserializableIT0_T_EEvRSA_OS9_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaISA_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaISA_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS9_IhSaIhEESaISB_EEEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: block_policy_estimator.cpp:_Z11UnserializeI8AutoFileR7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERdEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: block_policy_estimator.cpp:_Z11UnserializeI8AutoFileR7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERSt6vectorIdSaIdEEEQ14UnserializableIT0_T_EEvRSD_OSC_ Unexecuted instantiation: block_policy_estimator.cpp:_Z11UnserializeI8AutoFileR7WrapperI15VectorFormatterIS2_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERSt6vectorIS7_IdSaIdEESaIS9_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI9COutPointSaIS6_EEEQ14UnserializableIT0_T_EEvRSC_OSB_ Unexecuted instantiation: txdb.cpp:_Z11UnserializeI10SpanReaderRN12_GLOBAL__N_19CoinEntryEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR4CoinQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI17AmountCompressionRlEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI17ScriptCompressionR7CScriptEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12BufferedFileR12CBlockHeaderQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI12BufferedFileR7uint256Q14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI12BufferedFileR13ParamsWrapperI20TransactionSerParams6CBlockEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER6CBlockQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER12CBlockHeaderQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER7uint256Q14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEQ14UnserializableIT0_T_EEvRSJ_OSI_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI5CTxInSaISA_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorI6CTxOutSaISA_EEEQ14UnserializableIT0_T_EEvRSG_OSF_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorIS9_IhSaIhEESaISB_EEEQ14UnserializableIT0_T_EEvRSH_OSG_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR4CoinQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI8AutoFile7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI8AutoFile7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI17AmountCompressionRlEQ14UnserializableIT0_T_EEvRS7_OS6_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI15VarIntFormatterIL10VarIntMode0EERmEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI17ScriptCompressionR7CScriptEQ14UnserializableIT0_T_EEvRS8_OS7_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS9_OS8_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderRN10index_util11DBHeightKeyEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: blockfilterindex.cpp:_Z11UnserializeI10DataStreamRN12_GLOBAL__N_15DBValEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: blockfilterindex.cpp:_Z11UnserializeI10SpanReaderRN12_GLOBAL__N_15DBValEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: coinstatsindex.cpp:_Z11UnserializeI10DataStreamRN12_GLOBAL__N_15DBValEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: coinstatsindex.cpp:_Z11UnserializeI10SpanReaderRN12_GLOBAL__N_15DBValEQ14UnserializableIT0_T_EEvRS5_OS4_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR10MuHash3072Q14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7Num3072Q14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR10CDiskTxPosQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI8AutoFileR12CBlockHeaderQ14UnserializableIT0_T_EEvRS4_OS3_ Unexecuted instantiation: _Z11UnserializeI10SpanReaderR5DBKeyQ14UnserializableIT0_T_EEvRS4_OS3_ |
779 | | |
780 | | /** Default formatter. Serializes objects as themselves. |
781 | | * |
782 | | * The vector/prevector serialization code passes this to VectorFormatter |
783 | | * to enable reusing that logic. It shouldn't be needed elsewhere. |
784 | | */ |
785 | | struct DefaultFormatter |
786 | | { |
787 | | template<typename Stream, typename T> |
788 | 0 | static void Ser(Stream& s, const T& t) { Serialize(s, t); }Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsE5CTxInEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CTxOutEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsESt10shared_ptrIK12CTransactionEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12SizeComputerSt6vectorIhSaIhEEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12VectorWriter20PrefilledTransactionEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt10shared_ptrIK12CTransactionEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE5CTxInEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CTxOutEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CBlockEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStream20PrefilledTransactionEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10DataStream20TransactionSerParamsESt10shared_ptrIK12CTransactionEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStream7uint256EEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStreamjEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStreamSt6vectorIhSaIhEEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStream7CTxUndoEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE20PrefilledTransactionEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_ESt10shared_ptrIK12CTransactionEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_E5CTxInEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_E6CTxOutEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_ESt6vectorIhSaIhEEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStreamiEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12VectorWriterSt6vectorIhSaIhEEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStreamSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEES6_EEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12SizeComputer20PrefilledTransactionEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12VectorWriter4CInvEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12VectorWriter7uint256EEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12VectorWriter12CBlockHeaderEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEES4_EEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12SizeComputer7CTxUndoEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI10HashWriter7CTxUndoEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI14BufferedWriterI8AutoFileE7CTxUndoEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsESt10shared_ptrIK12CTransactionEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5CTxInEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CTxOutEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStream5CCoinEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsE5CTxInEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsE6CTxOutEEvRT_RKT0_ Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RKT0_ |
789 | | |
790 | | template<typename Stream, typename T> |
791 | 0 | static void Unser(Stream& s, T& t) { Unserialize(s, t); }Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsESt10shared_ptrIK12CTransactionEEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsE5CTxInEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsE6CTxOutEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10SpanReader7uint256EEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10SpanReader20PrefilledTransactionEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10SpanReaderjEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStreamjEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10SpanReaderSt6vectorIhSaIhEEEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10SpanReader7CTxUndoEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10SpanReader12CBlockHeaderEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10SpanReader5CTxInEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10SpanReader6CTxOutEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream7uint256EEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStreamN6wallet9CMerkleTxEEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStreamSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsESt10shared_ptrIK12CTransactionEEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEES6_EEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStreamhEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEES4_EEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream4CInvEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream20PrefilledTransactionEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12HashVerifierI14BufferedReaderI8AutoFileEE7CTxUndoEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream9COutPointEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsESt10shared_ptrIK12CTransactionEEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsE5CTxInEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsE6CTxOutEEvRT_RT0_ Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsESt6vectorIhSaIhEEEEvRT_RT0_ |
792 | | }; |
793 | | |
794 | | /** |
795 | | * Limited vector formatter. Throws an error if a vector is oversized. |
796 | | */ |
797 | | |
798 | | template<size_t Limit, class Formatter = DefaultFormatter> |
799 | | struct LimitedVectorFormatter |
800 | | { |
801 | | template<typename Stream, typename V> |
802 | | void Unser(Stream& s, V& v) |
803 | 0 | { |
804 | 0 | Formatter formatter; |
805 | 0 | v.clear(); |
806 | 0 | size_t size = ReadCompactSize(s); |
807 | 0 | if (size > Limit) { Branch (807:13): [True: 0, False: 0]
|
808 | 0 | throw std::ios_base::failure("Vector length limit exceeded"); |
809 | 0 | } |
810 | 0 | v.reserve(size); |
811 | 0 | for (size_t i = 0; i < size; ++i) { Branch (811:28): [True: 0, False: 0]
|
812 | 0 | v.emplace_back(); |
813 | 0 | formatter.Unser(s, v.back()); |
814 | 0 | } |
815 | 0 | } |
816 | | |
817 | | template<typename Stream, typename V> |
818 | | void Ser(Stream& s, const V& v) |
819 | | { |
820 | | VectorFormatter<Formatter>{}.Ser(s, v); |
821 | | } |
822 | | }; |
823 | | |
824 | | |
825 | | |
826 | | |
827 | | /** |
828 | | * string |
829 | | */ |
830 | | template<typename Stream, typename C> |
831 | | void Serialize(Stream& os, const std::basic_string<C>& str) |
832 | 2.76k | { |
833 | 2.76k | WriteCompactSize(os, str.size()); |
834 | 2.76k | if (!str.empty()) Branch (834:9): [True: 0, False: 0]
Branch (834:9): [True: 2.76k, False: 0]
Branch (834:9): [True: 0, False: 0]
Branch (834:9): [True: 0, False: 0]
|
835 | 2.76k | os.write(MakeByteSpan(str)); |
836 | 2.76k | } Unexecuted instantiation: _Z9SerializeI8AutoFilecEvRT_RKNSt7__cxx1112basic_stringIT0_St11char_traitsIS5_ESaIS5_EEE _Z9SerializeI10DataStreamcEvRT_RKNSt7__cxx1112basic_stringIT0_St11char_traitsIS5_ESaIS5_EEE Line | Count | Source | 832 | 2.76k | { | 833 | 2.76k | WriteCompactSize(os, str.size()); | 834 | 2.76k | if (!str.empty()) Branch (834:9): [True: 2.76k, False: 0]
| 835 | 2.76k | os.write(MakeByteSpan(str)); | 836 | 2.76k | } |
Unexecuted instantiation: _Z9SerializeI10HashWritercEvRT_RKNSt7__cxx1112basic_stringIT0_St11char_traitsIS5_ESaIS5_EEE Unexecuted instantiation: _Z9SerializeI12VectorWritercEvRT_RKNSt7__cxx1112basic_stringIT0_St11char_traitsIS5_ESaIS5_EEE |
837 | | |
838 | | template<typename Stream, typename C> |
839 | | void Unserialize(Stream& is, std::basic_string<C>& str) |
840 | 45.6k | { |
841 | 45.6k | unsigned int nSize = ReadCompactSize(is); |
842 | 45.6k | str.resize(nSize); |
843 | 45.6k | if (nSize != 0) Branch (843:9): [True: 0, False: 0]
Branch (843:9): [True: 0, False: 0]
Branch (843:9): [True: 20.1k, False: 25.4k]
Branch (843:9): [True: 0, False: 0]
|
844 | 20.1k | is.read(MakeWritableByteSpan(str)); |
845 | 45.6k | } Unexecuted instantiation: _Z11UnserializeI8AutoFilecEvRT_RNSt7__cxx1112basic_stringIT0_St11char_traitsIS5_ESaIS5_EEE Unexecuted instantiation: _Z11UnserializeI12BufferedFilecEvRT_RNSt7__cxx1112basic_stringIT0_St11char_traitsIS5_ESaIS5_EEE _Z11UnserializeI10SpanReadercEvRT_RNSt7__cxx1112basic_stringIT0_St11char_traitsIS5_ESaIS5_EEE Line | Count | Source | 840 | 45.6k | { | 841 | 45.6k | unsigned int nSize = ReadCompactSize(is); | 842 | 45.6k | str.resize(nSize); | 843 | 45.6k | if (nSize != 0) Branch (843:9): [True: 20.1k, False: 25.4k]
| 844 | 20.1k | is.read(MakeWritableByteSpan(str)); | 845 | 45.6k | } |
Unexecuted instantiation: _Z11UnserializeI10DataStreamcEvRT_RNSt7__cxx1112basic_stringIT0_St11char_traitsIS5_ESaIS5_EEE |
846 | | |
847 | | /** |
848 | | * string_view |
849 | | */ |
850 | | template<typename Stream, typename C> |
851 | | void Serialize(Stream& os, const std::basic_string_view<C>& str) |
852 | | { |
853 | | WriteCompactSize(os, str.size()); |
854 | | if (!str.empty()) { |
855 | | os.write(MakeByteSpan(str)); |
856 | | } |
857 | | } |
858 | | |
859 | | /** |
860 | | * prevector |
861 | | */ |
862 | | template <typename Stream, unsigned int N, typename T> |
863 | | void Serialize(Stream& os, const prevector<N, T>& v) |
864 | 0 | { |
865 | 0 | if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes |
866 | 0 | WriteCompactSize(os, v.size()); |
867 | 0 | if (!v.empty()) os.write(MakeByteSpan(v)); Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
Branch (867:13): [True: 0, False: 0]
|
868 | 0 | } else { |
869 | 0 | Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v)); |
870 | 0 | } |
871 | 0 | } Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI10DataStreamLj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12SizeComputerLj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_ELj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI10DataStreamLj8EiEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12VectorWriterLj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI10HashWriterLj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE |
872 | | |
873 | | |
874 | | template <typename Stream, unsigned int N, typename T> |
875 | | void Unserialize(Stream& is, prevector<N, T>& v) |
876 | 0 | { |
877 | 0 | if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes |
878 | | // Limit size per read so bogus size value won't cause out of memory |
879 | 0 | v.clear(); |
880 | 0 | unsigned int nSize = ReadCompactSize(is); |
881 | 0 | unsigned int i = 0; |
882 | 0 | while (i < nSize) { Branch (882:16): [True: 0, False: 0]
Branch (882:16): [True: 0, False: 0]
Branch (882:16): [True: 0, False: 0]
Branch (882:16): [True: 0, False: 0]
Branch (882:16): [True: 0, False: 0]
Branch (882:16): [True: 0, False: 0]
|
883 | 0 | unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T))); |
884 | 0 | v.resize_uninitialized(i + blk); |
885 | 0 | is.read(std::as_writable_bytes(std::span{&v[i], blk})); |
886 | 0 | i += blk; |
887 | 0 | } |
888 | | } else { |
889 | | Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v)); |
890 | | } |
891 | 0 | } Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsELj36EhEvRT_R9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z11UnserializeI10SpanReaderLj36EhEvRT_R9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z11UnserializeI10DataStreamLj36EhEvRT_R9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsELj36EhEvRT_R9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsELj36EhEvRT_R9prevectorIXT0_ET1_jiE Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsELj36EhEvRT_R9prevectorIXT0_ET1_jiE |
892 | | |
893 | | |
894 | | /** |
895 | | * vector |
896 | | */ |
897 | | template <typename Stream, typename T, typename A> |
898 | | void Serialize(Stream& os, const std::vector<T, A>& v) |
899 | 1.63M | { |
900 | 1.63M | if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes |
901 | 1.63M | WriteCompactSize(os, v.size()); |
902 | 1.63M | if (!v.empty()) os.write(MakeByteSpan(v)); Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 86.5k, False: 1.54M]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 1.21k, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
Branch (902:13): [True: 0, False: 0]
|
903 | | } else if constexpr (std::is_same_v<T, bool>) { |
904 | | // A special case for std::vector<bool>, as dereferencing |
905 | | // std::vector<bool>::const_iterator does not result in a const bool& |
906 | | // due to std::vector's special casing for bool arguments. |
907 | | WriteCompactSize(os, v.size()); |
908 | | for (bool elem : v) { |
909 | | ::Serialize(os, elem); |
910 | | } |
911 | 0 | } else { |
912 | 0 | Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v)); |
913 | 0 | } |
914 | 1.63M | } Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE5CTxInSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CTxOutSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsESt6vectorIhSaIhEESaIS7_EEvRT_RKS5_IT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEhSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsESt10shared_ptrIK12CTransactionESaIS8_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12SizeComputerSt6vectorIhSaIhEESaIS3_EEvRT_RKS1_IT0_T1_E Unexecuted instantiation: _Z9SerializeI12SizeComputerhSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI8AutoFilehSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12VectorWriter20PrefilledTransactionSaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE5CTxInSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CTxOutSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt6vectorIhSaIhEESaIS7_EEvRT_RKS5_IT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEhSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CBlockSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsESt10shared_ptrIK12CTransactionESaIS8_EEvRT_RKSt6vectorIT0_T1_E _Z9SerializeI10DataStreamhSaIhEEvRT_RKSt6vectorIT0_T1_E Line | Count | Source | 899 | 1.63M | { | 900 | 1.63M | if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes | 901 | 1.63M | WriteCompactSize(os, v.size()); | 902 | 1.63M | if (!v.empty()) os.write(MakeByteSpan(v)); Branch (902:13): [True: 86.5k, False: 1.54M]
| 903 | | } else if constexpr (std::is_same_v<T, bool>) { | 904 | | // A special case for std::vector<bool>, as dereferencing | 905 | | // std::vector<bool>::const_iterator does not result in a const bool& | 906 | | // due to std::vector's special casing for bool arguments. | 907 | | WriteCompactSize(os, v.size()); | 908 | | for (bool elem : v) { | 909 | | ::Serialize(os, elem); | 910 | | } | 911 | | } else { | 912 | | Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v)); | 913 | | } | 914 | 1.63M | } |
Unexecuted instantiation: _Z9SerializeI10DataStream20PrefilledTransactionSaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorIhSaIhEESaIS7_EEvRT_RKS5_IT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEhSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStream7uint256SaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamjSaIjEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamSt6vectorIhSaIhEESaIS3_EEvRT_RKS1_IT0_T1_E Unexecuted instantiation: _Z9SerializeI12VectorWriterhSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsESt10shared_ptrIK12CTransactionESaIS8_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStream7CTxUndoSaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE20PrefilledTransactionSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E5CTxInSaIS7_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E6CTxOutSaIS7_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_ESt6vectorIhSaIhEESaIS9_EEvRT_RKS7_IT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EhSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamiSaIiEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12VectorWriterSt6vectorIhSaIhEESaIS3_EEvRT_RKS1_IT0_T1_E Unexecuted instantiation: _Z9SerializeI10HashWriterhSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_ESaIS8_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamh16secure_allocatorIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEES5_SaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12SizeComputer20PrefilledTransactionSaIS1_EEvRT_RKSt6vectorIT0_T1_E _Z9SerializeI10DataStreamSt4byteSaIS1_EEvRT_RKSt6vectorIT0_T1_E Line | Count | Source | 899 | 1.21k | { | 900 | 1.21k | if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes | 901 | 1.21k | WriteCompactSize(os, v.size()); | 902 | 1.21k | if (!v.empty()) os.write(MakeByteSpan(v)); Branch (902:13): [True: 1.21k, False: 0]
| 903 | | } else if constexpr (std::is_same_v<T, bool>) { | 904 | | // A special case for std::vector<bool>, as dereferencing | 905 | | // std::vector<bool>::const_iterator does not result in a const bool& | 906 | | // due to std::vector's special casing for bool arguments. | 907 | | WriteCompactSize(os, v.size()); | 908 | | for (bool elem : v) { | 909 | | ::Serialize(os, elem); | 910 | | } | 911 | | } else { | 912 | | Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v)); | 913 | | } | 914 | 1.21k | } |
Unexecuted instantiation: _Z9SerializeI12VectorWriter4CInvSaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12VectorWriter7uint256SaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12VectorWriter12CBlockHeaderSaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEES3_SaIS3_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12SizeComputer7CTxUndoSaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI10HashWriter7CTxUndoSaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileE7CTxUndoSaIS3_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsESt10shared_ptrIK12CTransactionESaISA_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5CTxInSaIS7_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CTxOutSaIS7_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsESt6vectorIhSaIhEESaIS9_EEvRT_RKS7_IT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEhSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI8AutoFileSt4byteSaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorIhSaIhEESaIS7_EEvRT_RKS5_IT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEhSaIhEEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStream5CCoinSaIS1_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE5CTxInSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE6CTxOutSaIS5_EEvRT_RKSt6vectorIT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsESt6vectorIhSaIhEESaIS7_EEvRT_RKS5_IT0_T1_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEhSaIhEEvRT_RKSt6vectorIT0_T1_E |
915 | | |
916 | | |
917 | | template <typename Stream, typename T, typename A> |
918 | | void Unserialize(Stream& is, std::vector<T, A>& v) |
919 | 3.28M | { |
920 | 3.28M | if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes |
921 | | // Limit size per read so bogus size value won't cause out of memory |
922 | 3.28M | v.clear(); |
923 | 3.28M | unsigned int nSize = ReadCompactSize(is); |
924 | 3.28M | unsigned int i = 0; |
925 | 5.67M | while (i < nSize) { Branch (925:16): [True: 0, False: 0]
Branch (925:16): [True: 0, False: 0]
Branch (925:16): [True: 2.35M, False: 3.24M]
Branch (925:16): [True: 0, False: 0]
Branch (925:16): [True: 35.7k, False: 46.2k]
Branch (925:16): [True: 0, False: 0]
Branch (925:16): [True: 0, False: 0]
Branch (925:16): [True: 0, False: 0]
Branch (925:16): [True: 0, False: 0]
Branch (925:16): [True: 0, False: 0]
Branch (925:16): [True: 0, False: 0]
|
926 | 2.38M | unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T))); |
927 | 2.38M | v.resize(i + blk); |
928 | 2.38M | is.read(std::as_writable_bytes(std::span{&v[i], blk})); |
929 | 2.38M | i += blk; |
930 | 2.38M | } |
931 | 3.28M | } else { |
932 | 0 | Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v)); |
933 | 0 | } |
934 | 3.28M | } Unexecuted instantiation: _Z11UnserializeI8AutoFilehSaIhEEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsESt10shared_ptrIK12CTransactionESaIS8_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE5CTxInSaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE6CTxOutSaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsESt6vectorIhSaIhEESaIS7_EEvRT_RS5_IT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEhSaIhEEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReader7uint256SaIS1_EEvRT_RSt6vectorIT0_T1_E _Z11UnserializeI10SpanReaderhSaIhEEvRT_RSt6vectorIT0_T1_E Line | Count | Source | 919 | 3.24M | { | 920 | 3.24M | if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes | 921 | | // Limit size per read so bogus size value won't cause out of memory | 922 | 3.24M | v.clear(); | 923 | 3.24M | unsigned int nSize = ReadCompactSize(is); | 924 | 3.24M | unsigned int i = 0; | 925 | 5.59M | while (i < nSize) { Branch (925:16): [True: 2.35M, False: 3.24M]
| 926 | 2.35M | unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T))); | 927 | 2.35M | v.resize(i + blk); | 928 | 2.35M | is.read(std::as_writable_bytes(std::span{&v[i], blk})); | 929 | 2.35M | i += blk; | 930 | 2.35M | } | 931 | | } else { | 932 | | Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v)); | 933 | | } | 934 | 3.24M | } |
Unexecuted instantiation: _Z11UnserializeI12BufferedFilehSaIhEEvRT_RSt6vectorIT0_T1_E _Z11UnserializeI10DataStreamhSaIhEEvRT_RSt6vectorIT0_T1_E Line | Count | Source | 919 | 46.2k | { | 920 | 46.2k | if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes | 921 | | // Limit size per read so bogus size value won't cause out of memory | 922 | 46.2k | v.clear(); | 923 | 46.2k | unsigned int nSize = ReadCompactSize(is); | 924 | 46.2k | unsigned int i = 0; | 925 | 81.9k | while (i < nSize) { Branch (925:16): [True: 35.7k, False: 46.2k]
| 926 | 35.7k | unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T))); | 927 | 35.7k | v.resize(i + blk); | 928 | 35.7k | is.read(std::as_writable_bytes(std::span{&v[i], blk})); | 929 | 35.7k | i += blk; | 930 | 35.7k | } | 931 | | } else { | 932 | | Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v)); | 933 | | } | 934 | 46.2k | } |
Unexecuted instantiation: _Z11UnserializeI10SpanReader20PrefilledTransactionSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReaderjSaIjEEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10DataStreamjSaIjEEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReaderSt6vectorIhSaIhEESaIS3_EEvRT_RS1_IT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReader7CTxUndoSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReader12CBlockHeaderSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReader5CTxInSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReader6CTxOutSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInSaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutSaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsESt6vectorIhSaIhEESaIS7_EEvRT_RS5_IT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEhSaIhEEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10DataStream7uint256SaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10DataStreamN6wallet9CMerkleTxESaIS2_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10DataStreamSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_ESaIS8_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10DataStreamh16secure_allocatorIhEEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsESt10shared_ptrIK12CTransactionESaIS8_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEES5_SaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReaderSt4byteSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEES3_SaIS3_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10DataStream4CInvSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10DataStream20PrefilledTransactionSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEE7CTxUndoSaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI8AutoFileSt4byteSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInSaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutSaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsESt6vectorIhSaIhEESaIS7_EEvRT_RS5_IT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEhSaIhEEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10DataStream9COutPointSaIS1_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsESt10shared_ptrIK12CTransactionESaIS8_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE5CTxInSaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE6CTxOutSaIS5_EEvRT_RSt6vectorIT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsESt6vectorIhSaIhEESaIS7_EEvRT_RS5_IT0_T1_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEhSaIhEEvRT_RSt6vectorIT0_T1_E |
935 | | |
936 | | |
937 | | /** |
938 | | * pair |
939 | | */ |
940 | | template<typename Stream, typename K, typename T> |
941 | | void Serialize(Stream& os, const std::pair<K, T>& item) |
942 | 0 | { |
943 | 0 | Serialize(os, item.first); |
944 | 0 | Serialize(os, item.second); |
945 | 0 | } Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_EvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE22transaction_identifierILb0EEEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_EvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE7uint256EvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE7CPubKeyEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamSt6vectorIh16secure_allocatorIhEE7uint256EvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamSt6vectorIhSaIhEE7uint256EvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE7CScriptEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEhEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairI7uint2567CPubKeyEEvRT_RKS7_IT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStream7uint2567CPubKeyEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE7uint256ES1_IjjEEvRT_RKS1_IT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamjjEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE7uint256EjEvRT_RKS1_IT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairI22transaction_identifierILb0EEjEEvRT_RKS7_IT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStream22transaction_identifierILb0EEjEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIS6_S6_EEvRT_RKS7_IT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamhiEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamh7uint256EvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamhNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI8AutoFileK22transaction_identifierILb0EElEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: blockfilterindex.cpp:_Z9SerializeI10DataStream7uint256N12_GLOBAL__N_15DBValEEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: coinstatsindex.cpp:_Z9SerializeI10DataStream7uint256N12_GLOBAL__N_15DBValEEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreammmEvRT_RKSt4pairIT0_T1_E Unexecuted instantiation: _Z9SerializeI10DataStreamhmEvRT_RKSt4pairIT0_T1_E |
946 | | |
947 | | template<typename Stream, typename K, typename T> |
948 | | void Unserialize(Stream& is, std::pair<K, T>& item) |
949 | 0 | { |
950 | 0 | Unserialize(is, item.first); |
951 | 0 | Unserialize(is, item.second); |
952 | 0 | } Unexecuted instantiation: _Z11UnserializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_EvRT_RSt4pairIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReaderh7uint256EvRT_RSt4pairIT0_T1_E Unexecuted instantiation: _Z11UnserializeI8AutoFile22transaction_identifierILb0EElEvRT_RSt4pairIT0_T1_E Unexecuted instantiation: blockfilterindex.cpp:_Z11UnserializeI10DataStream7uint256N12_GLOBAL__N_15DBValEEvRT_RSt4pairIT0_T1_E Unexecuted instantiation: blockfilterindex.cpp:_Z11UnserializeI10SpanReader7uint256N12_GLOBAL__N_15DBValEEvRT_RSt4pairIT0_T1_E Unexecuted instantiation: coinstatsindex.cpp:_Z11UnserializeI10DataStream7uint256N12_GLOBAL__N_15DBValEEvRT_RSt4pairIT0_T1_E Unexecuted instantiation: coinstatsindex.cpp:_Z11UnserializeI10SpanReader7uint256N12_GLOBAL__N_15DBValEEvRT_RSt4pairIT0_T1_E Unexecuted instantiation: _Z11UnserializeI10SpanReadermmEvRT_RSt4pairIT0_T1_E |
953 | | |
954 | | |
955 | | |
956 | | /** |
957 | | * map |
958 | | */ |
959 | | template<typename Stream, typename K, typename T, typename Pred, typename A> |
960 | | void Serialize(Stream& os, const std::map<K, T, Pred, A>& m) |
961 | 0 | { |
962 | 0 | WriteCompactSize(os, m.size()); |
963 | 0 | for (const auto& entry : m) Branch (963:28): [True: 0, False: 0]
Branch (963:28): [True: 0, False: 0]
|
964 | 0 | Serialize(os, entry); |
965 | 0 | } Unexecuted instantiation: _Z9SerializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_St4lessIS6_ESaISt4pairIKS6_S6_EEEvRT_RKSt3mapIT0_T1_T2_T3_E Unexecuted instantiation: _Z9SerializeI8AutoFile22transaction_identifierILb0EElSt4lessIS2_ESaISt4pairIKS2_lEEEvRT_RKSt3mapIT0_T1_T2_T3_E |
966 | | |
967 | | template<typename Stream, typename K, typename T, typename Pred, typename A> |
968 | | void Unserialize(Stream& is, std::map<K, T, Pred, A>& m) |
969 | 0 | { |
970 | 0 | m.clear(); |
971 | 0 | unsigned int nSize = ReadCompactSize(is); |
972 | 0 | typename std::map<K, T, Pred, A>::iterator mi = m.begin(); |
973 | 0 | for (unsigned int i = 0; i < nSize; i++) Branch (973:30): [True: 0, False: 0]
Branch (973:30): [True: 0, False: 0]
|
974 | 0 | { |
975 | 0 | std::pair<K, T> item; |
976 | 0 | Unserialize(is, item); |
977 | 0 | mi = m.insert(mi, item); |
978 | 0 | } |
979 | 0 | } Unexecuted instantiation: _Z11UnserializeI10DataStreamNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_St4lessIS6_ESaISt4pairIKS6_S6_EEEvRT_RSt3mapIT0_T1_T2_T3_E Unexecuted instantiation: _Z11UnserializeI8AutoFile22transaction_identifierILb0EElSt4lessIS2_ESaISt4pairIKS2_lEEEvRT_RSt3mapIT0_T1_T2_T3_E |
980 | | |
981 | | |
982 | | |
983 | | /** |
984 | | * set |
985 | | */ |
986 | | template<typename Stream, typename K, typename Pred, typename A> |
987 | | void Serialize(Stream& os, const std::set<K, Pred, A>& m) |
988 | 0 | { |
989 | 0 | WriteCompactSize(os, m.size()); |
990 | 0 | for (typename std::set<K, Pred, A>::const_iterator it = m.begin(); it != m.end(); ++it) Branch (990:72): [True: 0, False: 0]
Branch (990:72): [True: 0, False: 0]
|
991 | 0 | Serialize(os, (*it)); |
992 | 0 | } Unexecuted instantiation: _Z9SerializeI12VectorWriter7uint256St4lessIS1_ESaIS1_EEvRT_RKSt3setIT0_T1_T2_E Unexecuted instantiation: _Z9SerializeI8AutoFile22transaction_identifierILb0EESt4lessIS2_ESaIS2_EEvRT_RKSt3setIT0_T1_T2_E |
993 | | |
994 | | template<typename Stream, typename K, typename Pred, typename A> |
995 | | void Unserialize(Stream& is, std::set<K, Pred, A>& m) |
996 | 0 | { |
997 | 0 | m.clear(); |
998 | 0 | unsigned int nSize = ReadCompactSize(is); |
999 | 0 | typename std::set<K, Pred, A>::iterator it = m.begin(); |
1000 | 0 | for (unsigned int i = 0; i < nSize; i++) Branch (1000:30): [True: 0, False: 0]
Branch (1000:30): [True: 0, False: 0]
|
1001 | 0 | { |
1002 | 0 | K key; |
1003 | 0 | Unserialize(is, key); |
1004 | 0 | it = m.insert(it, key); |
1005 | 0 | } |
1006 | 0 | } Unexecuted instantiation: _Z11UnserializeI10SpanReader7uint256St4lessIS1_ESaIS1_EEvRT_RSt3setIT0_T1_T2_E Unexecuted instantiation: _Z11UnserializeI8AutoFile22transaction_identifierILb0EESt4lessIS2_ESaIS2_EEvRT_RSt3setIT0_T1_T2_E |
1007 | | |
1008 | | |
1009 | | |
1010 | | /** |
1011 | | * unique_ptr |
1012 | | */ |
1013 | | template<typename Stream, typename T> void |
1014 | | Serialize(Stream& os, const std::unique_ptr<const T>& p) |
1015 | | { |
1016 | | Serialize(os, *p); |
1017 | | } |
1018 | | |
1019 | | template<typename Stream, typename T> |
1020 | | void Unserialize(Stream& is, std::unique_ptr<const T>& p) |
1021 | | { |
1022 | | p.reset(new T(deserialize, is)); |
1023 | | } |
1024 | | |
1025 | | |
1026 | | |
1027 | | /** |
1028 | | * shared_ptr |
1029 | | */ |
1030 | | template<typename Stream, typename T> void |
1031 | | Serialize(Stream& os, const std::shared_ptr<const T>& p) |
1032 | 0 | { |
1033 | 0 | Serialize(os, *p); |
1034 | 0 | } Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE12CTransactionEvRT_RKSt10shared_ptrIKT0_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE12CTransactionEvRT_RKSt10shared_ptrIKT0_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CTransactionEvRT_RKSt10shared_ptrIKT0_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E12CTransactionEvRT_RKSt10shared_ptrIKT0_E Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE12CTransactionEvRT_RKSt10shared_ptrIKT0_E |
1035 | | |
1036 | | template<typename Stream, typename T> |
1037 | | void Unserialize(Stream& is, std::shared_ptr<const T>& p) |
1038 | 0 | { |
1039 | 0 | p = std::make_shared<const T>(deserialize, is); |
1040 | 0 | } Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE12CTransactionEvRT_RSt10shared_ptrIKT0_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CTransactionEvRT_RSt10shared_ptrIKT0_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE12CTransactionEvRT_RSt10shared_ptrIKT0_E Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE12CTransactionEvRT_RSt10shared_ptrIKT0_E |
1041 | | |
1042 | | /** |
1043 | | * Support for (un)serializing many things at once |
1044 | | */ |
1045 | | |
1046 | | template <typename Stream, typename... Args> |
1047 | | void SerializeMany(Stream& s, const Args&... args) |
1048 | 0 | { |
1049 | 0 | (::Serialize(s, args), ...); |
1050 | 0 | } Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ12CBlockHeaderSt6vectorISt10shared_ptrIK12CTransactionESaISA_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJi7uint256S5_jjjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ25CBlockHeaderAndShortTxIDsEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ12CBlockHeaderm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEES7_I20PrefilledTransactionSaISD_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJi7uint256S1_jjjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ17BlockTransactionsEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParamsSt6vectorI6CBlockSaIS4_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeaderSt6vectorISt10shared_ptrIK12CTransactionESaISA_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJi7uint256S5_jjjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJbmEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParamsK12CTransactionEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKmEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ12CBlockHeaderm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEES7_I20PrefilledTransactionSaISD_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJi7uint256S1_jjjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJliEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ12CBlockHeader18CPartialMerkleTreeEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJjSt6vectorI7uint256SaIS2_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJSt6vectorIhSaIhEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ22transaction_identifierILb0EEjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ9COutPoint7CScriptjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiES1_IS2_ILS3_0EERKjEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJA4_hSt6vectorIjSaIjEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ17CompactSizeWriterEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ17CompactSizeWriterEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ13ParamsWrapperI20TransactionSerParams19CMutableTransactionEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ13ParamsWrapperI20TransactionSerParams19CMutableTransactionEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJhA78_hEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJhA78_hEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJhEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJhEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ6CTxOutEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ6CTxOutEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ17CompactSizeWriterSt4spanIKhLm18446744073709551615EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ17CompactSizeWriterSt4spanIKhLm18446744073709551615EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJiEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJiEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJh11XOnlyPubKey7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJh11XOnlyPubKey7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJhSt4spanIKhLm18446744073709551615EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJhSt4spanIKhLm18446744073709551615EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJh11XOnlyPubKeyEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJh11XOnlyPubKeyEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ17CompactSizeWriterSt4spanIKhLm18446744073709551615EES4_EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ17CompactSizeWriterSt4spanIKhLm18446744073709551615EES4_EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ17CompactSizeWriterSt4spanIKhLm18446744073709551615EES4_7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ17CompactSizeWriterSt4spanIKhLm18446744073709551615EES4_7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJSt6vectorIS1_IhSaIhEESaIS3_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJSt6vectorIS1_IhSaIhEESaIS3_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ22transaction_identifierILb0EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ22transaction_identifierILb0EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJlEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJlEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ12CBlockHeaderSt6vectorISt10shared_ptrIK12CTransactionESaISA_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJi7uint256S5_jjjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJSt6vectorI7uint256SaIS2_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS6_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI17AmountCompressionRKlES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJSt6vectorI7CTxUndoSaIS2_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEJS3_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJSt5arrayIhLm4EEA12_cjA4_hEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS7_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJj7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJSt6vectorIhSaIhEEjjhEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParams25CBlockHeaderAndShortTxIDsEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeaderm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEESB_I20PrefilledTransactionSaISH_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperIS3_S5_I16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EJ9COutPoint7CScriptjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EJ22transaction_identifierILb0EEjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParams6CBlockEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJSt4spanISt4byteLm18446744073709551615EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ26PartiallySignedTransactionEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ17CompactSizeWriterEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParams19CMutableTransactionEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJhA78_hEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJhEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ6CTxOutEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ17CompactSizeWriterSt4spanIKhLm18446744073709551615EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJiEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJh11XOnlyPubKey7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJhSt4spanIKhLm18446744073709551615EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJh11XOnlyPubKeyEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ17CompactSizeWriterSt4spanIKhLm18446744073709551615EES4_EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ17CompactSizeWriterSt4spanIKhLm18446744073709551615EES4_7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJSt6vectorIS1_IhSaIhEESaIS3_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ22transaction_identifierILb0EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJlEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI8AutoFileJ7WrapperI17AmountCompressionRKlES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJilEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE6CKeyIDEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ13KeyOriginInfoEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJbEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJSt6vectorIhSaIhEES3_jjS3_EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmiiiEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJi7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEll13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceElSB_mNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEibEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEJS3_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS9_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJS5_8CNetAddr7WrapperI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNSC_8durationIlSt5ratioILl1ELl1EEEEEEEiEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJS3_8CNetAddr7WrapperI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEiEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ12CBlockHeaderm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEES7_I20PrefilledTransactionSaISD_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJi7uint256S1_jjjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10HashWriterJ22transaction_identifierILb0EEjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10HashWriterJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10HashWriterJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ14CMessageHeaderEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJSt5arrayIhLm4EEA12_cjA4_hEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJSt6vectorI4CInvSaIS2_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJj7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJSt4spanIKSt4byteLm18446744073709551615EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParamsK6CBlockEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ12CMerkleBlockEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ12CBlockHeader18CPartialMerkleTreeEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJjSt6vectorI7uint256SaIS2_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJSt6vectorIhSaIhEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJimlm13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEmS5_mNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEibEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJjmEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJSt5arrayISt4byteLm168EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13CBlockLocator7uint256EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJSt6vectorI7uint256SaIS2_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJSt6vectorI12CBlockHeaderSaIS2_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ24BlockTransactionsRequestEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJmEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ11BlockFilterEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJh7uint256S1_St6vectorIS1_SaIS1_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJh7uint256St6vectorIS1_SaIS1_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperIN8CAddress9SerParamsESt6vectorIS2_SaIS2_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS7_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJSt6vectorI7CTxUndoSaIS2_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS6_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ7WrapperI17AmountCompressionRKlES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10HashWriterJSt6vectorI7CTxUndoSaIS2_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10HashWriterJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS6_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10HashWriterJ7WrapperI17AmountCompressionRKlES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI14BufferedWriterI8AutoFileEJSt6vectorI7CTxUndoSaIS4_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI14BufferedWriterI8AutoFileEJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS8_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI14BufferedWriterI8AutoFileEJ7WrapperI17AmountCompressionRKlES3_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ12CBlockHeaderSt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJi7uint256S7_jjjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJl7CScriptEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJjj6CTxOutEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJh22transaction_identifierILb0EE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7uint256S1_11FlatFilePosEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJmEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7Num3072EEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ11FlatFilePos7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ10CDiskTxPosEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI10HashWriterJi7uint256S1_jjjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_ Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJl7CScriptEEvRT_DpRKT0_ |
1051 | | |
1052 | | template <typename Stream, typename... Args> |
1053 | | inline void UnserializeMany(Stream& s, Args&&... args) |
1054 | 0 | { |
1055 | 0 | (::Unserialize(s, args), ...); |
1056 | 0 | } Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR12CBlockHeaderRSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRiR7uint256S7_RjS8_S8_EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9prevectorILj36EhjiEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRlR7CScriptEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRiR7uint256S3_RjS4_S4_EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRiEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRSt6vectorI7uint256SaIS2_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7WrapperI15VarIntFormatterIL10VarIntMode0EERmEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR22transaction_identifierILb0EERjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7uint256EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7WrapperI17AmountCompressionRlERS1_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJRS3_R8CNetAddrR7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSC_8durationIlSt5ratioILl1ELl1EEEEEEERiEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJR7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJR7WrapperI20CompactSizeFormatterILb0EERmEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIRS0_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS7_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR12CBlockHeaderRmR7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEERS9_I20PrefilledTransactionSaISF_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7WrapperI20CompactSizeFormatterILb1EERtER13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRSt10shared_ptrIK12CTransactionEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRlRiEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRlRiEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR12CBlockHeaderR18CPartialMerkleTreeEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRjRSt6vectorI7uint256SaIS3_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRSt6vectorIhSaIhEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR22transaction_identifierILb0EERjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR9prevectorILj36EhjiEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR9COutPointR7CScriptRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR9COutPointR7CScriptRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR9prevectorILj36EhjiEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7WrapperI15VarIntFormatterIL10VarIntMode1EERiERS1_IS2_ILS3_0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode1EERiERS1_IS2_ILS3_0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRA4_hRSt6vectorIjSaIjEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRA4_hRSt6vectorIjSaIjEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR13ParamsWrapperI20TransactionSerParams19CMutableTransactionEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR17CompactSizeReaderEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRhEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR13ParamsWrapperI20TransactionSerParamsSt10shared_ptrIK12CTransactionEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR6CTxOutEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRlR7CScriptEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRSt6vectorIS1_IhSaIhEESaIS3_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR22transaction_identifierILb0EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR11XOnlyPubKeyEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRlEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7WrapperI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaIS6_EEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRSt6vectorI7CTxUndoSaIS2_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEJRS3_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEJRS3_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRSt5arrayIhLm4EERA12_cRjRA4_hEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJR7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJR7WrapperI20CompactSizeFormatterILb0EERmEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS7_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRjR7uint256EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRSt6vectorIhSaIhEERjS5_RhEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7uint256R13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7uint256R7WrapperI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7uint256R7WrapperI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRiRlEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEER6CKeyIDEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR13KeyOriginInfoEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRbEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRiS9_S9_EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9prevectorILj36EhjiEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRlR7CScriptEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRiEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRSt6vectorI7uint256SaIS2_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRSt6vectorIhSaIhEES4_RjS5_S4_EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRiRjR6CKeyIDEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR12CBlockHeaderRSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRiR7uint256S7_RjS8_S8_EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJR7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJR7WrapperI20CompactSizeFormatterILb0EERmEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS9_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJRS3_R8CNetAddrR7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSC_8durationIlSt5ratioILl1ELl1EEEEEEERiEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJR7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNS9_8durationIlSt5ratioILl1ELl1EEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJR7WrapperI20CompactSizeFormatterILb0EERmEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS7_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJRS5_R8CNetAddrR7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSE_8durationIlSt5ratioILl1ELl1EEEEEEERiEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJRS3_R8CNetAddrR7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSC_8durationIlSt5ratioILl1ELl1EEEEEEERiEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJRS5_R8CNetAddrR7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSE_8durationIlSt5ratioILl1ELl1EEEEEEERiEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJR7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJR7WrapperI20CompactSizeFormatterILb0EERmEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS9_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEJR8CNetAddrR7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRSt5arrayIhLm4EERA12_cRjRA4_hEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRjR7uint256EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR12CBlockHeaderRmR7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEERS9_I20PrefilledTransactionSaISF_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRiR7uint256S3_RjS4_S4_EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7WrapperI20CompactSizeFormatterILb1EERtER13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRSt10shared_ptrIK12CTransactionEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7uint256R13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRSt6vectorIhSaIhEERjS5_RhEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7uint256EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12HashVerifierI14BufferedReaderI8AutoFileEEJRSt6vectorI7CTxUndoSaIS6_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12HashVerifierI14BufferedReaderI8AutoFileEEJR7WrapperI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaISA_EEEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12HashVerifierI14BufferedReaderI8AutoFileEEJR7WrapperI17AmountCompressionRlERS5_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9prevectorILj36EhjiEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJRlR7CScriptEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRhR22transaction_identifierILb0EER7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7WrapperI17AmountCompressionRlERS1_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12BufferedFileJRiR7uint256S3_RjS4_S4_EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR12CBlockHeaderRSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRiR7uint256S7_RjS8_S8_EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9prevectorILj36EhjiEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRlR7CScriptEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI8AutoFileJR7WrapperI17AmountCompressionRlERS1_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7uint256S2_R11FlatFilePosEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7uint256S2_R11FlatFilePosEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRmEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRlEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRmEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7Num3072EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR11FlatFilePosR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI8AutoFileJRiR7uint256S3_RjS4_S4_EEvRT_DpOT0_ Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR10CDiskTxPosEEvRT_DpOT0_ |
1057 | | |
1058 | | /** |
1059 | | * Support for all macros providing or using the ser_action parameter of the SerializationOps method. |
1060 | | */ |
1061 | | struct ActionSerialize { |
1062 | 0 | static constexpr bool ForRead() { return false; } |
1063 | | |
1064 | | template<typename Stream, typename... Args> |
1065 | | static void SerReadWriteMany(Stream& s, const Args&... args) |
1066 | 0 | { |
1067 | 0 | ::SerializeMany(s, args...); |
1068 | 0 | } Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ12CBlockHeaderSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJi7uint256S6_jjjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ12CBlockHeaderm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEES8_I20PrefilledTransactionSaISE_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJi7uint256S2_jjjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeaderSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJi7uint256S6_jjjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKmEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ12CBlockHeaderm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEES8_I20PrefilledTransactionSaISE_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJi7uint256S2_jjjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJliEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ12CBlockHeader18CPartialMerkleTreeEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJjSt6vectorI7uint256SaIS3_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJSt6vectorIhSaIhEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ9COutPoint7CScriptjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiES2_IS3_ILS4_0EERKjEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJA4_hSt6vectorIjSaIjEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7uint256EEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7uint256EEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ12CBlockHeaderSt6vectorISt10shared_ptrIK12CTransactionESaISB_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJi7uint256S6_jjjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJiEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJSt6vectorI7uint256SaIS3_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS7_EEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI17AmountCompressionRKlES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJSt6vectorI7CTxUndoSaIS3_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEJS4_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJSt5arrayIhLm4EEA12_cjA4_hEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS8_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJj7uint256EEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJSt6vectorIhSaIhEEjjhEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeaderm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEESC_I20PrefilledTransactionSaISI_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperIS4_S6_I16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EJ9COutPoint7CScriptjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7uint256EEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI8AutoFileJ7WrapperI17AmountCompressionRKlES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJilEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE6CKeyIDEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ13KeyOriginInfoEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJbEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJSt6vectorIhSaIhEES4_jjS4_EEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmiiiEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEJS4_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNSC_8durationIlSt5ratioILl1ELl1EEEEEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJSA_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJS6_8CNetAddr7WrapperI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNSD_8durationIlSt5ratioILl1ELl1EEEEEEEiEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJS4_8CNetAddr7WrapperI15ChronoFormatterIlLb0EERKNSt6chrono10time_pointI9NodeClockNSB_8durationIlSt5ratioILl1ELl1EEEEEEEiEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ12CBlockHeaderm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKSt6vectorImSaImEEES8_I20PrefilledTransactionSaISE_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJi7uint256S2_jjjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10HashWriterJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJSt5arrayIhLm4EEA12_cjA4_hEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJj7uint256EEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ12CBlockHeader18CPartialMerkleTreeEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJjSt6vectorI7uint256SaIS3_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJSt6vectorIhSaIhEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJiEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJSt6vectorI7uint256SaIS3_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKSt6vectorItSaItEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS8_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJSt6vectorI7CTxUndoSaIS3_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS7_EEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7WrapperI17AmountCompressionRKlES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10HashWriterJSt6vectorI7CTxUndoSaIS3_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS7_EEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ7WrapperI17AmountCompressionRKlES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI14BufferedWriterI8AutoFileEJSt6vectorI7CTxUndoSaIS5_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI14BufferedWriterI8AutoFileEJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKSt6vectorI4CoinSaIS9_EEEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI14BufferedWriterI8AutoFileEJ7WrapperI17AmountCompressionRKlES4_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ12CBlockHeaderSt6vectorISt10shared_ptrIK12CTransactionESaISD_EEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJi7uint256S8_jjjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJl7CScriptEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJjj6CTxOutEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJh22transaction_identifierILb0EE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJhEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7uint256S2_11FlatFilePosEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJmEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJlEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7Num3072EEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ11FlatFilePos7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ10CDiskTxPosEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10HashWriterJi7uint256S2_jjjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_ Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJl7CScriptEEEvRT_DpRKT0_ |
1069 | | |
1070 | | template<typename Stream, typename Type, typename Fn> |
1071 | | static void SerRead(Stream& s, Type&&, Fn&&) |
1072 | 0 | { |
1073 | 0 | } Unexecuted instantiation: _ZN15ActionSerialize7SerReadI10DataStreamRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RS2_E_EEvS9_OS6_OSA_ Unexecuted instantiation: _ZN15ActionSerialize7SerReadI10DataStreamRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RS2_E0_EEvS9_OS6_OSA_ Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERKS4_ZNS4_16SerializationOpsIS6_S7_S_EEvRT0_RT_T1_EUlRS6_RS4_E_EEvSD_OSA_OSE_ Unexecuted instantiation: _ZN15ActionSerialize7SerReadI10DataStreamRKN6wallet16WalletDescriptorEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_RS3_E_EEvSA_OS7_OSB_ Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEERKS6_ZNS6_16SerializationOpsIS8_S9_S_EEvRT0_RT_T1_EUlRS8_RS6_E_EEvSF_OSC_OSG_ Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12VectorWriterRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RS2_E_EEvS9_OS6_OSA_ Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12VectorWriterRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RS2_E0_EEvS9_OS6_OSA_ Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEERKS4_ZNS4_16SerializationOpsIS6_S7_S_EEvRT0_RT_T1_EUlRS6_RS4_E_EEvSD_OSA_OSE_ Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize7SerReadI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_RS3_E_EEvSA_OS7_OSB_ Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize7SerReadI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_RS3_E0_EEvSA_OS7_OSB_ Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize7SerReadI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_RS3_E1_EEvSA_OS7_OSB_ |
1074 | | |
1075 | | template<typename Stream, typename Type, typename Fn> |
1076 | | static void SerWrite(Stream& s, Type&& obj, Fn&& fn) |
1077 | 0 | { |
1078 | 0 | fn(s, std::forward<Type>(obj)); |
1079 | 0 | } Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI10DataStreamRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E_EEvS9_OS6_OSA_ Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERKS4_ZNS4_16SerializationOpsIS6_S7_S_EEvRT0_RT_T1_EUlRS6_S8_E_EEvSD_OSA_OSE_ Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI10DataStreamRKN6wallet16WalletDescriptorEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_S5_E_EEvSA_OS7_OSB_ Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEERKS6_ZNS6_16SerializationOpsIS8_S9_S_EEvRT0_RT_T1_EUlRS8_SA_E_EEvSF_OSC_OSG_ Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI12VectorWriterRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E_EEvS9_OS6_OSA_ Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEERKS4_ZNS4_16SerializationOpsIS6_S7_S_EEvRT0_RT_T1_EUlRS6_S8_E_EEvSD_OSA_OSE_ Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize8SerWriteI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_S5_E_EEvSA_OS7_OSB_ Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize8SerWriteI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_S5_E0_EEvSA_OS7_OSB_ Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize8SerWriteI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_S5_E1_EEvSA_OS7_OSB_ |
1080 | | }; |
1081 | | struct ActionUnserialize { |
1082 | 0 | static constexpr bool ForRead() { return true; } |
1083 | | |
1084 | | template<typename Stream, typename... Args> |
1085 | | static void SerReadWriteMany(Stream& s, Args&&... args) |
1086 | 0 | { |
1087 | 0 | ::UnserializeMany(s, args...); |
1088 | 0 | } Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR12CBlockHeaderRSt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRiR7uint256S8_RjS9_S9_EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9prevectorILj36EhjiEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRlR7CScriptEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRiR7uint256S4_RjS5_S5_EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRiEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRSt6vectorI7uint256SaIS3_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJ7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJ7WrapperI15VarIntFormatterIL10VarIntMode0EERmEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR22transaction_identifierILb0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR7uint256EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJ7WrapperI17AmountCompressionRlES2_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJRS4_R8CNetAddr7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSD_8durationIlSt5ratioILl1ELl1EEEEEEERiEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIRS1_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS8_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR12CBlockHeaderRm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEERSA_I20PrefilledTransactionSaISF_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJ7WrapperI20CompactSizeFormatterILb1EERtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRSt10shared_ptrIK12CTransactionEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRlRiEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRlRiEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR12CBlockHeaderR18CPartialMerkleTreeEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRjRSt6vectorI7uint256SaIS4_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRSt6vectorIhSaIhEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR22transaction_identifierILb0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR9prevectorILj36EhjiEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR9COutPointR7CScriptRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR9COutPointR7CScriptRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR9prevectorILj36EhjiEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiES2_IS3_ILS4_0EERjEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiES2_IS3_ILS4_0EERjEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRA4_hRSt6vectorIjSaIjEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRA4_hRSt6vectorIjSaIjEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRlR7CScriptEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJ7WrapperI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaIS7_EEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRSt6vectorI7CTxUndoSaIS3_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEJRS4_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEJRS4_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRSt5arrayIhLm4EERA12_cRjRA4_hEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS8_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRjR7uint256EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRSt6vectorIhSaIhEERjS6_RhEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISE_EEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERSt6vectorItSaItEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiRlEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEER6CKeyIDEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR13KeyOriginInfoEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRbEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRiSA_SA_EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9prevectorILj36EhjiEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRlR7CScriptEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRSt6vectorI7uint256SaIS3_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRSt6vectorIhSaIhEES5_RjS6_S5_EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiRjR6CKeyIDEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR12CBlockHeaderRSt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRiR7uint256S8_RjS9_S9_EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNSC_8durationIlSt5ratioILl1ELl1EEEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIRS1_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRSA_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJRS4_R8CNetAddr7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSD_8durationIlSt5ratioILl1ELl1EEEEEEERiEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNSA_8durationIlSt5ratioILl1ELl1EEEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIRS1_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS8_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJRS6_R8CNetAddr7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSF_8durationIlSt5ratioILl1ELl1EEEEEEERiEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJRS4_R8CNetAddr7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSD_8durationIlSt5ratioILl1ELl1EEEEEEERiEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJRS6_R8CNetAddr7WrapperI15ChronoFormatterIlLb0EERNSt6chrono10time_pointI9NodeClockNSF_8durationIlSt5ratioILl1ELl1EEEEEEERiEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERNSt6chrono10time_pointI9NodeClockNSC_8durationIlSt5ratioILl1ELl1EEEEEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERmEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIRS1_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRSA_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEJR8CNetAddr7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRSt5arrayIhLm4EERA12_cRjRA4_hEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRjR7uint256EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR12CBlockHeaderRm7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERSt6vectorImSaImEEERSA_I20PrefilledTransactionSaISF_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiR7uint256S4_RjS5_S5_EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI20CompactSizeFormatterILb1EERtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRSt10shared_ptrIK12CTransactionEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaISE_EEEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRSt6vectorIhSaIhEERjS6_RhEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint256EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12HashVerifierI14BufferedReaderI8AutoFileEEJRSt6vectorI7CTxUndoSaIS7_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12HashVerifierI14BufferedReaderI8AutoFileEEJ7WrapperI15VectorFormatterI17TxInUndoFormatterERSt6vectorI4CoinSaISB_EEEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12HashVerifierI14BufferedReaderI8AutoFileEEJ7WrapperI17AmountCompressionRlES6_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9prevectorILj36EhjiEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJRlR7CScriptEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRhR22transaction_identifierILb0EE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI17AmountCompressionRlES2_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12BufferedFileJRiR7uint256S4_RjS5_S5_EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR12CBlockHeaderRSt6vectorISt10shared_ptrIK12CTransactionESaISC_EEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRiR7uint256S8_RjS9_S9_EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9prevectorILj36EhjiEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRlR7CScriptEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI8AutoFileJ7WrapperI17AmountCompressionRlES2_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint256S3_R11FlatFilePosEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR7uint256S3_R11FlatFilePosEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRmEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRlEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRmEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRlEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR7Num3072EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR11FlatFilePos7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI8AutoFileJRiR7uint256S4_RjS5_S5_EEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRhEEEvRT_DpOT0_ Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR10CDiskTxPosEEEvRT_DpOT0_ |
1089 | | |
1090 | | template<typename Stream, typename Type, typename Fn> |
1091 | | static void SerRead(Stream& s, Type&& obj, Fn&& fn) |
1092 | 0 | { |
1093 | 0 | fn(s, std::forward<Type>(obj)); |
1094 | 0 | } Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_S7_E_EEvSC_OS9_OSD_ Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI10SpanReaderR18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S2_S_EEvRT0_RT_T1_EUlRS1_S3_E_EEvS8_OS5_OS9_ Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI10SpanReaderR18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S2_S_EEvRT0_RT_T1_EUlRS1_S3_E0_EEvS8_OS5_OS9_ Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_S7_E_EEvSC_OS9_OSD_ Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI10DataStreamRN6wallet16WalletDescriptorEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E_EEvS9_OS6_OSA_ Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEERS6_ZNS6_16SerializationOpsIS8_S6_S_EEvRT0_RT_T1_EUlRS8_S9_E_EEvSE_OSB_OSF_ Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_S7_E_EEvSC_OS9_OSD_ Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEERS6_ZNS6_16SerializationOpsIS8_S6_S_EEvRT0_RT_T1_EUlRS8_S9_E_EEvSE_OSB_OSF_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize7SerReadI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize7SerReadI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E0_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize7SerReadI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E1_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize7SerReadI10SpanReaderRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize7SerReadI10SpanReaderRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E0_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize7SerReadI10SpanReaderRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E1_EEvS9_OS6_OSA_ |
1095 | | |
1096 | | template<typename Stream, typename Type, typename Fn> |
1097 | | static void SerWrite(Stream& s, Type&&, Fn&&) |
1098 | 0 | { |
1099 | 0 | } Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_RKS4_E_EEvSC_OS9_OSD_ Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI10SpanReaderR18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S2_S_EEvRT0_RT_T1_EUlRS1_RKS2_E_EEvS8_OS5_OS9_ Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_RKS4_E_EEvSC_OS9_OSD_ Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI10DataStreamRN6wallet16WalletDescriptorEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E_EEvS9_OS6_OSA_ Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEERS6_ZNS6_16SerializationOpsIS8_S6_S_EEvRT0_RT_T1_EUlRS8_RKS6_E_EEvSE_OSB_OSF_ Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_RKS4_E_EEvSC_OS9_OSD_ Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEERS6_ZNS6_16SerializationOpsIS8_S6_S_EEvRT0_RT_T1_EUlRS8_RKS6_E_EEvSE_OSB_OSF_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize8SerWriteI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize8SerWriteI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E0_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize8SerWriteI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E1_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize8SerWriteI10SpanReaderRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize8SerWriteI10SpanReaderRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E0_EEvS9_OS6_OSA_ Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize8SerWriteI10SpanReaderRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E1_EEvS9_OS6_OSA_ |
1100 | | }; |
1101 | | |
1102 | | /* ::GetSerializeSize implementations |
1103 | | * |
1104 | | * Computing the serialized size of objects is done through a special stream |
1105 | | * object of type SizeComputer, which only records the number of bytes written |
1106 | | * to it. |
1107 | | * |
1108 | | * If your Serialize or SerializationOp method has non-trivial overhead for |
1109 | | * serialization, it may be worthwhile to implement a specialized version for |
1110 | | * SizeComputer, which uses the s.seek() method to record bytes that would |
1111 | | * be written instead. |
1112 | | */ |
1113 | | class SizeComputer |
1114 | | { |
1115 | | protected: |
1116 | | uint64_t m_size{0}; |
1117 | | |
1118 | | public: |
1119 | 0 | SizeComputer() = default; |
1120 | | |
1121 | | void write(std::span<const std::byte> src) |
1122 | 0 | { |
1123 | 0 | m_size += src.size(); |
1124 | 0 | } |
1125 | | |
1126 | | /** Pretend this many bytes are written, without specifying them. */ |
1127 | | void seek(uint64_t num) |
1128 | 0 | { |
1129 | 0 | m_size += num; |
1130 | 0 | } |
1131 | | |
1132 | | template <typename T> |
1133 | | SizeComputer& operator<<(const T& obj) |
1134 | 0 | { |
1135 | 0 | ::Serialize(*this, obj); |
1136 | 0 | return *this; |
1137 | 0 | } Unexecuted instantiation: _ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsK12CTransactionEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsK6CBlockEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsK5CTxInEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsISt6vectorIS1_IhSaIhEESaIS3_EEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsISt4spanIKhLm32EEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsI6CTxOutEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsI25CBlockHeaderAndShortTxIDsEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsI10CBlockUndoEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsI7WrapperI15VarIntFormatterIL10VarIntMode0EERmEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsISt4spanIhLm18446744073709551615EEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsI7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsISt4spanIKhLm18446744073709551615EEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEEEERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsI7uint256EERS_RKT_ Unexecuted instantiation: _ZN12SizeComputerlsISt6vectorIhSaIhEEEERS_RKT_ |
1138 | | |
1139 | | uint64_t size() const |
1140 | 0 | { |
1141 | 0 | return m_size; |
1142 | 0 | } |
1143 | | }; |
1144 | | |
1145 | | template<typename I> |
1146 | | inline void WriteVarInt(SizeComputer &s, I n) |
1147 | | { |
1148 | | s.seek(GetSizeOfVarInt<I>(n)); |
1149 | | } |
1150 | | |
1151 | | inline void WriteCompactSize(SizeComputer &s, uint64_t nSize) |
1152 | 0 | { |
1153 | 0 | s.seek(GetSizeOfCompactSize(nSize)); |
1154 | 0 | } |
1155 | | |
1156 | | template <typename T> |
1157 | | uint64_t GetSerializeSize(const T& t) |
1158 | 0 | { |
1159 | 0 | return (SizeComputer() << t).size(); |
1160 | 0 | } Unexecuted instantiation: _Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsK12CTransactionEEmRKT_ Unexecuted instantiation: _Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsK6CBlockEEmRKT_ Unexecuted instantiation: _Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsK5CTxInEEmRKT_ Unexecuted instantiation: _Z16GetSerializeSizeISt6vectorIS0_IhSaIhEESaIS2_EEEmRKT_ Unexecuted instantiation: _Z16GetSerializeSizeI6CTxOutEmRKT_ Unexecuted instantiation: _Z16GetSerializeSizeI25CBlockHeaderAndShortTxIDsEmRKT_ Unexecuted instantiation: _Z16GetSerializeSizeI10CBlockUndoEmRKT_ Unexecuted instantiation: _Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEEEmRKT_ Unexecuted instantiation: _Z16GetSerializeSizeI7uint256EmRKT_ Unexecuted instantiation: _Z16GetSerializeSizeISt6vectorIhSaIhEEEmRKT_ |
1161 | | |
1162 | | //! Check if type contains a stream by seeing if has a GetStream() method. |
1163 | | template<typename T> |
1164 | | concept ContainsStream = requires(T t) { t.GetStream(); }; |
1165 | | |
1166 | | /** Wrapper that overrides the GetParams() function of a stream. */ |
1167 | | template <typename SubStream, typename Params> |
1168 | | class ParamsStream |
1169 | | { |
1170 | | const Params& m_params; |
1171 | | // If ParamsStream constructor is passed an lvalue argument, Substream will |
1172 | | // be a reference type, and m_substream will reference that argument. |
1173 | | // Otherwise m_substream will be a substream instance and move from the |
1174 | | // argument. Letting ParamsStream contain a substream instance instead of |
1175 | | // just a reference is useful to make the ParamsStream object self contained |
1176 | | // and let it do cleanup when destroyed, for example by closing files if |
1177 | | // SubStream is a file stream. |
1178 | | SubStream m_substream; |
1179 | | |
1180 | | public: |
1181 | 0 | ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}Unexecuted instantiation: _ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsEC2ES1_RKS2_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReader20TransactionSerParamsEC2ES1_RKS2_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsEC2ES1_RKS2_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEC2ES1_RKS3_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES5_RKS7_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsEC2ES1_RKS2_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEEC2ES1_RKS3_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEC2ES1_RKS3_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEC2ES1_RKS3_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES5_RKS7_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_EC2ES4_RKS2_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEC2ES1_RKS3_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEC2ES3_RKS5_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES7_RKS9_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEC2ES3_RKS5_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES7_RKS9_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEC2ES1_RKS3_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES5_RKS7_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEC2ES3_RKS5_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES7_RKS9_ Unexecuted instantiation: _ZN12ParamsStreamI10SpanReaderN8CAddress9SerParamsEEC2EOS0_RKS2_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEC2ES1_RKS3_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES5_RKS7_ Unexecuted instantiation: _ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEC2ES3_RKS4_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsEC2ES1_RKS2_ Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsEC2ES1_RKS2_ Unexecuted instantiation: _ZN12ParamsStreamIR10HashWriter20TransactionSerParamsEC2ES1_RKS2_ |
1182 | | |
1183 | | template <typename NestedSubstream, typename Params1, typename Params2, typename... NestedParams> |
1184 | | ParamsStream(NestedSubstream&& s, const Params1& params1 LIFETIMEBOUND, const Params2& params2 LIFETIMEBOUND, const NestedParams&... params LIFETIMEBOUND) |
1185 | | : ParamsStream{::ParamsStream{std::forward<NestedSubstream>(s), params2, params...}, params1} {} |
1186 | | |
1187 | 0 | template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }Unexecuted instantiation: _ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsIjEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsISt6vectorI5CTxInSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsISt4spanIKhLm32EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsIhEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsISt6vectorI6CTxOutSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsISt6vectorIS5_IhSaIhEESaIS7_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsIjEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsISt6vectorI5CTxInSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsISt4spanIKhLm32EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsIhEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsISt6vectorI6CTxOutSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsISt6vectorIS5_IhSaIhEESaIS7_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsIjEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsISt6vectorI5CTxInSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsISt4spanIKhLm32EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsIhEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsISt6vectorI6CTxOutSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsISt6vectorIS5_IhSaIhEESaIS7_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEElsIhEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEElsIA16_hEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIjEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIhEERS8_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS8_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERS8_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIA16_hEERS8_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsIjEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsISt6vectorI5CTxInSaIS8_EEEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsISt4spanIKhLm32EEEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsIhEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsISt6vectorI6CTxOutSaIS8_EEEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsISt6vectorIS7_IhSaIhEESaIS9_EEEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEElsIhEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEElsIA16_hEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIjEERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIhEERSA_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERSA_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERSA_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIA16_hEERSA_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIhEERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsI7uint256EERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsISt4spanIKhLm32EEEERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIiEERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsI8AddrInfoEERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsI9prevectorILj16EhjiEEERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIA16_hEERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIlEERS6_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIhEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsI7uint256EERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsISt4spanIKhLm32EEEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIiEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsI8AddrInfoEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsI9prevectorILj16EhjiEEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIA16_hEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIlEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEElsIjEERS4_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIhEERS8_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS8_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERS8_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIA16_hEERS8_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsISt4spanIKhLm32EEEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsIjEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsISt6vectorI5CTxInSaIS8_EEEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsIhEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsISt6vectorI6CTxOutSaIS8_EEEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsISt6vectorIS7_IhSaIhEESaIS9_EEEERS5_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsIjEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsISt6vectorI5CTxInSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsISt4spanIKhLm32EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsIhEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsISt6vectorI6CTxOutSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsISt6vectorIS5_IhSaIhEESaIS7_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsIjEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsISt6vectorI5CTxInSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsISt4spanIKhLm32EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsIhEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsISt6vectorI6CTxOutSaIS6_EEEERS3_RKT_ Unexecuted instantiation: _ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsISt6vectorIS5_IhSaIhEESaIS7_EEEERS3_RKT_ |
1188 | 0 | template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRjEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRSt6vectorI5CTxInSaIS6_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRhEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRSt6vectorI6CTxOutSaIS6_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRSt6vectorIS5_IhSaIhEESaIS7_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEErsIRjEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRhEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRA16_hEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEErsIRhEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEErsIRA16_hEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEErsIRlEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEErsIRhEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEErsIRA16_hEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEErsIRhEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEErsIRA16_hEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRjEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRhEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRA16_hEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRhEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRA16_hEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRjEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRSt6vectorI5CTxInSaIS6_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRhEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRSt6vectorI6CTxOutSaIS6_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRSt6vectorIS5_IhSaIhEESaIS7_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRjEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRhEERSA_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERSA_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsISt4spanIhLm18446744073709551615EEEERSA_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRA16_hEERSA_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRhEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIR7uint256EERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRiEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIR8AddrInfoEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRjEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRhEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRA16_hEERS8_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRA16_hEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRlEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRhEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIR7uint256EERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRiEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIR8AddrInfoEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRA16_hEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRlEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIR7uint256EERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRiEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIR8AddrInfoEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRlEERS4_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRhEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIR7uint256EERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRiEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIR8AddrInfoEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRjEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRhEERSA_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERSA_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsISt4spanIhLm18446744073709551615EEEERSA_OT_ Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRA16_hEERSA_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRA16_hEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRlEERS6_OT_ Unexecuted instantiation: _ZN12ParamsStreamI10SpanReaderN8CAddress9SerParamsEErsIR8CServiceEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamI10SpanReaderN8CAddress9SerParamsEErsIRhEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamI10SpanReaderN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamI10SpanReaderN8CAddress9SerParamsEErsISt4spanIhLm18446744073709551615EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamI10SpanReaderN8CAddress9SerParamsEErsIRA16_hEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRjEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRSt6vectorI5CTxInSaIS6_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRhEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRSt6vectorI6CTxOutSaIS6_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRSt6vectorIS5_IhSaIhEESaIS7_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRjEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRSt6vectorI5CTxInSaIS6_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRhEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRSt6vectorI6CTxOutSaIS6_EEEERS3_OT_ Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRSt6vectorIS5_IhSaIhEESaIS7_EEEERS3_OT_ |
1189 | 0 | void write(std::span<const std::byte> src) { GetStream().write(src); }Unexecuted instantiation: _ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_E5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsE5writeESt4spanIKSt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR10HashWriter20TransactionSerParamsE5writeESt4spanIKSt4byteLm18446744073709551615EE |
1190 | 0 | void read(std::span<std::byte> dst) { GetStream().read(dst); }Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReader20TransactionSerParamsE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamI10SpanReaderN8CAddress9SerParamsEE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsE4readESt4spanISt4byteLm18446744073709551615EE Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsE4readESt4spanISt4byteLm18446744073709551615EE |
1191 | 0 | void ignore(size_t num) { GetStream().ignore(num); }Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE6ignoreEm Unexecuted instantiation: _ZN12ParamsStreamI10SpanReaderN8CAddress9SerParamsEE6ignoreEm |
1192 | 0 | bool empty() const { return GetStream().empty(); } |
1193 | | size_t size() const { return GetStream().size(); } |
1194 | | |
1195 | | //! Get reference to stream parameters. |
1196 | | template <typename P> |
1197 | | const auto& GetParams() const |
1198 | 0 | { |
1199 | 0 | if constexpr (std::is_convertible_v<Params, P>) { |
1200 | 0 | return m_params; |
1201 | | } else { |
1202 | | return m_substream.template GetParams<P>(); |
1203 | | } |
1204 | 0 | } Unexecuted instantiation: _ZNK12ParamsStreamIR12SizeComputer20TransactionSerParamsE9GetParamsIS2_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR10SpanReader20TransactionSerParamsE9GetParamsIS2_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR12VectorWriter20TransactionSerParamsE9GetParamsIS2_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEE9GetParamsIS3_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS7_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR10DataStream20TransactionSerParamsE9GetParamsIS2_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEE9GetParamsIS3_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE9GetParamsIS3_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE9GetParamsIS3_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS7_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_E9GetParamsIS2_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE9GetParamsIS3_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE9GetParamsIS5_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS9_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE9GetParamsIS5_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS9_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE9GetParamsIS3_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS7_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE9GetParamsIS5_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS9_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav Unexecuted instantiation: _ZNK12ParamsStreamI10SpanReaderN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE9GetParamsIS3_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS7_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE9GetParamsIS4_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR8AutoFile20TransactionSerParamsE9GetParamsIS2_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR12BufferedFile20TransactionSerParamsE9GetParamsIS2_EERKDav Unexecuted instantiation: _ZNK12ParamsStreamIR10HashWriter20TransactionSerParamsE9GetParamsIS2_EERKDav |
1205 | | |
1206 | | //! Get reference to underlying stream. |
1207 | | auto& GetStream() |
1208 | 0 | { |
1209 | 0 | if constexpr (ContainsStream<SubStream>) { |
1210 | 0 | return m_substream.GetStream(); |
1211 | 0 | } else { |
1212 | 0 | return m_substream; |
1213 | 0 | } |
1214 | 0 | } Unexecuted instantiation: _ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReader20TransactionSerParamsE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10SpanReaderN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR10SpanReaderN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_E9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamI10SpanReaderN8CAddress9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsE9GetStreamEv Unexecuted instantiation: _ZN12ParamsStreamIR10HashWriter20TransactionSerParamsE9GetStreamEv |
1215 | | const auto& GetStream() const |
1216 | 0 | { |
1217 | | if constexpr (ContainsStream<SubStream>) { |
1218 | | return m_substream.GetStream(); |
1219 | 0 | } else { |
1220 | 0 | return m_substream; |
1221 | 0 | } |
1222 | 0 | } |
1223 | | }; |
1224 | | |
1225 | | /** |
1226 | | * Explicit template deduction guide is required for single-parameter |
1227 | | * constructor so Substream&& is treated as a forwarding reference, and |
1228 | | * SubStream is deduced as reference type for lvalue arguments. |
1229 | | */ |
1230 | | template <typename Substream, typename Params> |
1231 | | ParamsStream(Substream&&, const Params&) -> ParamsStream<Substream, Params>; |
1232 | | |
1233 | | /** |
1234 | | * Template deduction guide for multiple params arguments that creates a nested |
1235 | | * ParamsStream. |
1236 | | */ |
1237 | | template <typename Substream, typename Params1, typename Params2, typename... Params> |
1238 | | ParamsStream(Substream&& s, const Params1& params1, const Params2& params2, const Params&... params) -> |
1239 | | ParamsStream<decltype(ParamsStream{std::forward<Substream>(s), params2, params...}), Params1>; |
1240 | | |
1241 | | /** Wrapper that serializes objects with the specified parameters. */ |
1242 | | template <typename Params, typename T> |
1243 | | class ParamsWrapper |
1244 | | { |
1245 | | const Params& m_params; |
1246 | | T& m_object; |
1247 | | |
1248 | | public: |
1249 | 0 | explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams6CBlockEC2ERKS0_RS1_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsK6CBlockEC2ERKS0_RS2_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams19CMutableTransactionEC2ERKS0_RS1_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEC2ERKS0_RS9_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS9_EEEEC2ERKS0_RSE_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsSt6vectorI6CBlockSaIS2_EEEC2ERKS0_RS4_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsK12CTransactionEC2ERKS0_RS2_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEC2ERKS1_RS2_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsE8AddrInfoEC2ERKS1_RS2_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEEEC2ERKS0_RS8_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsSt10shared_ptrIK12CTransactionEEC2ERKS0_RS4_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEEC2ERKS0_RS5_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsES0_EC2ERKS1_RS0_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsEKS0_EC2ERKS1_RS2_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEC2ERKS1_RS3_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsES0_EC2ERKS1_RS0_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsEKS0_EC2ERKS1_RS2_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS9_EEEEC2ERKS0_RSD_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams25CBlockHeaderAndShortTxIDsEC2ERKS0_RS1_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsK5CTxInEC2ERKS0_RS2_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsE8CNetAddrEC2ERKS1_RS2_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsEKSt6vectorIS0_SaIS0_EEEC2ERKS1_RS5_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsESt6vectorIS0_SaIS0_EEEC2ERKS1_RS4_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionEC2ERKS0_RS2_ |
1250 | | |
1251 | | template <typename Stream> |
1252 | | void Serialize(Stream& s) const |
1253 | 0 | { |
1254 | 0 | ParamsStream ss{s, m_params}; |
1255 | 0 | ::Serialize(ss, m_object); |
1256 | 0 | } Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK5CTxInE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS9_EEEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsSt6vectorI6CBlockSaIS2_EEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams19CMutableTransactionE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams19CMutableTransactionE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams6CBlockE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEKS0_E9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperIN8CAddress9SerParamsEKS0_E9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS9_EEEE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams25CBlockHeaderAndShortTxIDsE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEE9SerializeI12ParamsStreamIR12VectorWriterS0_EEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams6CBlockE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams19CMutableTransactionE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsKSt10shared_ptrIK12CTransactionEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperIN8CAddress9SerParamsEKSt6vectorIS0_SaIS0_EEE9SerializeI18HashedSourceWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEE9SerializeI12SizeComputerEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperIN8CAddress9SerParamsESt6vectorIS0_SaIS0_EEE9SerializeI12VectorWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceE9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI14BufferedWriterI8AutoFileEEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionE9SerializeI10HashWriterEEvRT_ Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI10HashWriterEEvRT_ |
1257 | | template <typename Stream> |
1258 | | void Unserialize(Stream& s) |
1259 | 0 | { |
1260 | 0 | ParamsStream ss{s, m_params}; |
1261 | 0 | ::Unserialize(ss, m_object); |
1262 | 0 | } Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams6CBlockE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams19CMutableTransactionE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsE8AddrInfoE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR10SpanReaderN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsSt10shared_ptrIK12CTransactionEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsES0_E11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsES0_E11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsES0_E11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsES0_E11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS9_EEEE11UnserializeI10SpanReaderEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsE8CNetAddrE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsSt10shared_ptrIK12CTransactionEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams6CBlockE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsESt6vectorIS0_SaIS0_EEE11UnserializeI12HashVerifierI8AutoFileEEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsESt6vectorIS0_SaIS0_EEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS9_EEEE11UnserializeI10DataStreamEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsSt10shared_ptrIK12CTransactionEE11UnserializeI8AutoFileEEvRT_ Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams6CBlockE11UnserializeI12BufferedFileEEvRT_ |
1263 | | }; |
1264 | | |
1265 | | /** |
1266 | | * Helper macro for SerParams structs |
1267 | | * |
1268 | | * Allows you define SerParams instances and then apply them directly |
1269 | | * to an object via function call syntax, eg: |
1270 | | * |
1271 | | * constexpr SerParams FOO{....}; |
1272 | | * ss << FOO(obj); |
1273 | | */ |
1274 | | #define SER_PARAMS_OPFUNC \ |
1275 | | /** \ |
1276 | | * Return a wrapper around t that (de)serializes it with specified parameter params. \ |
1277 | | * \ |
1278 | | * See SER_PARAMS for more information on serialization parameters. \ |
1279 | | */ \ |
1280 | | template <typename T> \ |
1281 | | auto operator()(T&& t) const \ |
1282 | 0 | { \ |
1283 | 0 | return ParamsWrapper{*this, t}; \ |
1284 | 0 | } Unexecuted instantiation: _ZNK20TransactionSerParamsclIRK12CTransactionEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclIRK6CBlockEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclIRK5CTxInEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclIRKSt10shared_ptrIK12CTransactionEEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclIRSt10shared_ptrIK12CTransactionEEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclI19CMutableTransactionEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclIR19CMutableTransactionEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclIR6CBlockEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclI7WrapperI16DefaultFormatterRKSt10shared_ptrIK12CTransactionEEEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclI7WrapperI15VectorFormatterI16DefaultFormatterERKSt6vectorISt10shared_ptrIK12CTransactionESaIS9_EEEEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclIRSt6vectorI6CBlockSaIS2_EEEEDaOT_ Unexecuted instantiation: _ZNK8CNetAddr9SerParamsclIR8CServiceEEDaOT_ Unexecuted instantiation: _ZNK8CAddress9SerParamsclIR8AddrInfoEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclI7WrapperI16DefaultFormatterRSt10shared_ptrIK12CTransactionEEEEDaOT_ Unexecuted instantiation: _ZNK8CNetAddr9SerParamsclIRS_EEDaOT_ Unexecuted instantiation: _ZNK8CNetAddr9SerParamsclIRKS_EEDaOT_ Unexecuted instantiation: _ZNK8CNetAddr9SerParamsclIRK8CServiceEEDaOT_ Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRS_EEDaOT_ Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRKS_EEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclI7WrapperI15VectorFormatterI16DefaultFormatterERSt6vectorISt10shared_ptrIK12CTransactionESaIS9_EEEEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclIR25CBlockHeaderAndShortTxIDsEEDaOT_ Unexecuted instantiation: _ZNK8CAddress9SerParamsclIR8CNetAddrEEDaOT_ Unexecuted instantiation: _ZNK8CNetAddr9SerParamsclI8CServiceEEDaOT_ Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRKSt6vectorIS_SaIS_EEEEDaOT_ Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRSt6vectorIS_SaIS_EEEEDaOT_ Unexecuted instantiation: _ZNK20TransactionSerParamsclIRK19CMutableTransactionEEDaOT_ |
1285 | | |
1286 | | #endif // BITCOIN_SERIALIZE_H |