blob: 898efb471754639e5c3b49476449fc32dff702c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
#include <iostream>
#include <functional>
#include "generator.h"
void* operator new([[maybe_unused]]std::size_t n)
{
std::cout << "new\n";
throw std::bad_alloc();
}
void operator delete(void*) throw()
{
std::cout << "delete\n";
// Do nothing. actual memory is allocated on the stack
}
void operator delete(void*, std::size_t) throw()
{
std::cout << "delete[]\n";
// Do nothing. actual memory is allocated on the stack
}
template<typename T>
Generator<T> iota(T start)
{
while(true)
{
co_yield start++;
}
}
int main()
{
std::cout << " ** std::string:\n";
{
std::string str(15, 'a'); // 15 characters + zero termination - ok
str = "123456789012345"; // 15 characters + zero termination - ok
try
{
str = "1234567890123456"; // 16 characters + zero termination
}
catch(std::bad_alloc &e)
{
std::cout << "Too big for SSO!\n";
}
}
std::cout << '\n';
std::cout << " ** std::vector:\n";
{
try
{
std::vector<int> vec{42}; // even one element is too much, no SBO
}
catch(std::bad_alloc &e)
{
std::cout << "No SBO for std::vector!\n";
}
}
std::cout << '\n';
std::cout << " ** std::function:\n";
{
{
std::function<int()> f;
char foo[16]{};
f = [foo]() // capture up to 16 bytes is ok for std::function
{
int i = 0;
for(auto v : foo) i += v;
return i;
};
}
// try // this line seem to break gcc...
// {
// std::function<int()> f;
// char foo[17]{};
// f = [foo]()
// {
// int i = 0;
// for(auto v : foo) i += v;
// return i;
// };
// }
// catch(std::bad_alloc &e)
// {
// std::cout << "Too big for SBO in std::function!\n";
// }
}
std::cout << '\n';
std::cout << " ** co-routines:\n";
{
try
{
auto gen = iota(0);
while(true)
{
auto i = gen();
if(i > 10) break;
std::cout << i << " ";
}
std::cout << '\n';
}
catch(std::bad_alloc &e)
{
std::cout << "Co-routines always allocate!\n";
}
}
std::cout << '\n';
}
|