Branch Coverage

/usr/local/lib/perl5/site_perl/5.26.1/x86_64-linux/CPP/panda/lib.x/i/panda/basic_string.h
Criterion Covered Total %
branch 14 42 33.3


line true false branch
103 0 2871 if (!mem) throw std::bad_alloc();
1149 2313 2870 if (capacity <= MAX_SSO_CHARS) {
1153 0 2870 if (capacity > MAX_SIZE) throw std::length_error("basic_string::_new_auto");
0 0 if (capacity > MAX_SIZE) throw std::length_error("basic_string::_new_auto");
1296 0 1251 if (_storage.any->refcnt > 1) _detach_cow(_length);
1311 0 0 assert(capacity >= _length);
1322 0 1302 if (capacity < _length) capacity = _length;
1332 0 1296 if (_storage.internal->refcnt > 1) _detach_cow(capacity);
1333 1296 0 else if (_storage.internal->capacity < capacity) _internal_realloc(capacity); // need to grow storage
1334 0 0 else if (_capacity_internal() < capacity) { // may not to grow storage if str is moved to the beginning
1343 1296 0 if (_storage.dtor == &Alloc::deallocate && _str == _storage.internal->start) {
1296 0 if (_storage.dtor == &Alloc::deallocate && _str == _storage.internal->start) {
1344 0 1296 if (capacity > MAX_SIZE) throw std::length_error("basic_string::_internal_realloc");
0 0 if (capacity > MAX_SIZE) throw std::length_error("basic_string::_internal_realloc");
1359 0 0 if (_storage.external->refcnt > 1) _detach_cow(capacity);
1360 0 0 else if (_storage.external->capacity < capacity) _external_realloc(capacity); // need to grow storage, switch to INTERNAL/SSO
1361 0 0 else if (_capacity_external() < capacity) { // may not to grow storage if str is moved to the beginning
1377 1 5 if (MAX_SSO_CHARS < capacity) {
1381 0 5 else if (_capacity_sso() < capacity) {
1488 0 0 static void _release_internal (Buffer* buf, dtor_fn dtor) { if (!--buf->refcnt) _free_internal(buf, dtor); }
1489 0 0 static void _release_external (ExternalShared* ebuf, dtor_fn dtor) { if (!--ebuf->refcnt) _free_external(ebuf, dtor); }