LLVMFuzzerTestOneInput:
   18|  9.24k|{
   19|  9.24k|    constexpr auto var_count = 8;
   20|  9.24k|    constexpr auto bits      = 2;
   21|       |
   22|  9.24k|    using vector_t =
   23|  9.24k|        immer::flex_vector<int, immer::default_memory_policy, bits, bits>;
   24|  9.24k|    using size_t = std::uint8_t;
   25|       |
   26|  9.24k|    auto vars = std::array<vector_t, var_count>{};
   27|       |
   28|  9.24k|    auto is_valid_var = [&](auto idx) { return idx >= 0 && idx < var_count; };
   29|  9.24k|    auto is_valid_var_neq = [](auto other) {
   30|  9.24k|        return [=](auto idx) {
   31|  9.24k|            return idx >= 0 && idx < var_count && idx != other;
   32|  9.24k|        };
   33|  9.24k|    };
   34|  9.24k|    auto is_valid_index = [](auto& v) {
   35|  9.24k|        return [&](auto idx) { return idx >= 0 && idx < v.size(); };
   36|  9.24k|    };
   37|  9.24k|    auto is_valid_size = [](auto& v) {
   38|  9.24k|        return [&](auto idx) { return idx >= 0 && idx <= v.size(); };
   39|  9.24k|    };
   40|  9.24k|    auto can_concat = [](auto&& v1, auto&& v2) {
   41|  9.24k|        return v1.size() + v2.size() < vector_t::max_size();
   42|  9.24k|    };
   43|  9.24k|    auto can_compare = [](auto&& v) {
   44|       |        // avoid comparing vectors that are too big, and hence, slow to compare
   45|  9.24k|        return v.size() < (1 << 15);
   46|  9.24k|    };
   47|  9.24k|    return fuzzer_input{data, size}.run([&](auto& in) {
   48|  9.24k|        enum ops
   49|  9.24k|        {
   50|  9.24k|            op_push_back,
   51|  9.24k|            op_update,
   52|  9.24k|            op_take,
   53|  9.24k|            op_drop,
   54|  9.24k|            op_concat,
   55|  9.24k|            op_push_back_move,
   56|  9.24k|            op_update_move,
   57|  9.24k|            op_take_move,
   58|  9.24k|            op_drop_move,
   59|  9.24k|            op_concat_move_l,
   60|  9.24k|            op_concat_move_r,
   61|  9.24k|            op_concat_move_lr,
   62|  9.24k|            op_insert,
   63|  9.24k|            op_erase,
   64|  9.24k|            op_compare,
   65|  9.24k|        };
   66|  9.24k|        auto src = read<char>(in, is_valid_var);
   67|  9.24k|        auto dst = read<char>(in, is_valid_var);
   68|  9.24k|        switch (read<char>(in)) {
   69|  9.24k|        case op_push_back: {
   70|  9.24k|            vars[dst] = vars[src].push_back(42);
   71|  9.24k|            break;
   72|  9.24k|        }
   73|  9.24k|        case op_update: {
   74|  9.24k|            auto idx  = read<size_t>(in, is_valid_index(vars[src]));
   75|  9.24k|            vars[dst] = vars[src].update(idx, [](auto x) { return x + 1; });
   76|  9.24k|            break;
   77|  9.24k|        }
   78|  9.24k|        case op_take: {
   79|  9.24k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
   80|  9.24k|            vars[dst] = vars[src].take(idx);
   81|  9.24k|            break;
   82|  9.24k|        }
   83|  9.24k|        case op_drop: {
   84|  9.24k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
   85|  9.24k|            vars[dst] = vars[src].drop(idx);
   86|  9.24k|            break;
   87|  9.24k|        }
   88|  9.24k|        case op_concat: {
   89|  9.24k|            auto src2 = read<char>(in, is_valid_var);
   90|  9.24k|            if (can_concat(vars[src], vars[src2]))
   91|  9.24k|                vars[dst] = vars[src] + vars[src2];
   92|  9.24k|            break;
   93|  9.24k|        }
   94|  9.24k|        case op_push_back_move: {
   95|  9.24k|            vars[dst] = std::move(vars[src]).push_back(21);
   96|  9.24k|            break;
   97|  9.24k|        }
   98|  9.24k|        case op_update_move: {
   99|  9.24k|            auto idx = read<size_t>(in, is_valid_index(vars[src]));
  100|  9.24k|            vars[dst] =
  101|  9.24k|                std::move(vars[src]).update(idx, [](auto x) { return x + 1; });
  102|  9.24k|            break;
  103|  9.24k|        }
  104|  9.24k|        case op_take_move: {
  105|  9.24k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
  106|  9.24k|            vars[dst] = std::move(vars[src]).take(idx);
  107|  9.24k|            break;
  108|  9.24k|        }
  109|  9.24k|        case op_drop_move: {
  110|  9.24k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
  111|  9.24k|            vars[dst] = std::move(vars[src]).drop(idx);
  112|  9.24k|            break;
  113|  9.24k|        }
  114|  9.24k|        case op_concat_move_l: {
  115|  9.24k|            auto src2 = read<char>(in, is_valid_var_neq(src));
  116|  9.24k|            if (can_concat(vars[src], vars[src2]))
  117|  9.24k|                vars[dst] = std::move(vars[src]) + vars[src2];
  118|  9.24k|            break;
  119|  9.24k|        }
  120|  9.24k|        case op_concat_move_r: {
  121|  9.24k|            auto src2 = read<char>(in, is_valid_var_neq(src));
  122|  9.24k|            if (can_concat(vars[src], vars[src2]))
  123|  9.24k|                vars[dst] = vars[src] + std::move(vars[src2]);
  124|  9.24k|            break;
  125|  9.24k|        }
  126|  9.24k|        case op_concat_move_lr: {
  127|  9.24k|            auto src2 = read<char>(in, is_valid_var_neq(src));
  128|  9.24k|            if (can_concat(vars[src], vars[src2]))
  129|  9.24k|                vars[dst] = std::move(vars[src]) + std::move(vars[src2]);
  130|  9.24k|            break;
  131|  9.24k|        }
  132|  9.24k|        case op_compare: {
  133|  9.24k|            using std::swap;
  134|  9.24k|            if (can_compare(vars[src]) && vars[src] == vars[dst])
  135|  9.24k|                swap(vars[src], vars[dst]);
  136|  9.24k|            break;
  137|  9.24k|        }
  138|  9.24k|        case op_erase: {
  139|  9.24k|            auto idx  = read<size_t>(in, is_valid_index(vars[src]));
  140|  9.24k|            vars[dst] = vars[src].erase(idx);
  141|  9.24k|            break;
  142|  9.24k|        }
  143|  9.24k|        case op_insert: {
  144|  9.24k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
  145|  9.24k|            vars[dst] = vars[src].insert(idx, immer::box<int>{42});
  146|  9.24k|            break;
  147|  9.24k|        }
  148|  9.24k|        default:
  149|  9.24k|            break;
  150|  9.24k|        };
  151|  9.24k|        return true;
  152|  9.24k|    });
  153|  9.24k|}
flex-vector.cpp:_ZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_:
   47|  2.10M|    return fuzzer_input{data, size}.run([&](auto& in) {
   48|  2.10M|        enum ops
   49|  2.10M|        {
   50|  2.10M|            op_push_back,
   51|  2.10M|            op_update,
   52|  2.10M|            op_take,
   53|  2.10M|            op_drop,
   54|  2.10M|            op_concat,
   55|  2.10M|            op_push_back_move,
   56|  2.10M|            op_update_move,
   57|  2.10M|            op_take_move,
   58|  2.10M|            op_drop_move,
   59|  2.10M|            op_concat_move_l,
   60|  2.10M|            op_concat_move_r,
   61|  2.10M|            op_concat_move_lr,
   62|  2.10M|            op_insert,
   63|  2.10M|            op_erase,
   64|  2.10M|            op_compare,
   65|  2.10M|        };
   66|  2.10M|        auto src = read<char>(in, is_valid_var);
   67|  2.10M|        auto dst = read<char>(in, is_valid_var);
   68|  2.10M|        switch (read<char>(in)) {
   69|   432k|        case op_push_back: {
  ------------------
  |  Branch (69:9): [True: 432k, False: 1.67M]
  ------------------
   70|   432k|            vars[dst] = vars[src].push_back(42);
   71|   432k|            break;
   72|      0|        }
   73|   115k|        case op_update: {
  ------------------
  |  Branch (73:9): [True: 115k, False: 1.98M]
  ------------------
   74|   115k|            auto idx  = read<size_t>(in, is_valid_index(vars[src]));
   75|   115k|            vars[dst] = vars[src].update(idx, [](auto x) { return x + 1; });
   76|   115k|            break;
   77|      0|        }
   78|  1.75k|        case op_take: {
  ------------------
  |  Branch (78:9): [True: 1.75k, False: 2.10M]
  ------------------
   79|  1.75k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
   80|  1.75k|            vars[dst] = vars[src].take(idx);
   81|  1.75k|            break;
   82|      0|        }
   83|  3.31k|        case op_drop: {
  ------------------
  |  Branch (83:9): [True: 3.31k, False: 2.10M]
  ------------------
   84|  3.31k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
   85|  3.31k|            vars[dst] = vars[src].drop(idx);
   86|  3.31k|            break;
   87|      0|        }
   88|   999k|        case op_concat: {
  ------------------
  |  Branch (88:9): [True: 999k, False: 1.10M]
  ------------------
   89|   999k|            auto src2 = read<char>(in, is_valid_var);
   90|   999k|            if (can_concat(vars[src], vars[src2]))
  ------------------
  |  Branch (90:17): [True: 940k, False: 59.0k]
  ------------------
   91|   940k|                vars[dst] = vars[src] + vars[src2];
   92|   999k|            break;
   93|      0|        }
   94|  13.0k|        case op_push_back_move: {
  ------------------
  |  Branch (94:9): [True: 13.0k, False: 2.09M]
  ------------------
   95|  13.0k|            vars[dst] = std::move(vars[src]).push_back(21);
   96|  13.0k|            break;
   97|      0|        }
   98|  72.1k|        case op_update_move: {
  ------------------
  |  Branch (98:9): [True: 72.1k, False: 2.03M]
  ------------------
   99|  72.1k|            auto idx = read<size_t>(in, is_valid_index(vars[src]));
  100|  72.1k|            vars[dst] =
  101|  72.1k|                std::move(vars[src]).update(idx, [](auto x) { return x + 1; });
  102|  72.1k|            break;
  103|      0|        }
  104|  39.7k|        case op_take_move: {
  ------------------
  |  Branch (104:9): [True: 39.7k, False: 2.06M]
  ------------------
  105|  39.7k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
  106|  39.7k|            vars[dst] = std::move(vars[src]).take(idx);
  107|  39.7k|            break;
  108|      0|        }
  109|  40.3k|        case op_drop_move: {
  ------------------
  |  Branch (109:9): [True: 40.3k, False: 2.06M]
  ------------------
  110|  40.3k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
  111|  40.3k|            vars[dst] = std::move(vars[src]).drop(idx);
  112|  40.3k|            break;
  113|      0|        }
  114|   283k|        case op_concat_move_l: {
  ------------------
  |  Branch (114:9): [True: 283k, False: 1.82M]
  ------------------
  115|   283k|            auto src2 = read<char>(in, is_valid_var_neq(src));
  116|   283k|            if (can_concat(vars[src], vars[src2]))
  ------------------
  |  Branch (116:17): [True: 278k, False: 5.10k]
  ------------------
  117|   278k|                vars[dst] = std::move(vars[src]) + vars[src2];
  118|   283k|            break;
  119|      0|        }
  120|  3.91k|        case op_concat_move_r: {
  ------------------
  |  Branch (120:9): [True: 3.91k, False: 2.10M]
  ------------------
  121|  3.91k|            auto src2 = read<char>(in, is_valid_var_neq(src));
  122|  3.91k|            if (can_concat(vars[src], vars[src2]))
  ------------------
  |  Branch (122:17): [True: 3.36k, False: 552]
  ------------------
  123|  3.36k|                vars[dst] = vars[src] + std::move(vars[src2]);
  124|  3.91k|            break;
  125|      0|        }
  126|  2.36k|        case op_concat_move_lr: {
  ------------------
  |  Branch (126:9): [True: 2.36k, False: 2.10M]
  ------------------
  127|  2.36k|            auto src2 = read<char>(in, is_valid_var_neq(src));
  128|  2.36k|            if (can_concat(vars[src], vars[src2]))
  ------------------
  |  Branch (128:17): [True: 1.67k, False: 696]
  ------------------
  129|  1.67k|                vars[dst] = std::move(vars[src]) + std::move(vars[src2]);
  130|  2.36k|            break;
  131|      0|        }
  132|  33.7k|        case op_compare: {
  ------------------
  |  Branch (132:9): [True: 33.7k, False: 2.07M]
  ------------------
  133|  33.7k|            using std::swap;
  134|  33.7k|            if (can_compare(vars[src]) && vars[src] == vars[dst])
  ------------------
  |  Branch (134:17): [True: 30.1k, False: 3.58k]
  |  Branch (134:43): [True: 7.35k, False: 22.8k]
  ------------------
  135|  7.35k|                swap(vars[src], vars[dst]);
  136|  33.7k|            break;
  137|      0|        }
  138|  3.57k|        case op_erase: {
  ------------------
  |  Branch (138:9): [True: 3.57k, False: 2.10M]
  ------------------
  139|  3.57k|            auto idx  = read<size_t>(in, is_valid_index(vars[src]));
  140|  3.57k|            vars[dst] = vars[src].erase(idx);
  141|  3.57k|            break;
  142|      0|        }
  143|  20.0k|        case op_insert: {
  ------------------
  |  Branch (143:9): [True: 20.0k, False: 2.08M]
  ------------------
  144|  20.0k|            auto idx  = read<size_t>(in, is_valid_size(vars[src]));
  145|  20.0k|            vars[dst] = vars[src].insert(idx, immer::box<int>{42});
  146|  20.0k|            break;
  147|      0|        }
  148|  30.2k|        default:
  ------------------
  |  Branch (148:9): [True: 30.2k, False: 2.07M]
  ------------------
  149|  30.2k|            break;
  150|  2.10M|        };
  151|  2.09M|        return true;
  152|  2.10M|    });
flex-vector.cpp:_ZZ22LLVMFuzzerTestOneInputENK3$_0clIcEEDaT_:
   28|  5.58M|    auto is_valid_var = [&](auto idx) { return idx >= 0 && idx < var_count; };
  ------------------
  |  Branch (28:48): [True: 5.40M, False: 183k]
  |  Branch (28:60): [True: 5.19M, False: 211k]
  ------------------
flex-vector.cpp:_ZZZ22LLVMFuzzerTestOneInputENK3$_2clIN5immer11flex_vectorIiNS1_13memory_policyINS1_21free_list_heap_policyINS1_8cpp_heapELm1024EEENS1_15refcount_policyENS1_15spinlock_policyENS1_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaRT_ENKUlSC_E_clIhEEDaSC_:
   35|   213k|        return [&](auto idx) { return idx >= 0 && idx < v.size(); };
  ------------------
  |  Branch (35:39): [True: 213k, False: 0]
  |  Branch (35:51): [True: 190k, False: 23.0k]
  ------------------
flex-vector.cpp:_ZZ22LLVMFuzzerTestOneInputENK3$_2clIN5immer11flex_vectorIiNS1_13memory_policyINS1_21free_list_heap_policyINS1_8cpp_heapELm1024EEENS1_15refcount_policyENS1_15spinlock_policyENS1_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaRT_:
   34|   190k|    auto is_valid_index = [](auto& v) {
   35|   190k|        return [&](auto idx) { return idx >= 0 && idx < v.size(); };
   36|   190k|    };
flex-vector.cpp:_ZZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_ENKUlS2_E_clIiEEDaS2_:
   75|   115k|            vars[dst] = vars[src].update(idx, [](auto x) { return x + 1; });
flex-vector.cpp:_ZZZ22LLVMFuzzerTestOneInputENK3$_3clIN5immer11flex_vectorIiNS1_13memory_policyINS1_21free_list_heap_policyINS1_8cpp_heapELm1024EEENS1_15refcount_policyENS1_15spinlock_policyENS1_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaRT_ENKUlSC_E_clIhEEDaSC_:
   38|   115k|        return [&](auto idx) { return idx >= 0 && idx <= v.size(); };
  ------------------
  |  Branch (38:39): [True: 115k, False: 0]
  |  Branch (38:51): [True: 105k, False: 10.9k]
  ------------------
flex-vector.cpp:_ZZ22LLVMFuzzerTestOneInputENK3$_3clIN5immer11flex_vectorIiNS1_13memory_policyINS1_21free_list_heap_policyINS1_8cpp_heapELm1024EEENS1_15refcount_policyENS1_15spinlock_policyENS1_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaRT_:
   37|   105k|    auto is_valid_size = [](auto& v) {
   38|   105k|        return [&](auto idx) { return idx >= 0 && idx <= v.size(); };
   39|   105k|    };
flex-vector.cpp:_ZZ22LLVMFuzzerTestOneInputENK3$_4clIRN5immer11flex_vectorIiNS1_13memory_policyINS1_21free_list_heap_policyINS1_8cpp_heapELm1024EEENS1_15refcount_policyENS1_15spinlock_policyENS1_20no_transience_policyELb0ELb1EEELj2ELj2EEESC_EEDaOT_OT0_:
   40|  1.28M|    auto can_concat = [](auto&& v1, auto&& v2) {
   41|  1.28M|        return v1.size() + v2.size() < vector_t::max_size();
   42|  1.28M|    };
flex-vector.cpp:_ZZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_ENKUlS2_E0_clIiEEDaS2_:
  101|  72.0k|                std::move(vars[src]).update(idx, [](auto x) { return x + 1; });
flex-vector.cpp:_ZZZ22LLVMFuzzerTestOneInputENK3$_1clIcEEDaT_ENKUlS1_E_clIcEEDaS1_:
   30|   332k|        return [=](auto idx) {
   31|   332k|            return idx >= 0 && idx < var_count && idx != other;
  ------------------
  |  Branch (31:20): [True: 327k, False: 5.03k]
  |  Branch (31:32): [True: 316k, False: 11.0k]
  |  Branch (31:51): [True: 290k, False: 26.0k]
  ------------------
   32|   332k|        };
flex-vector.cpp:_ZZ22LLVMFuzzerTestOneInputENK3$_1clIcEEDaT_:
   29|   290k|    auto is_valid_var_neq = [](auto other) {
   30|   290k|        return [=](auto idx) {
   31|   290k|            return idx >= 0 && idx < var_count && idx != other;
   32|   290k|        };
   33|   290k|    };
flex-vector.cpp:_ZZ22LLVMFuzzerTestOneInputENK3$_5clIRN5immer11flex_vectorIiNS1_13memory_policyINS1_21free_list_heap_policyINS1_8cpp_heapELm1024EEENS1_15refcount_policyENS1_15spinlock_policyENS1_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaOT_:
   43|  33.7k|    auto can_compare = [](auto&& v) {
   44|       |        // avoid comparing vectors that are too big, and hence, slow to compare
   45|  33.7k|        return v.size() < (1 << 15);
   46|  33.7k|    };

flex-vector.cpp:_ZN12fuzzer_input3runIZ22LLVMFuzzerTestOneInputE3$_6EEiT_:
   50|  9.24k|    {
   51|  9.24k|        if (size_ > fuzzer_input_max_size)
  ------------------
  |  Branch (51:13): [True: 8, False: 9.24k]
  ------------------
   52|      8|            return 0;
   53|  9.24k|        try {
   54|  2.10M|            while (step(*this))
  ------------------
  |  Branch (54:20): [True: 2.09M, False: 9.24k]
  ------------------
   55|  2.09M|                continue;
   56|  9.24k|        } catch (const no_more_input&) {
   57|  9.24k|        };
   58|  9.24k|        return 0;
   59|  9.24k|    }
flex-vector.cpp:_Z4readIcZ22LLVMFuzzerTestOneInputE3$_0ET_R12fuzzer_inputT0_:
   70|  5.20M|{
   71|  5.20M|    auto x = read<T>(fz);
   72|  5.59M|    while (!cond(x))
  ------------------
  |  Branch (72:12): [True: 395k, False: 5.20M]
  ------------------
   73|   395k|        x = read<T>(fz);
   74|  5.20M|    return x;
   75|  5.20M|}
_Z4readIcERKT_R12fuzzer_input:
   64|  8.02M|{
   65|  8.02M|    return *reinterpret_cast<const T*>(fz.next(sizeof(T), alignof(T)));
   66|  8.02M|}
_ZN12fuzzer_input4nextEmm:
   40|  8.35M|    {
   41|  8.35M|        auto& p = const_cast<void*&>(reinterpret_cast<const void*&>(data_));
   42|  8.35M|        auto r  = std::align(align, size, p, size_);
   43|  8.35M|        if (r == nullptr)
  ------------------
  |  Branch (43:13): [True: 9.24k, False: 8.34M]
  ------------------
   44|  9.24k|            throw no_more_input{};
   45|  8.34M|        return next(size);
   46|  8.35M|    }
_ZN12fuzzer_input4nextEm:
   30|  8.34M|    {
   31|  8.34M|        if (size_ < size)
  ------------------
  |  Branch (31:13): [True: 0, False: 8.34M]
  ------------------
   32|      0|            throw no_more_input{};
   33|  8.34M|        auto r = data_;
   34|  8.34M|        data_ += size;
   35|  8.34M|        size_ -= size;
   36|  8.34M|        return r;
   37|  8.34M|    }
flex-vector.cpp:_Z4readIhZZ22LLVMFuzzerTestOneInputENK3$_2clIN5immer11flex_vectorIiNS2_13memory_policyINS2_21free_list_heap_policyINS2_8cpp_heapELm1024EEENS2_15refcount_policyENS2_15spinlock_policyENS2_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaRT_EUlSD_E_ESD_R12fuzzer_inputT0_:
   70|   190k|{
   71|   190k|    auto x = read<T>(fz);
   72|   213k|    while (!cond(x))
  ------------------
  |  Branch (72:12): [True: 23.0k, False: 190k]
  ------------------
   73|  23.0k|        x = read<T>(fz);
   74|   190k|    return x;
   75|   190k|}
_Z4readIhERKT_R12fuzzer_input:
   64|   329k|{
   65|   329k|    return *reinterpret_cast<const T*>(fz.next(sizeof(T), alignof(T)));
   66|   329k|}
flex-vector.cpp:_Z4readIhZZ22LLVMFuzzerTestOneInputENK3$_3clIN5immer11flex_vectorIiNS2_13memory_policyINS2_21free_list_heap_policyINS2_8cpp_heapELm1024EEENS2_15refcount_policyENS2_15spinlock_policyENS2_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaRT_EUlSD_E_ESD_R12fuzzer_inputT0_:
   70|   105k|{
   71|   105k|    auto x = read<T>(fz);
   72|   116k|    while (!cond(x))
  ------------------
  |  Branch (72:12): [True: 10.9k, False: 105k]
  ------------------
   73|  10.9k|        x = read<T>(fz);
   74|   105k|    return x;
   75|   105k|}
flex-vector.cpp:_Z4readIcZZ22LLVMFuzzerTestOneInputENK3$_1clIcEEDaT_EUlS2_E_ES2_R12fuzzer_inputT0_:
   70|   290k|{
   71|   290k|    auto x = read<T>(fz);
   72|   332k|    while (!cond(x))
  ------------------
  |  Branch (72:12): [True: 42.1k, False: 290k]
  ------------------
   73|  42.1k|        x = read<T>(fz);
   74|   290k|    return x;
   75|   290k|}

_ZN5immer3boxIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEEEC2IiviEEOT_:
   85|  19.9k|        : impl_{detail::make<heap, holder>(std::forward<Arg>(arg))}
   86|  19.9k|    {
   87|  19.9k|    }
_ZN5immer3boxIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEEE6holderC2IJiEEEDpOT_:
   47|  19.9k|            : value(std::forward<Args>(args)...)
   48|  19.9k|        {
   49|  19.9k|        }
_ZNK5immer3boxIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEEEcvRKiEv:
  142|  19.9k|    operator const T&() const { return get(); }
_ZNK5immer3boxIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEEE3getEv:
  139|  19.9k|    IMMER_NODISCARD const T& get() const { return impl_->value; }
_ZN5immer3boxIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEEED2Ev:
  131|  19.9k|    {
  132|  19.9k|        if (impl_ && impl_->dec()) {
  ------------------
  |  Branch (132:13): [True: 19.9k, False: 0]
  |  Branch (132:22): [True: 19.9k, False: 0]
  ------------------
  133|  19.9k|            impl_->~holder();
  134|  19.9k|            heap::deallocate(sizeof(holder), impl_);
  135|  19.9k|        }
  136|  19.9k|    }

_ZN5immer6detail3csl3getINS_15refcount_policyEEEDcRKNS1_10member_twoINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEES3_NS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11impl_data_tENS1_6memberIS3_NS1_7inheritINSC_5applyISA_E4type5owneeEvE4typeEE4typeEE4typeE:
  170|   108M|        {
  171|   108M|            return x.get_(type_t<U>{});
  172|   108M|        }
_ZNK5immer6detail3csl10member_twoINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11impl_data_tENS1_6memberIS9_NS1_7inheritINSB_5applyIS8_E4type5owneeEvE4typeEE4typeEE4type4get_IS9_EEDcNS1_6type_tIT_EE:
  184|   108M|        {
  185|   108M|            return n.get_(t);
  186|   108M|        }
_ZNK5immer6detail3csl6memberINS_15refcount_policyENS1_7inheritINS_20no_transience_policy5applyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEEE4type5owneeEvE4typeEE4type4get_ENS1_6type_tIS3_EE:
  128|   121M|        const T& get_(type_t<T>) const { return d; }
_ZN5immer6detail3csl3getINS_15refcount_policyEEEDcRKNS1_10member_twoINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEES3_NS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14relaxed_data_tENS1_6memberIS3_NS1_7inheritINSC_5applyISA_E4type5owneeEvE4typeEE4typeEE4typeE:
  170|  12.7M|        {
  171|  12.7M|            return x.get_(type_t<U>{});
  172|  12.7M|        }
_ZNK5immer6detail3csl10member_twoINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14relaxed_data_tENS1_6memberIS9_NS1_7inheritINSB_5applyIS8_E4type5owneeEvE4typeEE4typeEE4type4get_IS9_EEDcNS1_6type_tIT_EE:
  184|  12.7M|        {
  185|  12.7M|            return n.get_(t);
  186|  12.7M|        }
_ZN5immer6detail3csl3getINS_20no_transience_policy5applyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEEE4type5owneeEEEDcRNS1_10member_twoINS0_4rbts4nodeIiNS_13memory_policyIS7_NS_15refcount_policyENS_15spinlock_policyES3_Lb0ELb1EEELj2ELj2EE14relaxed_data_tENS1_6memberISF_NS1_7inheritISA_vE4typeEE4typeEE4typeE:
  165|  12.0M|        {
  166|  12.0M|            return x.get_(type_t<U>{});
  167|  12.0M|        }
_ZN5immer6detail3csl10member_twoINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14relaxed_data_tENS1_6memberIS9_NS1_7inheritINSB_5applyIS8_E4type5owneeEvE4typeEE4typeEE4type4get_ISK_EEDcNS1_6type_tIT_EE:
  179|  12.0M|        {
  180|  12.0M|            return n.get_(t);
  181|  12.0M|        }
_ZN5immer6detail3csl7inheritINS_20no_transience_policy5applyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEEE4type5owneeEvE4type4get_ENS1_6type_tISA_EE:
  102|  29.3M|        T& get_(type_t<T>) { return *this; }
_ZN5immer6detail3csl3getINS_20no_transience_policy5applyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEEE4type5owneeEEEDcRNS1_10member_twoINS0_4rbts4nodeIiNS_13memory_policyIS7_NS_15refcount_policyENS_15spinlock_policyES3_Lb0ELb1EEELj2ELj2EE11impl_data_tENS1_6memberISF_NS1_7inheritISA_vE4typeEE4typeEE4typeE:
  165|  17.3M|        {
  166|  17.3M|            return x.get_(type_t<U>{});
  167|  17.3M|        }
_ZN5immer6detail3csl10member_twoINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11impl_data_tENS1_6memberIS9_NS1_7inheritINSB_5applyIS8_E4type5owneeEvE4typeEE4typeEE4type4get_ISK_EEDcNS1_6type_tIT_EE:
  179|  17.3M|        {
  180|  17.3M|            return n.get_(t);
  181|  17.3M|        }
_ZN5immer6detail3csl3getINS_20no_transience_policy5applyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEEE4type5owneeEEEDcRKNS1_10member_twoINS0_4rbts4nodeIiNS_13memory_policyIS7_NS_15refcount_policyENS_15spinlock_policyES3_Lb0ELb1EEELj2ELj2EE11impl_data_tENS1_6memberISF_NS1_7inheritISA_vE4typeEE4typeEE4typeE:
  170|  95.7k|        {
  171|  95.7k|            return x.get_(type_t<U>{});
  172|  95.7k|        }
_ZNK5immer6detail3csl10member_twoINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11impl_data_tENS1_6memberIS9_NS1_7inheritINSB_5applyIS8_E4type5owneeEvE4typeEE4typeEE4type4get_ISK_EEDcNS1_6type_tIT_EE:
  184|  95.7k|        {
  185|  95.7k|            return n.get_(t);
  186|  95.7k|        }
_ZNK5immer6detail3csl7inheritINS_20no_transience_policy5applyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEEE4type5owneeEvE4type4get_ENS1_6type_tISA_EE:
  103|  95.7k|        const T& get_(type_t<T>) const { return *this; }

_ZNK5immer6detail15iterator_facadeINS0_4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENSt3__126random_access_iterator_tagEiRKilPSF_EdeEv:
   99|  5.83M|    ReferenceT operator*() const { return access_t::dereference(derived()); }
_ZN5immer6detail20iterator_core_access11dereferenceIRKNS0_4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDcOT_:
   22|  5.83M|    {
   23|  5.83M|        return x.dereference();
   24|  5.83M|    }
_ZNK5immer6detail15iterator_facadeINS0_4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENSt3__126random_access_iterator_tagEiRKilPSF_E7derivedEv:
   86|  5.88M|    {
   87|  5.88M|        static_assert(std::is_base_of<iterator_facade, DerivedT>::value,
   88|  5.88M|                      "must pass a derived thing");
   89|  5.88M|        return *static_cast<const DerivedT*>(this);
   90|  5.88M|    }
_ZN5immer6detail15iterator_facadeINS0_4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENSt3__126random_access_iterator_tagEiRKilPSF_EpLEl:
  151|   238k|    {
  152|   238k|        access_t::advance(derived(), n);
  153|   238k|        return derived();
  154|   238k|    }
_ZN5immer6detail20iterator_core_access7advanceIRNS0_4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEElEEDcOT_T0_:
   46|   238k|    {
   47|   238k|        return x.advance(d);
   48|   238k|    }
_ZN5immer6detail15iterator_facadeINS0_4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENSt3__126random_access_iterator_tagEiRKilPSF_E7derivedEv:
   92|  9.30M|    {
   93|  9.30M|        static_assert(std::is_base_of<iterator_facade, DerivedT>::value,
   94|  9.30M|                      "must pass a derived thing");
   95|  9.30M|        return *static_cast<DerivedT*>(this);
   96|  9.30M|    }
_ZN5immer6detail15iterator_facadeINS0_4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENSt3__126random_access_iterator_tagEiRKilPSF_EppEv:
  119|  4.41M|    {
  120|  4.41M|        access_t::increment(derived());
  121|  4.41M|        return derived();
  122|  4.41M|    }
_ZN5immer6detail20iterator_core_access9incrementIRNS0_4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDcOT_:
   28|  4.41M|    {
   29|  4.41M|        return x.increment();
   30|  4.41M|    }
_ZNK5immer6detail15iterator_facadeINS0_4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENSt3__126random_access_iterator_tagEiRKilPSF_EplISI_TnNSD_9enable_ifIXsrT_16is_random_accessEbE4typeELb1EEESC_l:
  164|  43.5k|    {
  165|  43.5k|        auto tmp = derived();
  166|  43.5k|        return tmp += n;
  167|  43.5k|    }

_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE17make_inner_n_intoEPvmj:
  213|  3.11M|    {
  214|  3.11M|        assert(n <= branches<B>);
  ------------------
  |  Branch (214:9): [True: 3.11M, False: 0]
  ------------------
  215|  3.11M|        assert(size >= sizeof_inner_n(n));
  ------------------
  |  Branch (215:9): [True: 3.11M, False: 0]
  ------------------
  216|  3.11M|        auto p                       = new (buffer) node_t;
  217|  3.11M|        p->impl.d.data.inner.relaxed = nullptr;
  218|  3.11M|#if IMMER_TAGGED_NODE
  219|  3.11M|        p->impl.d.kind = node_t::kind_t::inner;
  220|  3.11M|#endif
  221|  3.11M|        return p;
  222|  3.11M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14sizeof_inner_nEj:
  145|  12.5M|    {
  146|  12.5M|        return keep_headroom ? max_sizeof_inner : sizeof_packed_inner_n(n);
  ------------------
  |  Branch (146:16): [True: 12.5M, Folded]
  ------------------
  147|  12.5M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE3incEv:
  956|  29.1M|    {
  957|  29.1M|        refs(this).inc();
  958|  29.1M|        return this;
  959|  29.1M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4refsEPKSB_:
  203|   108M|    {
  204|   108M|        return auto_const_cast(get<refs_t>(x->impl));
  205|   108M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE16make_leaf_n_intoEPvmj:
  330|  1.28M|    {
  331|  1.28M|        assert(n <= branches<BL>);
  ------------------
  |  Branch (331:9): [True: 1.28M, False: 0]
  ------------------
  332|  1.28M|        assert(size >= sizeof_leaf_n(n));
  ------------------
  |  Branch (332:9): [True: 1.28M, False: 0]
  ------------------
  333|  1.28M|        auto p = new (buffer) node_t;
  334|  1.28M|#if IMMER_TAGGED_NODE
  335|  1.28M|        p->impl.d.kind = node_t::kind_t::leaf;
  336|  1.28M|#endif
  337|  1.28M|        return p;
  338|  1.28M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE13sizeof_leaf_nEj:
  160|  5.38M|    {
  161|  5.38M|        return keep_headroom ? max_sizeof_leaf : sizeof_packed_leaf_n(n);
  ------------------
  |  Branch (161:16): [True: 5.38M, Folded]
  ------------------
  162|  5.38M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE7relaxedEv:
  172|   174M|    {
  173|   174M|        IMMER_ASSERT_TAGGED(kind() == kind_t::inner);
  ------------------
  |  |   68|   174M|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (173:9): [True: 174M, False: 0]
  ------------------
  174|   174M|        return impl.d.data.inner.relaxed;
  175|   174M|    }
_ZNK5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4kindEv:
  168|   332M|    kind_t kind() const { return impl.d.kind; }
_ZNK5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE3decEv:
  967|  61.7M|    bool dec() const { return refs(this).dec(); }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE5innerEv:
  184|   114M|    {
  185|   114M|        IMMER_ASSERT_TAGGED(kind() == kind_t::inner);
  ------------------
  |  |   68|   114M|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (185:9): [True: 114M, False: 0]
  ------------------
  186|   114M|        return impl.d.data.inner.get_storage_ptr();
  187|   114M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14delete_inner_rEPSB_j:
  832|  12.1M|    {
  833|  12.1M|        IMMER_ASSERT_TAGGED(p->kind() == kind_t::inner);
  ------------------
  |  |   68|  12.1M|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (833:9): [True: 12.1M, False: 0]
  ------------------
  834|  12.1M|        auto r = p->relaxed();
  835|  12.1M|        assert(r);
  ------------------
  |  Branch (835:9): [True: 12.1M, False: 0]
  ------------------
  836|  12.1M|        static_if<!embed_relaxed>([&](auto) {
  837|  12.1M|            if (node_t::refs(r).dec())
  838|  12.1M|                heap::deallocate(node_t::ownee(r).owned()
  839|  12.1M|                                     ? node_t::max_sizeof_relaxed
  840|  12.1M|                                     : node_t::sizeof_relaxed_n(n),
  841|  12.1M|                                 r);
  842|  12.1M|        });
  843|  12.1M|        heap::deallocate(ownee(p).owned() ? node_t::max_sizeof_inner_r
  ------------------
  |  Branch (843:26): [True: 0, False: 12.1M]
  ------------------
  844|  12.1M|                                          : node_t::sizeof_inner_r_n(n),
  845|  12.1M|                         p);
  846|  12.1M|    }
_ZZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14delete_inner_rEPSB_jENKUlT_E_clINS0_7empty_tEEEDaSD_:
  836|  12.1M|        static_if<!embed_relaxed>([&](auto) {
  837|  12.1M|            if (node_t::refs(r).dec())
  ------------------
  |  Branch (837:17): [True: 11.8M, False: 302k]
  ------------------
  838|  11.8M|                heap::deallocate(node_t::ownee(r).owned()
  ------------------
  |  Branch (838:34): [True: 0, False: 11.8M]
  ------------------
  839|  11.8M|                                     ? node_t::max_sizeof_relaxed
  840|  11.8M|                                     : node_t::sizeof_relaxed_n(n),
  841|  11.8M|                                 r);
  842|  12.1M|        });
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4refsEPKNS0_3csl10member_twoINSB_14relaxed_data_tENSC_6memberIS7_NSC_7inheritINS9_5applyIS6_E4type5owneeEvE4typeEE4typeEE4typeE:
  196|  12.7M|    {
  197|  12.7M|        return auto_const_cast(get<refs_t>(*x));
  198|  12.7M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE5owneeEPNS0_3csl10member_twoINSB_14relaxed_data_tENSC_6memberIS7_NSC_7inheritINS9_5applyIS6_E4type5owneeEvE4typeEE4typeEE4typeE:
  200|  12.0M|    static ownee_t& ownee(relaxed_t* x) { return get<ownee_t>(*x); }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE16sizeof_relaxed_nEj:
  155|  23.6M|    {
  156|  23.6M|        return keep_headroom ? max_sizeof_relaxed : sizeof_packed_relaxed_n(n);
  ------------------
  |  Branch (156:16): [True: 23.6M, Folded]
  ------------------
  157|  23.6M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE5owneeEPSB_:
  210|  17.3M|    static ownee_t& ownee(node_t* x) { return get<ownee_t>(x->impl); }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE16sizeof_inner_r_nEj:
  150|  24.2M|    {
  151|  24.2M|        return keep_headroom ? max_sizeof_inner_r : sizeof_packed_inner_r_n(n);
  ------------------
  |  Branch (151:16): [True: 24.2M, Folded]
  ------------------
  152|  24.2M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11delete_leafEPSB_j:
  861|  1.51M|    {
  862|  1.51M|        IMMER_ASSERT_TAGGED(p->kind() == kind_t::leaf);
  ------------------
  |  |   68|  1.51M|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (862:9): [True: 1.51M, False: 0]
  ------------------
  863|  1.51M|        detail::destroy_n(p->leaf(), n);
  864|  1.51M|        heap::deallocate(ownee(p).owned() ? node_t::max_sizeof_leaf
  ------------------
  |  Branch (864:26): [True: 0, False: 1.51M]
  ------------------
  865|  1.51M|                                          : node_t::sizeof_leaf_n(n),
  866|  1.51M|                         p);
  867|  1.51M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4leafEv:
  190|  10.9M|    {
  191|  10.9M|        IMMER_ASSERT_TAGGED(kind() == kind_t::leaf);
  ------------------
  |  |   68|  10.9M|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (191:9): [True: 10.9M, False: 0]
  ------------------
  192|  10.9M|        return impl.d.data.leaf.get_storage_ptr();
  193|  10.9M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE12delete_innerEPSB_j:
  808|  3.21M|    {
  809|  3.21M|        IMMER_ASSERT_TAGGED(p->kind() == kind_t::inner);
  ------------------
  |  |   68|  3.21M|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (809:9): [True: 3.21M, False: 0]
  ------------------
  810|  3.21M|        assert(!p->relaxed());
  ------------------
  |  Branch (810:9): [True: 3.21M, False: 0]
  ------------------
  811|  3.21M|        heap::deallocate(ownee(p).owned() ? node_t::max_sizeof_inner
  ------------------
  |  Branch (811:26): [True: 0, False: 3.21M]
  ------------------
  812|  3.21M|                                          : node_t::sizeof_inner_n(n),
  813|  3.21M|                         p);
  814|  3.21M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE17copy_leaf_emplaceIiEEPSB_SD_jOT_:
  794|   316k|    {
  795|   316k|        auto dst = copy_leaf_n(n + 1, src, n);
  796|   316k|        IMMER_TRY {
  ------------------
  |  |   49|   316k|#define IMMER_TRY try
  ------------------
  797|   316k|            new (dst->leaf() + n) T(std::forward<U>(x));
  798|   316k|        }
  799|   316k|        IMMER_CATCH (...) {
  800|      0|            detail::destroy_n(dst->leaf(), n);
  801|      0|            heap::deallocate(node_t::sizeof_leaf_n(n + 1), dst);
  802|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  803|      0|        }
  804|   316k|        return dst;
  805|   316k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11copy_leaf_nEjPSB_j:
  696|   316k|    {
  697|   316k|        assert(allocn >= n);
  ------------------
  |  Branch (697:9): [True: 316k, False: 0]
  ------------------
  698|   316k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::leaf);
  ------------------
  |  |   68|   316k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (698:9): [True: 316k, False: 0]
  ------------------
  699|   316k|        auto dst = make_leaf_n(allocn);
  700|   316k|        IMMER_TRY {
  ------------------
  |  |   49|   316k|#define IMMER_TRY try
  ------------------
  701|   316k|            detail::uninitialized_copy(
  702|   316k|                src->leaf(), src->leaf() + n, dst->leaf());
  703|   316k|        }
  704|   316k|        IMMER_CATCH (...) {
  705|      0|            heap::deallocate(node_t::sizeof_leaf_n(allocn), dst);
  706|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  707|      0|        }
  708|   316k|        return dst;
  709|   316k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11make_leaf_nEj:
  341|  1.28M|    {
  342|  1.28M|        assert(n <= branches<BL>);
  ------------------
  |  Branch (342:9): [True: 1.28M, False: 0]
  ------------------
  343|  1.28M|        auto m = heap::allocate(sizeof_leaf_n(n));
  344|  1.28M|        return make_leaf_n_into(m, sizeof_leaf_n(n), n);
  345|  1.28M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11make_leaf_nIiEEPSB_jOT_:
  470|   116k|    {
  471|   116k|        assert(n >= 1);
  ------------------
  |  Branch (471:9): [True: 116k, False: 0]
  ------------------
  472|   116k|        auto p = make_leaf_n(n);
  473|   116k|        IMMER_TRY {
  ------------------
  |  |   49|   116k|#define IMMER_TRY try
  ------------------
  474|   116k|            new (p->leaf()) T(std::forward<U>(x));
  475|   116k|        }
  476|   116k|        IMMER_CATCH (...) {
  477|      0|            heap::deallocate(node_t::sizeof_leaf_n(n), p);
  478|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  479|      0|        }
  480|   116k|        return p;
  481|   116k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE13do_copy_innerEPSB_SC_j:
  558|  2.88M|    {
  559|  2.88M|        IMMER_ASSERT_TAGGED(dst->kind() == kind_t::inner);
  ------------------
  |  |   68|  2.88M|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (559:9): [True: 2.88M, False: 0]
  ------------------
  560|  2.88M|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::inner);
  ------------------
  |  |   68|  2.88M|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (560:9): [True: 2.88M, False: 0]
  ------------------
  561|  2.88M|        auto p = src->inner();
  562|  2.88M|        inc_nodes(p, n);
  563|  2.88M|        std::copy(p, p + n, dst->inner());
  564|  2.88M|        return dst;
  565|  2.88M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9inc_nodesEPPSB_j:
  970|  9.31M|    {
  971|  25.0M|        for (auto i = p, e = i + n; i != e; ++i)
  ------------------
  |  Branch (971:37): [True: 15.7M, False: 9.31M]
  ------------------
  972|  15.7M|            refs(*i).inc();
  973|  9.31M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14copy_inner_r_nEjPSB_j:
  588|   539k|    {
  589|   539k|        assert(allocn >= n);
  ------------------
  |  Branch (589:9): [True: 539k, False: 0]
  ------------------
  590|   539k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::inner);
  ------------------
  |  |   68|   539k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (590:9): [True: 539k, False: 0]
  ------------------
  591|   539k|        auto dst = make_inner_r_n(allocn);
  592|   539k|        return do_copy_inner_r(dst, src, n);
  593|   539k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE15do_copy_inner_rEPSB_SC_j:
  610|   562k|    {
  611|   562k|        IMMER_ASSERT_TAGGED(dst->kind() == kind_t::inner);
  ------------------
  |  |   68|   562k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (611:9): [True: 562k, False: 0]
  ------------------
  612|   562k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::inner);
  ------------------
  |  |   68|   562k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (612:9): [True: 562k, False: 0]
  ------------------
  613|   562k|        auto src_r = src->relaxed();
  614|   562k|        auto dst_r = dst->relaxed();
  615|   562k|        inc_nodes(src->inner(), n);
  616|   562k|        std::copy(src->inner(), src->inner() + n, dst->inner());
  617|   562k|        std::copy(src_r->d.sizes, src_r->d.sizes + n, dst_r->d.sizes);
  618|   562k|        dst_r->d.count = n;
  619|   562k|        return dst;
  620|   562k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14make_inner_r_nEj:
  243|  11.7M|    {
  244|  11.7M|        assert(n <= branches<B>);
  ------------------
  |  Branch (244:9): [True: 11.7M, False: 0]
  ------------------
  245|  11.7M|        auto mp = heap::allocate(sizeof_inner_r_n(n));
  246|  11.7M|        auto mr = static_cast<void*>(nullptr);
  247|  11.7M|        if (embed_relaxed) {
  ------------------
  |  Branch (247:13): [Folded, False: 11.7M]
  ------------------
  248|      0|            mr = reinterpret_cast<unsigned char*>(mp) + sizeof_inner_n(n);
  249|  11.7M|        } else {
  250|  11.7M|            IMMER_TRY {
  ------------------
  |  |   49|  11.7M|#define IMMER_TRY try
  ------------------
  251|  11.7M|                mr = heap::allocate(sizeof_relaxed_n(n), norefs_tag{});
  252|  11.7M|            }
  253|  11.7M|            IMMER_CATCH (...) {
  254|      0|                heap::deallocate(sizeof_inner_r_n(n), mp);
  255|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  256|      0|            }
  257|  11.7M|        }
  258|  11.7M|        auto p                       = new (mp) node_t;
  259|  11.7M|        auto r                       = new (mr) relaxed_t;
  260|  11.7M|        r->d.count                   = 0;
  261|  11.7M|        p->impl.d.data.inner.relaxed = r;
  262|  11.7M|#if IMMER_TAGGED_NODE
  263|  11.7M|        p->impl.d.kind = node_t::kind_t::inner;
  264|  11.7M|#endif
  265|  11.7M|        return p;
  266|  11.7M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9make_pathEjPSB_:
  498|   797k|    {
  499|   797k|        IMMER_ASSERT_TAGGED(node->kind() == kind_t::leaf);
  ------------------
  |  |   68|   797k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (499:9): [True: 797k, False: 0]
  ------------------
  500|   797k|        if (shift == endshift<B, BL>)
  ------------------
  |  Branch (500:13): [True: 589k, False: 208k]
  ------------------
  501|   589k|            return node;
  502|   208k|        else {
  503|   208k|            auto n = node_t::make_inner_n(1);
  504|   208k|            IMMER_TRY {
  ------------------
  |  |   49|   208k|#define IMMER_TRY try
  ------------------
  505|   208k|                n->inner()[0] = make_path(shift - B, node);
  506|   208k|            }
  507|   208k|            IMMER_CATCH (...) {
  508|      0|                heap::deallocate(node_t::sizeof_inner_n(1), n);
  509|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  510|      0|            }
  511|   208k|            return n;
  512|   208k|        }
  513|   797k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE12make_inner_nEj:
  224|  3.11M|    {
  225|  3.11M|        assert(n <= branches<B>);
  ------------------
  |  Branch (225:9): [True: 3.11M, False: 0]
  ------------------
  226|  3.11M|        auto m = heap::allocate(sizeof_inner_n(n));
  227|  3.11M|        return make_inner_n_into(m, sizeof_inner_n(n), n);
  228|  3.11M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9copy_leafEPSB_j:
  666|   125k|    {
  667|   125k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::leaf);
  ------------------
  |  |   68|   125k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (667:9): [True: 125k, False: 0]
  ------------------
  668|   125k|        auto dst = make_leaf_n(n);
  669|   125k|        IMMER_TRY {
  ------------------
  |  |   49|   125k|#define IMMER_TRY try
  ------------------
  670|   125k|            detail::uninitialized_copy(
  671|   125k|                src->leaf(), src->leaf() + n, dst->leaf());
  672|   125k|        }
  673|   125k|        IMMER_CATCH (...) {
  674|      0|            heap::deallocate(node_t::sizeof_leaf_n(n), dst);
  675|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  676|      0|        }
  677|   125k|        return dst;
  678|   125k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE15make_inner_sr_nEjPNS0_3csl10member_twoINSB_14relaxed_data_tENSC_6memberIS7_NSC_7inheritINS9_5applyIS6_E4type5owneeEvE4typeEE4typeEE4typeE:
  269|   313k|    {
  270|   313k|        return static_if<embed_relaxed, node_t*>(
  271|   313k|            [&](auto) { return node_t::make_inner_r_n(n); },
  272|   313k|            [&](auto) {
  273|   313k|                auto p =
  274|   313k|                    new (heap::allocate(node_t::sizeof_inner_r_n(n))) node_t;
  275|   313k|                assert(r->d.count >= n);
  276|   313k|                node_t::refs(r).inc();
  277|   313k|                p->impl.d.data.inner.relaxed = r;
  278|   313k|#if IMMER_TAGGED_NODE
  279|   313k|                p->impl.d.kind = node_t::kind_t::inner;
  280|   313k|#endif
  281|   313k|                return p;
  282|   313k|            });
  283|   313k|    }
_ZZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE15make_inner_sr_nEjPNS0_3csl10member_twoINSB_14relaxed_data_tENSC_6memberIS7_NSC_7inheritINS9_5applyIS6_E4type5owneeEvE4typeEE4typeEE4typeEENKUlT_E0_clINS0_7empty_tEEEDaSS_:
  272|   313k|            [&](auto) {
  273|   313k|                auto p =
  274|   313k|                    new (heap::allocate(node_t::sizeof_inner_r_n(n))) node_t;
  275|   313k|                assert(r->d.count >= n);
  ------------------
  |  Branch (275:17): [True: 313k, False: 0]
  ------------------
  276|   313k|                node_t::refs(r).inc();
  277|   313k|                p->impl.d.data.inner.relaxed = r;
  278|   313k|#if IMMER_TAGGED_NODE
  279|   313k|                p->impl.d.kind = node_t::kind_t::inner;
  280|   313k|#endif
  281|   313k|                return p;
  282|   313k|            });
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE24do_copy_inner_replace_srEPSB_SC_jjSC_:
  652|   313k|    {
  653|   313k|        if (embed_relaxed)
  ------------------
  |  Branch (653:13): [Folded, False: 313k]
  ------------------
  654|      0|            return do_copy_inner_replace_r(dst, src, n, offset, child);
  655|   313k|        else {
  656|   313k|            auto p = src->inner();
  657|   313k|            inc_nodes(p, offset);
  658|   313k|            inc_nodes(p + offset + 1, n - offset - 1);
  659|   313k|            std::copy(p, p + n, dst->inner());
  660|   313k|            dst->inner()[offset] = child;
  661|   313k|            return dst;
  662|   313k|        }
  663|   313k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE21do_copy_inner_replaceEPSB_SC_jjSC_:
  569|  47.7k|    {
  570|  47.7k|        IMMER_ASSERT_TAGGED(dst->kind() == kind_t::inner);
  ------------------
  |  |   68|  47.7k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (570:9): [True: 47.7k, False: 0]
  ------------------
  571|  47.7k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::inner);
  ------------------
  |  |   68|  47.7k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (571:9): [True: 47.7k, False: 0]
  ------------------
  572|  47.7k|        auto p = src->inner();
  573|  47.7k|        inc_nodes(p, offset);
  574|  47.7k|        inc_nodes(p + offset + 1, n - offset - 1);
  575|  47.7k|        std::copy(p, p + n, dst->inner());
  576|  47.7k|        dst->inner()[offset] = child;
  577|  47.7k|        return dst;
  578|  47.7k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE12copy_inner_nEjPSB_j:
  543|  9.61k|    {
  544|  9.61k|        assert(allocn >= n);
  ------------------
  |  Branch (544:9): [True: 9.61k, False: 0]
  ------------------
  545|  9.61k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::inner);
  ------------------
  |  |   68|  9.61k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (545:9): [True: 9.61k, False: 0]
  ------------------
  546|  9.61k|        auto dst = make_inner_n(allocn);
  547|  9.61k|        return do_copy_inner(dst, src, n);
  548|  9.61k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE12copy_inner_rEPSB_j:
  581|  4.76k|    {
  582|  4.76k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::inner);
  ------------------
  |  |   68|  4.76k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (582:9): [True: 4.76k, False: 0]
  ------------------
  583|  4.76k|        auto dst = make_inner_r_n(n);
  584|  4.76k|        return do_copy_inner_r(dst, src, n);
  585|  4.76k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE13compute_shiftEv:
  977|  5.40M|    {
  978|  5.40M|        if (kind() == kind_t::leaf)
  ------------------
  |  Branch (978:13): [True: 467k, False: 4.93M]
  ------------------
  979|   467k|            return endshift<B, BL>;
  980|  4.93M|        else
  981|  4.93M|            return B + inner()[0]->compute_shift();
  982|  5.40M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE5checkEjm:
  986|   467k|    {
  987|       |#if IMMER_DEBUG_DEEP_CHECK
  988|       |        assert(size > 0);
  989|       |        if (shift == endshift<B, BL>) {
  990|       |            IMMER_ASSERT_TAGGED(kind() == kind_t::leaf);
  991|       |            assert(size <= branches<BL>);
  992|       |        } else if (auto r = relaxed()) {
  993|       |            auto count = r->d.count;
  994|       |            assert(count > 0);
  995|       |            assert(count <= branches<B>);
  996|       |            if (r->d.sizes[count - 1] != size) {
  997|       |                IMMER_TRACE_F("check");
  998|       |                IMMER_TRACE_E(r->d.sizes[count - 1]);
  999|       |                IMMER_TRACE_E(size);
 1000|       |            }
 1001|       |            assert(r->d.sizes[count - 1] == size);
 1002|       |            for (auto i = 1u; i < count; ++i)
 1003|       |                assert(r->d.sizes[i - 1] < r->d.sizes[i]);
 1004|       |            auto last_size = size_t{};
 1005|       |            for (auto i = 0u; i < count; ++i) {
 1006|       |                assert(inner()[i]->check(shift - B, r->d.sizes[i] - last_size));
 1007|       |                last_size = r->d.sizes[i];
 1008|       |            }
 1009|       |        } else {
 1010|       |            assert(size <= branches<B> << shift);
 1011|       |            auto count =
 1012|       |                (size >> shift) + (size - ((size >> shift) << shift) > 0);
 1013|       |            assert(count <= branches<B>);
 1014|       |            if (count) {
 1015|       |                for (auto i = 1u; i < count - 1; ++i)
 1016|       |                    assert(inner()[i]->check(shift - B, 1 << shift));
 1017|       |                assert(inner()[count - 1]->check(
 1018|       |                    shift - B, size - ((count - 1) << shift)));
 1019|       |            }
 1020|       |        }
 1021|       |#endif // IMMER_DEBUG_DEEP_CHECK
 1022|   467k|        return true;
 1023|   467k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9copy_leafEPSB_jj:
  778|   357k|    {
  779|   357k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::leaf);
  ------------------
  |  |   68|   357k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (779:9): [True: 357k, False: 0]
  ------------------
  780|   357k|        auto dst = make_leaf_n(last - idx);
  781|   357k|        IMMER_TRY {
  ------------------
  |  |   49|   357k|#define IMMER_TRY try
  ------------------
  782|   357k|            detail::uninitialized_copy(
  783|   357k|                src->leaf() + idx, src->leaf() + last, dst->leaf());
  784|   357k|        }
  785|   357k|        IMMER_CATCH (...) {
  786|      0|            heap::deallocate(node_t::sizeof_leaf_n(last - idx), dst);
  787|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  788|      0|        }
  789|   357k|        return dst;
  790|   357k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9copy_leafEPSB_jSC_j:
  712|   348k|    {
  713|   348k|        IMMER_ASSERT_TAGGED(src1->kind() == kind_t::leaf);
  ------------------
  |  |   68|   348k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (713:9): [True: 348k, False: 0]
  ------------------
  714|   348k|        IMMER_ASSERT_TAGGED(src2->kind() == kind_t::leaf);
  ------------------
  |  |   68|   348k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (714:9): [True: 348k, False: 0]
  ------------------
  715|   348k|        auto dst = make_leaf_n(n1 + n2);
  716|   348k|        IMMER_TRY {
  ------------------
  |  |   49|   348k|#define IMMER_TRY try
  ------------------
  717|   348k|            detail::uninitialized_copy(
  718|   348k|                src1->leaf(), src1->leaf() + n1, dst->leaf());
  719|   348k|        }
  720|   348k|        IMMER_CATCH (...) {
  721|      0|            heap::deallocate(node_t::sizeof_leaf_n(n1 + n2), dst);
  722|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  723|      0|        }
  724|   348k|        IMMER_TRY {
  ------------------
  |  |   49|   348k|#define IMMER_TRY try
  ------------------
  725|   348k|            detail::uninitialized_copy(
  726|   348k|                src2->leaf(), src2->leaf() + n2, dst->leaf() + n1);
  727|   348k|        }
  728|   348k|        IMMER_CATCH (...) {
  729|      0|            detail::destroy_n(dst->leaf(), n1);
  730|      0|            heap::deallocate(node_t::sizeof_leaf_n(n1 + n2), dst);
  731|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  732|      0|        }
  733|   348k|        return dst;
  734|   348k|    }
_ZNK5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE10can_mutateENS9_5applyIS6_E4type4editE:
  870|  1.94M|    {
  871|  1.94M|        return refs(this).unique() || ownee(this).can_mutate(e);
  ------------------
  |  Branch (871:16): [True: 1.85M, False: 95.7k]
  |  Branch (871:39): [True: 0, False: 95.7k]
  ------------------
  872|  1.94M|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE5owneeEPKSB_:
  207|  95.7k|    {
  208|  95.7k|        return get<ownee_t>(x->impl);
  209|  95.7k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11copy_leaf_eENS9_5applyIS6_E4type4editEPSB_j:
  681|  32.9k|    {
  682|  32.9k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::leaf);
  ------------------
  |  |   68|  32.9k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (682:9): [True: 32.9k, False: 0]
  ------------------
  683|  32.9k|        auto dst = make_leaf_e(e);
  684|  32.9k|        IMMER_TRY {
  ------------------
  |  |   49|  32.9k|#define IMMER_TRY try
  ------------------
  685|  32.9k|            detail::uninitialized_copy(
  686|  32.9k|                src->leaf(), src->leaf() + n, dst->leaf());
  687|  32.9k|        }
  688|  32.9k|        IMMER_CATCH (...) {
  689|      0|            heap::deallocate(node_t::max_sizeof_leaf, dst);
  690|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  691|      0|        }
  692|  32.9k|        return dst;
  693|  32.9k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11make_leaf_eENS9_5applyIS6_E4type4editE:
  348|   225k|    {
  349|   225k|        auto p   = new (heap::allocate(max_sizeof_leaf)) node_t;
  350|   225k|        ownee(p) = e;
  351|   225k|#if IMMER_TAGGED_NODE
  352|   225k|        p->impl.d.kind = node_t::kind_t::leaf;
  353|   225k|#endif
  354|   225k|        return p;
  355|   225k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11make_leaf_eIiEEPSB_NS9_5applyIS6_E4type4editEOT_:
  485|  13.5k|    {
  486|  13.5k|        auto p = make_leaf_e(e);
  487|  13.5k|        IMMER_TRY {
  ------------------
  |  |   49|  13.5k|#define IMMER_TRY try
  ------------------
  488|  13.5k|            new (p->leaf()) T(std::forward<U>(x));
  489|  13.5k|        }
  490|  13.5k|        IMMER_CATCH (...) {
  491|      0|            heap::deallocate(node_t::max_sizeof_leaf, p);
  492|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  493|      0|        }
  494|  13.5k|        return p;
  495|  13.5k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE24ensure_mutable_relaxed_nENS9_5applyIS6_E4type4editEj:
  930|  78.8k|    {
  931|  78.8k|        auto src_r = relaxed();
  932|  78.8k|        return static_if<embed_relaxed, relaxed_t*>(
  933|  78.8k|            [&](auto) { return src_r; },
  934|  78.8k|            [&](auto) {
  935|  78.8k|                if (node_t::refs(src_r).unique() ||
  936|  78.8k|                    node_t::ownee(src_r).can_mutate(e))
  937|  78.8k|                    return src_r;
  938|  78.8k|                else {
  939|  78.8k|                    auto dst_r =
  940|  78.8k|                        new (heap::allocate(max_sizeof_relaxed)) relaxed_t;
  941|  78.8k|                    if (src_r) {
  942|  78.8k|                        std::copy(
  943|  78.8k|                            src_r->d.sizes, src_r->d.sizes + n, dst_r->d.sizes);
  944|  78.8k|                        if (node_t::refs(src_r).dec())
  945|  78.8k|                            heap::deallocate(node_t::sizeof_inner_r_n(n),
  946|  78.8k|                                             src_r);
  947|  78.8k|                    }
  948|  78.8k|                    dst_r->d.count                   = n;
  949|  78.8k|                    node_t::ownee(dst_r)             = e;
  950|  78.8k|                    return impl.d.data.inner.relaxed = dst_r;
  951|  78.8k|                }
  952|  78.8k|            });
  953|  78.8k|    }
_ZZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE24ensure_mutable_relaxed_nENS9_5applyIS6_E4type4editEjENKUlT_E0_clINS0_7empty_tEEEDaSG_:
  934|  78.8k|            [&](auto) {
  935|  78.8k|                if (node_t::refs(src_r).unique() ||
  ------------------
  |  Branch (935:21): [True: 64.4k, False: 14.4k]
  ------------------
  936|  14.4k|                    node_t::ownee(src_r).can_mutate(e))
  ------------------
  |  Branch (936:21): [True: 0, False: 14.4k]
  ------------------
  937|  64.4k|                    return src_r;
  938|  14.4k|                else {
  939|  14.4k|                    auto dst_r =
  940|  14.4k|                        new (heap::allocate(max_sizeof_relaxed)) relaxed_t;
  941|  14.4k|                    if (src_r) {
  ------------------
  |  Branch (941:25): [True: 14.4k, False: 0]
  ------------------
  942|  14.4k|                        std::copy(
  943|  14.4k|                            src_r->d.sizes, src_r->d.sizes + n, dst_r->d.sizes);
  944|  14.4k|                        if (node_t::refs(src_r).dec())
  ------------------
  |  Branch (944:29): [True: 0, False: 14.4k]
  ------------------
  945|      0|                            heap::deallocate(node_t::sizeof_inner_r_n(n),
  946|      0|                                             src_r);
  947|  14.4k|                    }
  948|  14.4k|                    dst_r->d.count                   = n;
  949|  14.4k|                    node_t::ownee(dst_r)             = e;
  950|  14.4k|                    return impl.d.data.inner.relaxed = dst_r;
  951|  14.4k|                }
  952|  78.8k|            });
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14copy_inner_r_eENS9_5applyIS6_E4type4editEPSB_j:
  596|  18.4k|    {
  597|  18.4k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::inner);
  ------------------
  |  |   68|  18.4k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (597:9): [True: 18.4k, False: 0]
  ------------------
  598|  18.4k|        auto dst = make_inner_r_e(e);
  599|  18.4k|        return do_copy_inner_r(dst, src, n);
  600|  18.4k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14make_inner_r_eENS9_5applyIS6_E4type4editE:
  286|  96.4k|    {
  287|  96.4k|        auto mp = heap::allocate(max_sizeof_inner_r);
  288|  96.4k|        auto mr = static_cast<void*>(nullptr);
  289|  96.4k|        if (embed_relaxed) {
  ------------------
  |  Branch (289:13): [Folded, False: 96.4k]
  ------------------
  290|      0|            mr = reinterpret_cast<unsigned char*>(mp) + max_sizeof_inner;
  291|  96.4k|        } else {
  292|  96.4k|            IMMER_TRY {
  ------------------
  |  |   49|  96.4k|#define IMMER_TRY try
  ------------------
  293|  96.4k|                mr = heap::allocate(max_sizeof_relaxed, norefs_tag{});
  294|  96.4k|            }
  295|  96.4k|            IMMER_CATCH (...) {
  296|      0|                heap::deallocate(max_sizeof_inner_r, mp);
  297|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  298|      0|            }
  299|  96.4k|        }
  300|  96.4k|        auto p   = new (mp) node_t;
  301|  96.4k|        auto r   = new (mr) relaxed_t;
  302|  96.4k|        ownee(p) = e;
  303|  96.4k|        static_if<!embed_relaxed>([&](auto) { node_t::ownee(r) = e; });
  304|  96.4k|        r->d.count                   = 0;
  305|  96.4k|        p->impl.d.data.inner.relaxed = r;
  306|  96.4k|#if IMMER_TAGGED_NODE
  307|  96.4k|        p->impl.d.kind = node_t::kind_t::inner;
  308|  96.4k|#endif
  309|  96.4k|        return p;
  310|  96.4k|    }
_ZZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14make_inner_r_eENS9_5applyIS6_E4type4editEENKUlT_E_clINS0_7empty_tEEEDaSG_:
  303|  96.4k|        static_if<!embed_relaxed>([&](auto) { node_t::ownee(r) = e; });
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11make_path_eENS9_5applyIS6_E4type4editEjPSB_:
  516|   306k|    {
  517|   306k|        IMMER_ASSERT_TAGGED(node->kind() == kind_t::leaf);
  ------------------
  |  |   68|   306k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (517:9): [True: 306k, False: 0]
  ------------------
  518|   306k|        if (shift == endshift<B, BL>)
  ------------------
  |  Branch (518:13): [True: 228k, False: 77.8k]
  ------------------
  519|   228k|            return node;
  520|  77.8k|        else {
  521|  77.8k|            auto n = node_t::make_inner_e(e);
  522|  77.8k|            IMMER_TRY {
  ------------------
  |  |   49|  77.8k|#define IMMER_TRY try
  ------------------
  523|  77.8k|                n->inner()[0] = make_path_e(e, shift - B, node);
  524|  77.8k|            }
  525|  77.8k|            IMMER_CATCH (...) {
  526|      0|                heap::deallocate(node_t::max_sizeof_inner, n);
  527|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  528|      0|            }
  529|  77.8k|            return n;
  530|  77.8k|        }
  531|   306k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE12make_inner_eENS9_5applyIS6_E4type4editE:
  231|   103k|    {
  232|   103k|        auto m                       = heap::allocate(max_sizeof_inner);
  233|   103k|        auto p                       = new (m) node_t;
  234|   103k|        ownee(p)                     = e;
  235|   103k|        p->impl.d.data.inner.relaxed = nullptr;
  236|   103k|#if IMMER_TAGGED_NODE
  237|   103k|        p->impl.d.kind = node_t::kind_t::inner;
  238|   103k|#endif
  239|   103k|        return p;
  240|   103k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE12copy_inner_eENS9_5applyIS6_E4type4editEPSB_j:
  551|  16.8k|    {
  552|  16.8k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::inner);
  ------------------
  |  |   68|  16.8k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (552:9): [True: 16.8k, False: 0]
  ------------------
  553|  16.8k|        auto dst = make_inner_e(e);
  554|  16.8k|        return do_copy_inner(dst, src, n);
  555|  16.8k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE15copy_inner_sr_eENS9_5applyIS6_E4type4editEPSB_j:
  603|  11.1k|    {
  604|  11.1k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::inner);
  ------------------
  |  |   68|  11.1k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (604:9): [True: 11.1k, False: 0]
  ------------------
  605|  11.1k|        auto dst = make_inner_sr_e(e, src->relaxed());
  606|  11.1k|        return do_copy_inner_sr(dst, src, n);
  607|  11.1k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE15make_inner_sr_eENS9_5applyIS6_E4type4editEPNS0_3csl10member_twoINSB_14relaxed_data_tENSG_6memberIS7_NSG_7inheritINSE_5owneeEvE4typeEE4typeEE4typeE:
  313|  11.1k|    {
  314|  11.1k|        return static_if<embed_relaxed, node_t*>(
  315|  11.1k|            [&](auto) { return node_t::make_inner_r_e(e); },
  316|  11.1k|            [&](auto) {
  317|  11.1k|                auto p =
  318|  11.1k|                    new (heap::allocate(node_t::max_sizeof_inner_r)) node_t;
  319|  11.1k|                node_t::refs(r).inc();
  320|  11.1k|                p->impl.d.data.inner.relaxed = r;
  321|  11.1k|                node_t::ownee(p)             = e;
  322|  11.1k|#if IMMER_TAGGED_NODE
  323|  11.1k|                p->impl.d.kind = node_t::kind_t::inner;
  324|  11.1k|#endif
  325|  11.1k|                return p;
  326|  11.1k|            });
  327|  11.1k|    }
_ZZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE15make_inner_sr_eENS9_5applyIS6_E4type4editEPNS0_3csl10member_twoINSB_14relaxed_data_tENSG_6memberIS7_NSG_7inheritINSE_5owneeEvE4typeEE4typeEE4typeEENKUlT_E0_clINS0_7empty_tEEEDaST_:
  316|  11.1k|            [&](auto) {
  317|  11.1k|                auto p =
  318|  11.1k|                    new (heap::allocate(node_t::max_sizeof_inner_r)) node_t;
  319|  11.1k|                node_t::refs(r).inc();
  320|  11.1k|                p->impl.d.data.inner.relaxed = r;
  321|  11.1k|                node_t::ownee(p)             = e;
  322|  11.1k|#if IMMER_TAGGED_NODE
  323|  11.1k|                p->impl.d.kind = node_t::kind_t::inner;
  324|  11.1k|#endif
  325|  11.1k|                return p;
  326|  11.1k|            });
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE16do_copy_inner_srEPSB_SC_j:
  640|  11.1k|    {
  641|  11.1k|        if (embed_relaxed)
  ------------------
  |  Branch (641:13): [Folded, False: 11.1k]
  ------------------
  642|      0|            return do_copy_inner_r(dst, src, n);
  643|  11.1k|        else {
  644|  11.1k|            inc_nodes(src->inner(), n);
  645|  11.1k|            std::copy(src->inner(), src->inner() + n, dst->inner());
  646|  11.1k|            return dst;
  647|  11.1k|        }
  648|  11.1k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11copy_leaf_eENS9_5applyIS6_E4type4editEPSB_jj:
  763|   178k|    {
  764|   178k|        IMMER_ASSERT_TAGGED(src->kind() == kind_t::leaf);
  ------------------
  |  |   68|   178k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (764:9): [True: 178k, False: 0]
  ------------------
  765|   178k|        auto dst = make_leaf_e(e);
  766|   178k|        IMMER_TRY {
  ------------------
  |  |   49|   178k|#define IMMER_TRY try
  ------------------
  767|   178k|            detail::uninitialized_copy(
  768|   178k|                src->leaf() + idx, src->leaf() + last, dst->leaf());
  769|   178k|        }
  770|   178k|        IMMER_CATCH (...) {
  771|      0|            heap::deallocate(max_sizeof_leaf, dst);
  772|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  773|      0|        }
  774|   178k|        return dst;
  775|   178k|    }
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE22ensure_mutable_relaxedENS9_5applyIS6_E4type4editE:
  877|   167k|    {
  878|   167k|        auto src_r = relaxed();
  879|   167k|        return static_if<embed_relaxed, relaxed_t*>(
  880|   167k|            [&](auto) { return src_r; },
  881|   167k|            [&](auto) {
  882|   167k|                if (node_t::refs(src_r).unique() ||
  883|   167k|                    node_t::ownee(src_r).can_mutate(e))
  884|   167k|                    return src_r;
  885|   167k|                else {
  886|   167k|                    auto dst_r = impl.d.data.inner.relaxed =
  887|   167k|                        new (heap::allocate(max_sizeof_relaxed)) relaxed_t;
  888|   167k|                    if (src_r) {
  889|   167k|                        auto n = dst_r->d.count = src_r->d.count;
  890|   167k|                        std::copy(
  891|   167k|                            src_r->d.sizes, src_r->d.sizes + n, dst_r->d.sizes);
  892|   167k|                        if (node_t::refs(src_r).dec())
  893|   167k|                            heap::deallocate(node_t::sizeof_inner_r_n(n),
  894|   167k|                                             src_r);
  895|   167k|                    }
  896|   167k|                    node_t::ownee(dst_r) = e;
  897|   167k|                    return dst_r;
  898|   167k|                }
  899|   167k|            });
  900|   167k|    }
_ZZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE22ensure_mutable_relaxedENS9_5applyIS6_E4type4editEENKUlT_E0_clINS0_7empty_tEEEDaSG_:
  881|   167k|            [&](auto) {
  882|   167k|                if (node_t::refs(src_r).unique() ||
  ------------------
  |  Branch (882:21): [True: 159k, False: 7.28k]
  ------------------
  883|  7.28k|                    node_t::ownee(src_r).can_mutate(e))
  ------------------
  |  Branch (883:21): [True: 0, False: 7.28k]
  ------------------
  884|   159k|                    return src_r;
  885|  7.28k|                else {
  886|  7.28k|                    auto dst_r = impl.d.data.inner.relaxed =
  887|  7.28k|                        new (heap::allocate(max_sizeof_relaxed)) relaxed_t;
  888|  7.28k|                    if (src_r) {
  ------------------
  |  Branch (888:25): [True: 7.28k, False: 0]
  ------------------
  889|  7.28k|                        auto n = dst_r->d.count = src_r->d.count;
  890|  7.28k|                        std::copy(
  891|  7.28k|                            src_r->d.sizes, src_r->d.sizes + n, dst_r->d.sizes);
  892|  7.28k|                        if (node_t::refs(src_r).dec())
  ------------------
  |  Branch (892:29): [True: 0, False: 7.28k]
  ------------------
  893|      0|                            heap::deallocate(node_t::sizeof_inner_r_n(n),
  894|      0|                                             src_r);
  895|  7.28k|                    }
  896|  7.28k|                    node_t::ownee(dst_r) = e;
  897|  7.28k|                    return dst_r;
  898|  7.28k|                }
  899|   167k|            });
_ZN5immer6detail4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11copy_leaf_eENS9_5applyIS6_E4type4editEPSB_jSG_j:
  738|    266|    {
  739|    266|        IMMER_ASSERT_TAGGED(src1->kind() == kind_t::leaf);
  ------------------
  |  |   68|    266|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (739:9): [True: 266, False: 0]
  ------------------
  740|    266|        IMMER_ASSERT_TAGGED(src2->kind() == kind_t::leaf);
  ------------------
  |  |   68|    266|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (740:9): [True: 266, False: 0]
  ------------------
  741|    266|        auto dst = make_leaf_e(e);
  742|    266|        IMMER_TRY {
  ------------------
  |  |   49|    266|#define IMMER_TRY try
  ------------------
  743|    266|            detail::uninitialized_copy(
  744|    266|                src1->leaf(), src1->leaf() + n1, dst->leaf());
  745|    266|        }
  746|    266|        IMMER_CATCH (...) {
  747|      0|            heap::deallocate(max_sizeof_leaf, dst);
  748|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  749|      0|        }
  750|    266|        IMMER_TRY {
  ------------------
  |  |   49|    266|#define IMMER_TRY try
  ------------------
  751|    266|            detail::uninitialized_copy(
  752|    266|                src2->leaf(), src2->leaf() + n2, dst->leaf() + n1);
  753|    266|        }
  754|    266|        IMMER_CATCH (...) {
  755|      0|            detail::destroy_n(dst->leaf(), n1);
  756|      0|            heap::deallocate(max_sizeof_leaf, dst);
  757|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  758|      0|        }
  759|    266|        return dst;
  760|    266|    }

_ZN5immer6detail4rbts11dec_visitor13visit_relaxedIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_:
  523|  36.9M|    {
  524|  36.9M|        using node_t = node_type<Pos>;
  525|  36.9M|        auto node    = p.node();
  526|  36.9M|        if (node->dec()) {
  ------------------
  |  Branch (526:13): [True: 12.1M, False: 24.7M]
  ------------------
  527|  12.1M|            p.each(this_t{});
  528|  12.1M|            node_t::delete_inner_r(node, p.count());
  529|  12.1M|        }
  530|  36.9M|    }
_ZN5immer6detail4rbts11dec_visitor13visit_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_:
  534|  2.63M|    {
  535|  2.63M|        using node_t = node_type<Pos>;
  536|  2.63M|        auto node    = p.node();
  537|  2.63M|        if (node->dec()) {
  ------------------
  |  Branch (537:13): [True: 623k, False: 2.01M]
  ------------------
  538|   623k|            p.each(this_t{});
  539|   623k|            node_t::delete_inner(node, p.count());
  540|   623k|        }
  541|  2.63M|    }
_ZN5immer6detail4rbts11dec_visitor10visit_leafIRNS1_13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_:
  545|  1.27M|    {
  546|  1.27M|        using node_t = node_type<Pos>;
  547|  1.27M|        auto node    = p.node();
  548|  1.27M|        if (node->dec()) {
  ------------------
  |  Branch (548:13): [True: 577k, False: 702k]
  ------------------
  549|   577k|            node_t::delete_leaf(node, p.count());
  550|   577k|        }
  551|  1.27M|    }
_ZN5immer6detail4rbts11dec_visitor10visit_leafIRNS1_8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_:
  545|   496k|    {
  546|   496k|        using node_t = node_type<Pos>;
  547|   496k|        auto node    = p.node();
  548|   496k|        if (node->dec()) {
  ------------------
  |  Branch (548:13): [True: 19.7k, False: 476k]
  ------------------
  549|  19.7k|            node_t::delete_leaf(node, p.count());
  550|  19.7k|        }
  551|   496k|    }
_ZN5immer6detail4rbts11dec_visitor13visit_regularIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_:
  534|  3.63M|    {
  535|  3.63M|        using node_t = node_type<Pos>;
  536|  3.63M|        auto node    = p.node();
  537|  3.63M|        if (node->dec()) {
  ------------------
  |  Branch (537:13): [True: 247k, False: 3.38M]
  ------------------
  538|   247k|            p.each(this_t{});
  539|   247k|            node_t::delete_inner(node, p.count());
  540|   247k|        }
  541|  3.63M|    }
_ZN5immer6detail4rbts11dec_visitor13visit_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_:
  534|  2.47M|    {
  535|  2.47M|        using node_t = node_type<Pos>;
  536|  2.47M|        auto node    = p.node();
  537|  2.47M|        if (node->dec()) {
  ------------------
  |  Branch (537:13): [True: 2.32M, False: 142k]
  ------------------
  538|  2.32M|            p.each(this_t{});
  539|  2.32M|            node_t::delete_inner(node, p.count());
  540|  2.32M|        }
  541|  2.47M|    }
_ZN5immer6detail4rbts11dec_visitor13visit_regularIRNS1_17empty_regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_:
  534|  1.74M|    {
  535|  1.74M|        using node_t = node_type<Pos>;
  536|  1.74M|        auto node    = p.node();
  537|  1.74M|        if (node->dec()) {
  ------------------
  |  Branch (537:13): [True: 0, False: 1.74M]
  ------------------
  538|      0|            p.each(this_t{});
  539|      0|            node_t::delete_inner(node, p.count());
  540|      0|        }
  541|  1.74M|    }
_ZN5immer6detail4rbts11dec_visitor10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_:
  545|  10.8M|    {
  546|  10.8M|        using node_t = node_type<Pos>;
  547|  10.8M|        auto node    = p.node();
  548|  10.8M|        if (node->dec()) {
  ------------------
  |  Branch (548:13): [True: 917k, False: 9.94M]
  ------------------
  549|   917k|            node_t::delete_leaf(node, p.count());
  550|   917k|        }
  551|  10.8M|    }
_ZN5immer6detail4rbts11dec_visitor10visit_leafIRNS1_14empty_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_:
  545|  1.65M|    {
  546|  1.65M|        using node_t = node_type<Pos>;
  547|  1.65M|        auto node    = p.node();
  548|  1.65M|        if (node->dec()) {
  ------------------
  |  Branch (548:13): [True: 0, False: 1.65M]
  ------------------
  549|      0|            node_t::delete_leaf(node, p.count());
  550|      0|        }
  551|  1.65M|    }
_ZN5immer6detail4rbts17push_tail_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_relaxedIRNS1_11relaxed_posISC_EEEEPSC_OT_SI_j:
  791|   533k|    {
  792|   533k|        auto level    = pos.shift();
  793|   533k|        auto idx      = pos.count() - 1;
  794|   533k|        auto children = pos.size(idx);
  795|   533k|        auto new_idx =
  796|   533k|            children == size_t{1} << level || level == BL ? idx + 1 : idx;
  ------------------
  |  Branch (796:13): [True: 13.6k, False: 520k]
  |  Branch (796:47): [True: 718, False: 519k]
  ------------------
  797|   533k|        auto new_child = static_cast<node_t*>(nullptr);
  798|   533k|        if (new_idx >= branches<B>)
  ------------------
  |  Branch (798:13): [True: 4.80k, False: 529k]
  ------------------
  799|  4.80k|            return nullptr;
  800|   529k|        else if (idx == new_idx) {
  ------------------
  |  Branch (800:18): [True: 519k, False: 9.60k]
  ------------------
  801|   519k|            new_child = pos.last_oh_csh(this_t{}, idx, children, tail, ts);
  802|   519k|            if (!new_child) {
  ------------------
  |  Branch (802:17): [True: 4.08k, False: 515k]
  ------------------
  803|  4.08k|                if (++new_idx < branches<B>)
  ------------------
  |  Branch (803:21): [True: 2.82k, False: 1.26k]
  ------------------
  804|  2.82k|                    new_child = node_t::make_path(level - B, tail);
  805|  1.26k|                else
  806|  1.26k|                    return nullptr;
  807|  4.08k|            }
  808|   519k|        } else
  809|  9.60k|            new_child = node_t::make_path(level - B, tail);
  810|   527k|        IMMER_TRY {
  ------------------
  |  |   49|   527k|#define IMMER_TRY try
  ------------------
  811|   527k|            auto count = new_idx + 1;
  812|   527k|            auto new_parent =
  813|   527k|                node_t::copy_inner_r_n(count, pos.node(), new_idx);
  814|   527k|            auto new_relaxed              = new_parent->relaxed();
  815|   527k|            new_parent->inner()[new_idx]  = new_child;
  816|   527k|            new_relaxed->d.sizes[new_idx] = pos.size() + ts;
  817|   527k|            new_relaxed->d.count          = count;
  818|   527k|            assert(new_relaxed->d.sizes[new_idx]);
  ------------------
  |  Branch (818:13): [True: 527k, False: 0]
  ------------------
  819|   527k|            return new_parent;
  820|   527k|        }
  821|   527k|        IMMER_CATCH (...) {
  822|      0|            auto shift = pos.shift();
  823|      0|            auto size  = new_idx == idx ? children + ts : ts;
  ------------------
  |  Branch (823:26): [True: 0, False: 0]
  ------------------
  824|      0|            if (shift > BL) {
  ------------------
  |  Branch (824:17): [True: 0, False: 0]
  ------------------
  825|      0|                tail->inc();
  826|      0|                dec_inner(new_child, shift - B, size);
  827|      0|            }
  828|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  829|      0|        }
  830|   527k|    }
_ZN5immer6detail4rbts17push_tail_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_regularIRNS1_15regular_sub_posISC_EEJRjEEEPSC_OT_SJ_DpOT0_:
  834|   219k|    {
  835|   219k|        assert((pos.size() & mask<BL>) == 0);
  ------------------
  |  Branch (835:9): [True: 219k, False: 0]
  ------------------
  836|   219k|        auto idx        = pos.index(pos.size() - 1);
  837|   219k|        auto new_idx    = pos.index(pos.size() + branches<BL> - 1);
  838|   219k|        auto count      = new_idx + 1;
  839|   219k|        auto new_parent = node_t::make_inner_n(count);
  840|   219k|        IMMER_TRY {
  ------------------
  |  |   49|   219k|#define IMMER_TRY try
  ------------------
  841|   219k|            new_parent->inner()[new_idx] =
  842|   219k|                idx == new_idx ? pos.last_oh(this_t{}, idx, tail)
  ------------------
  |  Branch (842:17): [True: 211k, False: 7.97k]
  ------------------
  843|       |                               /* otherwise */
  844|   219k|                               : node_t::make_path(pos.shift() - B, tail);
  845|   219k|        }
  846|   219k|        IMMER_CATCH (...) {
  847|      0|            node_t::delete_inner(new_parent, count);
  848|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  849|      0|        }
  850|   219k|        return node_t::do_copy_inner(new_parent, pos.node(), new_idx);
  851|   219k|    }
_ZN5immer6detail4rbts17push_tail_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_regularIRNS1_11regular_posISC_EEJEEEPSC_OT_SI_DpOT0_:
  834|  2.28M|    {
  835|  2.28M|        assert((pos.size() & mask<BL>) == 0);
  ------------------
  |  Branch (835:9): [True: 2.28M, False: 0]
  ------------------
  836|  2.28M|        auto idx        = pos.index(pos.size() - 1);
  837|  2.28M|        auto new_idx    = pos.index(pos.size() + branches<BL> - 1);
  838|  2.28M|        auto count      = new_idx + 1;
  839|  2.28M|        auto new_parent = node_t::make_inner_n(count);
  840|  2.28M|        IMMER_TRY {
  ------------------
  |  |   49|  2.28M|#define IMMER_TRY try
  ------------------
  841|  2.28M|            new_parent->inner()[new_idx] =
  842|  2.28M|                idx == new_idx ? pos.last_oh(this_t{}, idx, tail)
  ------------------
  |  Branch (842:17): [True: 1.75M, False: 534k]
  ------------------
  843|       |                               /* otherwise */
  844|  2.28M|                               : node_t::make_path(pos.shift() - B, tail);
  845|  2.28M|        }
  846|  2.28M|        IMMER_CATCH (...) {
  847|      0|            node_t::delete_inner(new_parent, count);
  848|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  849|      0|        }
  850|  2.28M|        return node_t::do_copy_inner(new_parent, pos.node(), new_idx);
  851|  2.28M|    }
_ZN5immer6detail4rbts9dec_innerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEvPT_jm:
  562|    552|{
  563|    552|    visit_maybe_relaxed_sub(node, shift, size, dec_visitor());
  564|    552|}
_ZN5immer6detail4rbts17push_tail_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_regularIRNS1_15regular_sub_posISC_EEJEEEPSC_OT_SI_DpOT0_:
  834|   339k|    {
  835|   339k|        assert((pos.size() & mask<BL>) == 0);
  ------------------
  |  Branch (835:9): [True: 339k, False: 0]
  ------------------
  836|   339k|        auto idx        = pos.index(pos.size() - 1);
  837|   339k|        auto new_idx    = pos.index(pos.size() + branches<BL> - 1);
  838|   339k|        auto count      = new_idx + 1;
  839|   339k|        auto new_parent = node_t::make_inner_n(count);
  840|   339k|        IMMER_TRY {
  ------------------
  |  |   49|   339k|#define IMMER_TRY try
  ------------------
  841|   339k|            new_parent->inner()[new_idx] =
  842|   339k|                idx == new_idx ? pos.last_oh(this_t{}, idx, tail)
  ------------------
  |  Branch (842:17): [True: 323k, False: 15.9k]
  ------------------
  843|       |                               /* otherwise */
  844|   339k|                               : node_t::make_path(pos.shift() - B, tail);
  845|   339k|        }
  846|   339k|        IMMER_CATCH (...) {
  847|      0|            node_t::delete_inner(new_parent, count);
  848|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  849|      0|        }
  850|   339k|        return node_t::do_copy_inner(new_parent, pos.node(), new_idx);
  851|   339k|    }
flex-vector.cpp:_ZN5immer6detail4rbts14update_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EERZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEPSC_OSL_mOT0_:
  502|  88.4k|    {
  503|  88.4k|        auto offset = pos.index(idx);
  504|  88.4k|        auto node   = node_t::copy_leaf(pos.node(), pos.count());
  505|  88.4k|        IMMER_TRY {
  ------------------
  |  |   49|  88.4k|#define IMMER_TRY try
  ------------------
  506|  88.4k|            node->leaf()[offset] =
  507|  88.4k|                std::forward<Fn>(fn)(std::move(node->leaf()[offset]));
  508|  88.4k|            return node;
  509|  88.4k|        }
  510|  88.4k|        IMMER_CATCH (...) {
  511|      0|            node_t::delete_leaf(node, pos.count());
  512|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  513|      0|        }
  514|  88.4k|    }
flex-vector.cpp:_ZN5immer6detail4rbts14update_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_relaxedIRNS1_11relaxed_posISC_EERZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEPSC_OSL_mOT0_:
  466|   313k|    {
  467|   313k|        auto offset = pos.index(idx);
  468|   313k|        auto count  = pos.count();
  469|   313k|        auto node   = node_t::make_inner_sr_n(count, pos.relaxed());
  470|   313k|        IMMER_TRY {
  ------------------
  |  |   49|   313k|#define IMMER_TRY try
  ------------------
  471|   313k|            auto child = pos.towards_oh(this_t{}, idx, offset, fn);
  472|   313k|            node_t::do_copy_inner_replace_sr(
  473|   313k|                node, pos.node(), count, offset, child);
  474|   313k|            return node;
  475|   313k|        }
  476|   313k|        IMMER_CATCH (...) {
  477|      0|            node_t::delete_inner_r(node, count);
  478|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  479|      0|        }
  480|   313k|    }
flex-vector.cpp:_ZN5immer6detail4rbts14update_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_regularIRNS1_15regular_sub_posISC_EERZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEPSC_OSL_mOT0_:
  484|  26.5k|    {
  485|  26.5k|        auto offset = pos.index(idx);
  486|  26.5k|        auto count  = pos.count();
  487|  26.5k|        auto node   = node_t::make_inner_n(count);
  488|  26.5k|        IMMER_TRY {
  ------------------
  |  |   49|  26.5k|#define IMMER_TRY try
  ------------------
  489|  26.5k|            auto child = pos.towards_oh_ch(this_t{}, idx, offset, count, fn);
  490|  26.5k|            node_t::do_copy_inner_replace(
  491|  26.5k|                node, pos.node(), count, offset, child);
  492|  26.5k|            return node;
  493|  26.5k|        }
  494|  26.5k|        IMMER_CATCH (...) {
  495|      0|            node_t::delete_inner(node, count);
  496|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  497|      0|        }
  498|  26.5k|    }
flex-vector.cpp:_ZN5immer6detail4rbts14update_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_13full_leaf_posISC_EERZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEPSC_OSL_mOT0_:
  502|  23.5k|    {
  503|  23.5k|        auto offset = pos.index(idx);
  504|  23.5k|        auto node   = node_t::copy_leaf(pos.node(), pos.count());
  505|  23.5k|        IMMER_TRY {
  ------------------
  |  |   49|  23.5k|#define IMMER_TRY try
  ------------------
  506|  23.5k|            node->leaf()[offset] =
  507|  23.5k|                std::forward<Fn>(fn)(std::move(node->leaf()[offset]));
  508|  23.5k|            return node;
  509|  23.5k|        }
  510|  23.5k|        IMMER_CATCH (...) {
  511|      0|            node_t::delete_leaf(node, pos.count());
  512|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  513|      0|        }
  514|  23.5k|    }
flex-vector.cpp:_ZN5immer6detail4rbts14update_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_regularIRNS1_8full_posISC_EERZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEPSC_OSL_mOT0_:
  484|  16.3k|    {
  485|  16.3k|        auto offset = pos.index(idx);
  486|  16.3k|        auto count  = pos.count();
  487|  16.3k|        auto node   = node_t::make_inner_n(count);
  488|  16.3k|        IMMER_TRY {
  ------------------
  |  |   49|  16.3k|#define IMMER_TRY try
  ------------------
  489|  16.3k|            auto child = pos.towards_oh_ch(this_t{}, idx, offset, count, fn);
  490|  16.3k|            node_t::do_copy_inner_replace(
  491|  16.3k|                node, pos.node(), count, offset, child);
  492|  16.3k|            return node;
  493|  16.3k|        }
  494|  16.3k|        IMMER_CATCH (...) {
  495|      0|            node_t::delete_inner(node, count);
  496|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  497|      0|        }
  498|  16.3k|    }
flex-vector.cpp:_ZN5immer6detail4rbts14update_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_8leaf_posISC_EERZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEPSC_OSL_mOT0_:
  502|  3.02k|    {
  503|  3.02k|        auto offset = pos.index(idx);
  504|  3.02k|        auto node   = node_t::copy_leaf(pos.node(), pos.count());
  505|  3.02k|        IMMER_TRY {
  ------------------
  |  |   49|  3.02k|#define IMMER_TRY try
  ------------------
  506|  3.02k|            node->leaf()[offset] =
  507|  3.02k|                std::forward<Fn>(fn)(std::move(node->leaf()[offset]));
  508|  3.02k|            return node;
  509|  3.02k|        }
  510|  3.02k|        IMMER_CATCH (...) {
  511|      0|            node_t::delete_leaf(node, pos.count());
  512|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  513|      0|        }
  514|  3.02k|    }
flex-vector.cpp:_ZN5immer6detail4rbts14update_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_regularIRNS1_11regular_posISC_EERZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEPSC_OSL_mOT0_:
  484|  4.85k|    {
  485|  4.85k|        auto offset = pos.index(idx);
  486|  4.85k|        auto count  = pos.count();
  487|  4.85k|        auto node   = node_t::make_inner_n(count);
  488|  4.85k|        IMMER_TRY {
  ------------------
  |  |   49|  4.85k|#define IMMER_TRY try
  ------------------
  489|  4.85k|            auto child = pos.towards_oh_ch(this_t{}, idx, offset, count, fn);
  490|  4.85k|            node_t::do_copy_inner_replace(
  491|  4.85k|                node, pos.node(), count, offset, child);
  492|  4.85k|            return node;
  493|  4.85k|        }
  494|  4.85k|        IMMER_CATCH (...) {
  495|      0|            node_t::delete_inner(node, count);
  496|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  497|      0|        }
  498|  4.85k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1096|  36.3k|    {
 1097|  36.3k|        auto idx = pos.index(last);
 1098|  36.3k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (1098:13): [True: 36.3k, Folded]
  |  Branch (1098:25): [True: 26.9k, False: 9.40k]
  ------------------
 1099|  26.9k|            return pos.towards_oh(this_t{}, last, idx);
 1100|  26.9k|        } else {
 1101|  9.40k|            using std::get;
 1102|  9.40k|            auto subs = pos.towards_oh(no_collapse_t{}, last, idx);
 1103|  9.40k|            auto next = get<1>(subs);
 1104|  9.40k|            auto ts   = get<2>(subs);
 1105|  9.40k|            auto tail = get<3>(subs);
 1106|  9.40k|            IMMER_TRY {
  ------------------
  |  |   49|  9.40k|#define IMMER_TRY try
  ------------------
 1107|  9.40k|                if (next) {
  ------------------
  |  Branch (1107:21): [True: 5.34k, False: 4.05k]
  ------------------
 1108|  5.34k|                    auto count = idx + 1;
 1109|  5.34k|                    auto newn  = node_t::copy_inner_r_n(count, pos.node(), idx);
 1110|  5.34k|                    auto newr  = newn->relaxed();
 1111|  5.34k|                    newn->inner()[idx] = next;
 1112|  5.34k|                    newr->d.sizes[idx] = last + 1 - ts;
 1113|  5.34k|                    newr->d.count      = count;
 1114|  5.34k|                    assert(newr->d.sizes[idx]);
  ------------------
  |  Branch (1114:21): [True: 5.34k, False: 0]
  ------------------
 1115|  5.34k|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1116|  5.34k|                } else if (idx == 0) {
  ------------------
  |  Branch (1116:28): [True: 0, False: 4.05k]
  ------------------
 1117|      0|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1118|  4.05k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1118:28): [True: 4.05k, Folded]
  |  Branch (1118:40): [True: 3.06k, False: 990]
  |  Branch (1118:52): [True: 2.24k, False: 822]
  ------------------
 1119|  2.24k|                    auto newn = pos.node()->inner()[0];
 1120|  2.24k|                    return std::make_tuple(
 1121|  2.24k|                        pos.shift() - B, newn->inc(), ts, tail);
 1122|  2.24k|                } else {
 1123|  1.81k|                    auto newn = node_t::copy_inner_r(pos.node(), idx);
 1124|  1.81k|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1125|  1.81k|                }
 1126|  9.40k|            }
 1127|  9.40k|            IMMER_CATCH (...) {
 1128|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1128:17): [True: 0, False: 0]
  |  Branch (1128:17): [True: 0, False: 0]
  |  Branch (1128:17): [True: 0, False: 0]
  ------------------
 1129|      0|                if (next)
  ------------------
  |  Branch (1129:21): [True: 0, False: 0]
  ------------------
 1130|      0|                    dec_inner(next,
 1131|      0|                              pos.shift() - B,
 1132|      0|                              last + 1 - ts - pos.size_before(idx));
 1133|      0|                if (tail)
  ------------------
  |  Branch (1133:21): [True: 0, False: 0]
  ------------------
 1134|      0|                    dec_leaf(tail, ts);
 1135|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1136|      0|            }
 1137|  9.40k|        }
 1138|  36.3k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1181|  2.14k|    {
 1182|  2.14k|        auto old_tail_size = pos.count();
 1183|  2.14k|        auto new_tail_size = pos.index(last) + 1;
 1184|  2.14k|        auto new_tail      = new_tail_size == old_tail_size
  ------------------
  |  Branch (1184:30): [True: 1.03k, False: 1.10k]
  ------------------
 1185|  2.14k|                                 ? pos.node()->inc()
 1186|  2.14k|                                 : node_t::copy_leaf(pos.node(), new_tail_size);
 1187|  2.14k|        return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1188|  2.14k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1181|  5.41k|    {
 1182|  5.41k|        auto old_tail_size = pos.count();
 1183|  5.41k|        auto new_tail_size = pos.index(last) + 1;
 1184|  5.41k|        auto new_tail      = new_tail_size == old_tail_size
  ------------------
  |  Branch (1184:30): [True: 2.45k, False: 2.95k]
  ------------------
 1185|  5.41k|                                 ? pos.node()->inc()
 1186|  5.41k|                                 : node_t::copy_leaf(pos.node(), new_tail_size);
 1187|  5.41k|        return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1188|  5.41k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1096|  12.1k|    {
 1097|  12.1k|        auto idx = pos.index(last);
 1098|  12.1k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (1098:13): [Folded, False: 12.1k]
  |  Branch (1098:25): [True: 0, False: 0]
  ------------------
 1099|      0|            return pos.towards_oh(this_t{}, last, idx);
 1100|  12.1k|        } else {
 1101|  12.1k|            using std::get;
 1102|  12.1k|            auto subs = pos.towards_oh(no_collapse_t{}, last, idx);
 1103|  12.1k|            auto next = get<1>(subs);
 1104|  12.1k|            auto ts   = get<2>(subs);
 1105|  12.1k|            auto tail = get<3>(subs);
 1106|  12.1k|            IMMER_TRY {
  ------------------
  |  |   49|  12.1k|#define IMMER_TRY try
  ------------------
 1107|  12.1k|                if (next) {
  ------------------
  |  Branch (1107:21): [True: 6.53k, False: 5.59k]
  ------------------
 1108|  6.53k|                    auto count = idx + 1;
 1109|  6.53k|                    auto newn  = node_t::copy_inner_r_n(count, pos.node(), idx);
 1110|  6.53k|                    auto newr  = newn->relaxed();
 1111|  6.53k|                    newn->inner()[idx] = next;
 1112|  6.53k|                    newr->d.sizes[idx] = last + 1 - ts;
 1113|  6.53k|                    newr->d.count      = count;
 1114|  6.53k|                    assert(newr->d.sizes[idx]);
  ------------------
  |  Branch (1114:21): [True: 6.53k, False: 0]
  ------------------
 1115|  6.53k|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1116|  6.53k|                } else if (idx == 0) {
  ------------------
  |  Branch (1116:28): [True: 2.64k, False: 2.94k]
  ------------------
 1117|  2.64k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1118|  2.94k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1118:28): [Folded, False: 2.94k]
  |  Branch (1118:40): [True: 0, False: 0]
  |  Branch (1118:52): [True: 0, False: 0]
  ------------------
 1119|      0|                    auto newn = pos.node()->inner()[0];
 1120|      0|                    return std::make_tuple(
 1121|      0|                        pos.shift() - B, newn->inc(), ts, tail);
 1122|  2.94k|                } else {
 1123|  2.94k|                    auto newn = node_t::copy_inner_r(pos.node(), idx);
 1124|  2.94k|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1125|  2.94k|                }
 1126|  12.1k|            }
 1127|  12.1k|            IMMER_CATCH (...) {
 1128|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1128:17): [True: 0, False: 0]
  |  Branch (1128:17): [True: 0, False: 0]
  |  Branch (1128:17): [True: 0, False: 0]
  ------------------
 1129|      0|                if (next)
  ------------------
  |  Branch (1129:21): [True: 0, False: 0]
  ------------------
 1130|      0|                    dec_inner(next,
 1131|      0|                              pos.shift() - B,
 1132|      0|                              last + 1 - ts - pos.size_before(idx));
 1133|      0|                if (tail)
  ------------------
  |  Branch (1133:21): [True: 0, False: 0]
  ------------------
 1134|      0|                    dec_leaf(tail, ts);
 1135|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1136|      0|            }
 1137|  12.1k|        }
 1138|  12.1k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1142|  3.99k|    {
 1143|  3.99k|        auto idx = pos.index(last);
 1144|  3.99k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (1144:13): [Folded, False: 3.99k]
  |  Branch (1144:25): [True: 0, False: 0]
  ------------------
 1145|      0|            return pos.towards_oh(this_t{}, last, idx);
 1146|  3.99k|        } else {
 1147|  3.99k|            using std::get;
 1148|  3.99k|            auto subs = pos.towards_oh(no_collapse_t{}, last, idx);
 1149|  3.99k|            auto next = get<1>(subs);
 1150|  3.99k|            auto ts   = get<2>(subs);
 1151|  3.99k|            auto tail = get<3>(subs);
 1152|  3.99k|            IMMER_TRY {
  ------------------
  |  |   49|  3.99k|#define IMMER_TRY try
  ------------------
 1153|  3.99k|                if (next) {
  ------------------
  |  Branch (1153:21): [True: 1.60k, False: 2.39k]
  ------------------
 1154|  1.60k|                    auto newn = node_t::copy_inner_n(idx + 1, pos.node(), idx);
 1155|  1.60k|                    newn->inner()[idx] = next;
 1156|  1.60k|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1157|  2.39k|                } else if (idx == 0) {
  ------------------
  |  Branch (1157:28): [True: 1.59k, False: 793]
  ------------------
 1158|  1.59k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1159|  1.59k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1159:28): [Folded, False: 793]
  |  Branch (1159:40): [True: 0, False: 0]
  |  Branch (1159:52): [True: 0, False: 0]
  ------------------
 1160|      0|                    auto newn = pos.node()->inner()[0];
 1161|      0|                    return std::make_tuple(
 1162|      0|                        pos.shift() - B, newn->inc(), ts, tail);
 1163|    793|                } else {
 1164|    793|                    auto newn = node_t::copy_inner_n(idx, pos.node(), idx);
 1165|    793|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1166|    793|                }
 1167|  3.99k|            }
 1168|  3.99k|            IMMER_CATCH (...) {
 1169|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  ------------------
 1170|      0|                assert(tail);
  ------------------
  |  Branch (1170:17): [True: 0, False: 0]
  ------------------
 1171|      0|                if (next)
  ------------------
  |  Branch (1171:21): [True: 0, False: 0]
  ------------------
 1172|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1173|      0|                dec_leaf(tail, ts);
 1174|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1175|      0|            }
 1176|  3.99k|        }
 1177|  3.99k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE10visit_leafIRNS1_13full_leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1181|  6.31k|    {
 1182|  6.31k|        auto old_tail_size = pos.count();
 1183|  6.31k|        auto new_tail_size = pos.index(last) + 1;
 1184|  6.31k|        auto new_tail      = new_tail_size == old_tail_size
  ------------------
  |  Branch (1184:30): [True: 4.00k, False: 2.30k]
  ------------------
 1185|  6.31k|                                 ? pos.node()->inc()
 1186|  6.31k|                                 : node_t::copy_leaf(pos.node(), new_tail_size);
 1187|  6.31k|        return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1188|  6.31k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1142|  2.53k|    {
 1143|  2.53k|        auto idx = pos.index(last);
 1144|  2.53k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (1144:13): [Folded, False: 2.53k]
  |  Branch (1144:25): [True: 0, False: 0]
  ------------------
 1145|      0|            return pos.towards_oh(this_t{}, last, idx);
 1146|  2.53k|        } else {
 1147|  2.53k|            using std::get;
 1148|  2.53k|            auto subs = pos.towards_oh(no_collapse_t{}, last, idx);
 1149|  2.53k|            auto next = get<1>(subs);
 1150|  2.53k|            auto ts   = get<2>(subs);
 1151|  2.53k|            auto tail = get<3>(subs);
 1152|  2.53k|            IMMER_TRY {
  ------------------
  |  |   49|  2.53k|#define IMMER_TRY try
  ------------------
 1153|  2.53k|                if (next) {
  ------------------
  |  Branch (1153:21): [True: 342, False: 2.19k]
  ------------------
 1154|    342|                    auto newn = node_t::copy_inner_n(idx + 1, pos.node(), idx);
 1155|    342|                    newn->inner()[idx] = next;
 1156|    342|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1157|  2.19k|                } else if (idx == 0) {
  ------------------
  |  Branch (1157:28): [True: 1.22k, False: 976]
  ------------------
 1158|  1.22k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1159|  1.22k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1159:28): [Folded, False: 976]
  |  Branch (1159:40): [True: 0, False: 0]
  |  Branch (1159:52): [True: 0, False: 0]
  ------------------
 1160|      0|                    auto newn = pos.node()->inner()[0];
 1161|      0|                    return std::make_tuple(
 1162|      0|                        pos.shift() - B, newn->inc(), ts, tail);
 1163|    976|                } else {
 1164|    976|                    auto newn = node_t::copy_inner_n(idx, pos.node(), idx);
 1165|    976|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1166|    976|                }
 1167|  2.53k|            }
 1168|  2.53k|            IMMER_CATCH (...) {
 1169|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  ------------------
 1170|      0|                assert(tail);
  ------------------
  |  Branch (1170:17): [True: 0, False: 0]
  ------------------
 1171|      0|                if (next)
  ------------------
  |  Branch (1171:21): [True: 0, False: 0]
  ------------------
 1172|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1173|      0|                dec_leaf(tail, ts);
 1174|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1175|      0|            }
 1176|  2.53k|        }
 1177|  2.53k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE10visit_leafIRNS1_8leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1181|  2.49k|    {
 1182|  2.49k|        auto old_tail_size = pos.count();
 1183|  2.49k|        auto new_tail_size = pos.index(last) + 1;
 1184|  2.49k|        auto new_tail      = new_tail_size == old_tail_size
  ------------------
  |  Branch (1184:30): [True: 1.25k, False: 1.23k]
  ------------------
 1185|  2.49k|                                 ? pos.node()->inc()
 1186|  2.49k|                                 : node_t::copy_leaf(pos.node(), new_tail_size);
 1187|  2.49k|        return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1188|  2.49k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE13visit_regularIRNS1_11regular_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1142|  4.89k|    {
 1143|  4.89k|        auto idx = pos.index(last);
 1144|  4.89k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (1144:13): [Folded, False: 4.89k]
  |  Branch (1144:25): [True: 0, False: 0]
  ------------------
 1145|      0|            return pos.towards_oh(this_t{}, last, idx);
 1146|  4.89k|        } else {
 1147|  4.89k|            using std::get;
 1148|  4.89k|            auto subs = pos.towards_oh(no_collapse_t{}, last, idx);
 1149|  4.89k|            auto next = get<1>(subs);
 1150|  4.89k|            auto ts   = get<2>(subs);
 1151|  4.89k|            auto tail = get<3>(subs);
 1152|  4.89k|            IMMER_TRY {
  ------------------
  |  |   49|  4.89k|#define IMMER_TRY try
  ------------------
 1153|  4.89k|                if (next) {
  ------------------
  |  Branch (1153:21): [True: 1.23k, False: 3.66k]
  ------------------
 1154|  1.23k|                    auto newn = node_t::copy_inner_n(idx + 1, pos.node(), idx);
 1155|  1.23k|                    newn->inner()[idx] = next;
 1156|  1.23k|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1157|  3.66k|                } else if (idx == 0) {
  ------------------
  |  Branch (1157:28): [True: 1.85k, False: 1.81k]
  ------------------
 1158|  1.85k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1159|  1.85k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1159:28): [Folded, False: 1.81k]
  |  Branch (1159:40): [True: 0, False: 0]
  |  Branch (1159:52): [True: 0, False: 0]
  ------------------
 1160|      0|                    auto newn = pos.node()->inner()[0];
 1161|      0|                    return std::make_tuple(
 1162|      0|                        pos.shift() - B, newn->inc(), ts, tail);
 1163|  1.81k|                } else {
 1164|  1.81k|                    auto newn = node_t::copy_inner_n(idx, pos.node(), idx);
 1165|  1.81k|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1166|  1.81k|                }
 1167|  4.89k|            }
 1168|  4.89k|            IMMER_CATCH (...) {
 1169|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  ------------------
 1170|      0|                assert(tail);
  ------------------
  |  Branch (1170:17): [True: 0, False: 0]
  ------------------
 1171|      0|                if (next)
  ------------------
  |  Branch (1171:21): [True: 0, False: 0]
  ------------------
 1172|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1173|      0|                dec_leaf(tail, ts);
 1174|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1175|      0|            }
 1176|  4.89k|        }
 1177|  4.89k|    }
_ZN5immer6detail4rbts8dec_leafINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEvPT_j:
  556|  41.9k|{
  557|  41.9k|    make_leaf_sub_pos(node, n).visit(dec_visitor{});
  558|  41.9k|}
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1142|  6.93k|    {
 1143|  6.93k|        auto idx = pos.index(last);
 1144|  6.93k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (1144:13): [True: 6.93k, Folded]
  |  Branch (1144:25): [True: 3.48k, False: 3.44k]
  ------------------
 1145|  3.48k|            return pos.towards_oh(this_t{}, last, idx);
 1146|  3.48k|        } else {
 1147|  3.44k|            using std::get;
 1148|  3.44k|            auto subs = pos.towards_oh(no_collapse_t{}, last, idx);
 1149|  3.44k|            auto next = get<1>(subs);
 1150|  3.44k|            auto ts   = get<2>(subs);
 1151|  3.44k|            auto tail = get<3>(subs);
 1152|  3.44k|            IMMER_TRY {
  ------------------
  |  |   49|  3.44k|#define IMMER_TRY try
  ------------------
 1153|  3.44k|                if (next) {
  ------------------
  |  Branch (1153:21): [True: 835, False: 2.60k]
  ------------------
 1154|    835|                    auto newn = node_t::copy_inner_n(idx + 1, pos.node(), idx);
 1155|    835|                    newn->inner()[idx] = next;
 1156|    835|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1157|  2.60k|                } else if (idx == 0) {
  ------------------
  |  Branch (1157:28): [True: 0, False: 2.60k]
  ------------------
 1158|      0|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1159|  2.60k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1159:28): [True: 2.60k, Folded]
  |  Branch (1159:40): [True: 2.19k, False: 413]
  |  Branch (1159:52): [True: 1.63k, False: 556]
  ------------------
 1160|  1.63k|                    auto newn = pos.node()->inner()[0];
 1161|  1.63k|                    return std::make_tuple(
 1162|  1.63k|                        pos.shift() - B, newn->inc(), ts, tail);
 1163|  1.63k|                } else {
 1164|    969|                    auto newn = node_t::copy_inner_n(idx, pos.node(), idx);
 1165|    969|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1166|    969|                }
 1167|  3.44k|            }
 1168|  3.44k|            IMMER_CATCH (...) {
 1169|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  ------------------
 1170|      0|                assert(tail);
  ------------------
  |  Branch (1170:17): [True: 0, False: 0]
  ------------------
 1171|      0|                if (next)
  ------------------
  |  Branch (1171:21): [True: 0, False: 0]
  ------------------
 1172|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1173|      0|                dec_leaf(tail, ts);
 1174|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1175|      0|            }
 1176|  3.44k|        }
 1177|  6.93k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE10visit_leafIRNS1_13full_leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1181|  1.44k|    {
 1182|  1.44k|        auto old_tail_size = pos.count();
 1183|  1.44k|        auto new_tail_size = pos.index(last) + 1;
 1184|  1.44k|        auto new_tail      = new_tail_size == old_tail_size
  ------------------
  |  Branch (1184:30): [True: 505, False: 943]
  ------------------
 1185|  1.44k|                                 ? pos.node()->inc()
 1186|  1.44k|                                 : node_t::copy_leaf(pos.node(), new_tail_size);
 1187|  1.44k|        return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1188|  1.44k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1142|  2.54k|    {
 1143|  2.54k|        auto idx = pos.index(last);
 1144|  2.54k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (1144:13): [True: 2.54k, Folded]
  |  Branch (1144:25): [True: 1.17k, False: 1.36k]
  ------------------
 1145|  1.17k|            return pos.towards_oh(this_t{}, last, idx);
 1146|  1.36k|        } else {
 1147|  1.36k|            using std::get;
 1148|  1.36k|            auto subs = pos.towards_oh(no_collapse_t{}, last, idx);
 1149|  1.36k|            auto next = get<1>(subs);
 1150|  1.36k|            auto ts   = get<2>(subs);
 1151|  1.36k|            auto tail = get<3>(subs);
 1152|  1.36k|            IMMER_TRY {
  ------------------
  |  |   49|  1.36k|#define IMMER_TRY try
  ------------------
 1153|  1.36k|                if (next) {
  ------------------
  |  Branch (1153:21): [True: 352, False: 1.01k]
  ------------------
 1154|    352|                    auto newn = node_t::copy_inner_n(idx + 1, pos.node(), idx);
 1155|    352|                    newn->inner()[idx] = next;
 1156|    352|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1157|  1.01k|                } else if (idx == 0) {
  ------------------
  |  Branch (1157:28): [True: 0, False: 1.01k]
  ------------------
 1158|      0|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1159|  1.01k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1159:28): [True: 1.01k, Folded]
  |  Branch (1159:40): [True: 596, False: 420]
  |  Branch (1159:52): [True: 315, False: 281]
  ------------------
 1160|    315|                    auto newn = pos.node()->inner()[0];
 1161|    315|                    return std::make_tuple(
 1162|    315|                        pos.shift() - B, newn->inc(), ts, tail);
 1163|    701|                } else {
 1164|    701|                    auto newn = node_t::copy_inner_n(idx, pos.node(), idx);
 1165|    701|                    return std::make_tuple(pos.shift(), newn, ts, tail);
 1166|    701|                }
 1167|  1.36k|            }
 1168|  1.36k|            IMMER_CATCH (...) {
 1169|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  |  Branch (1169:17): [True: 0, False: 0]
  ------------------
 1170|      0|                assert(tail);
  ------------------
  |  Branch (1170:17): [True: 0, False: 0]
  ------------------
 1171|      0|                if (next)
  ------------------
  |  Branch (1171:21): [True: 0, False: 0]
  ------------------
 1172|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1173|      0|                dec_leaf(tail, ts);
 1174|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1175|      0|            }
 1176|  1.36k|        }
 1177|  2.54k|    }
_ZN5immer6detail4rbts19slice_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE10visit_leafIRNS1_8leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_m:
 1181|    671|    {
 1182|    671|        auto old_tail_size = pos.count();
 1183|    671|        auto new_tail_size = pos.index(last) + 1;
 1184|    671|        auto new_tail      = new_tail_size == old_tail_size
  ------------------
  |  Branch (1184:30): [True: 270, False: 401]
  ------------------
 1185|    671|                                 ? pos.node()->inc()
 1186|    671|                                 : node_t::copy_leaf(pos.node(), new_tail_size);
 1187|    671|        return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1188|    671|    }
_ZN5immer6detail4rbts18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE11visit_innerIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_m:
 1414|  15.5k|    {
 1415|  15.5k|        auto idx                = pos.subindex(first);
 1416|  15.5k|        auto count              = pos.count();
 1417|  15.5k|        auto left_size          = pos.size_before(idx);
 1418|  15.5k|        auto child_size         = pos.size_sbh(idx, left_size);
 1419|  15.5k|        auto dropped_size       = first;
 1420|  15.5k|        auto child_dropped_size = dropped_size - left_size;
 1421|  15.5k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1421:13): [True: 15.5k, Folded]
  |  Branch (1421:25): [True: 13.4k, False: 2.05k]
  |  Branch (1421:45): [True: 4.61k, False: 8.86k]
  ------------------
 1422|  4.61k|            return pos.towards_sub_oh(this_t{}, first, idx);
 1423|  10.9k|        } else {
 1424|  10.9k|            using std::get;
 1425|  10.9k|            auto n    = pos.node();
 1426|  10.9k|            auto newc = count - idx;
 1427|  10.9k|            auto newn = node_t::make_inner_r_n(newc);
 1428|  10.9k|            IMMER_TRY {
  ------------------
  |  |   49|  10.9k|#define IMMER_TRY try
  ------------------
 1429|  10.9k|                auto subs     = pos.towards_sub_oh(no_collapse_t{}, first, idx);
 1430|  10.9k|                auto newr     = newn->relaxed();
 1431|  10.9k|                newr->d.count = count - idx;
 1432|  10.9k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1433|  10.9k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1433:17): [True: 10.9k, False: 0]
  ------------------
 1434|  10.9k|                pos.copy_sizes(idx + 1,
 1435|  10.9k|                               newr->d.count - 1,
 1436|  10.9k|                               newr->d.sizes[0],
 1437|  10.9k|                               newr->d.sizes + 1);
 1438|  10.9k|                assert(newr->d.sizes[newr->d.count - 1] ==
  ------------------
  |  Branch (1438:17): [True: 10.9k, False: 0]
  ------------------
 1439|  10.9k|                       pos.size() - dropped_size);
 1440|  10.9k|                newn->inner()[0] = get<1>(subs);
 1441|  10.9k|                std::copy(n->inner() + idx + 1,
 1442|  10.9k|                          n->inner() + count,
 1443|  10.9k|                          newn->inner() + 1);
 1444|  10.9k|                node_t::inc_nodes(newn->inner() + 1, newr->d.count - 1);
 1445|  10.9k|                return std::make_tuple(pos.shift(), newn);
 1446|  10.9k|            }
 1447|  10.9k|            IMMER_CATCH (...) {
 1448|      0|                node_t::delete_inner_r(newn, newc);
 1449|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1450|      0|            }
 1451|  10.9k|        }
 1452|  15.5k|    }
_ZN5immer6detail4rbts18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_m:
 1456|  8.72k|    {
 1457|  8.72k|        auto n = node_t::copy_leaf(pos.node(), pos.index(first), pos.count());
 1458|  8.72k|        return std::make_tuple(0, n);
 1459|  8.72k|    }
_ZN5immer6detail4rbts18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE11visit_innerIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_m:
 1414|  44.7k|    {
 1415|  44.7k|        auto idx                = pos.subindex(first);
 1416|  44.7k|        auto count              = pos.count();
 1417|  44.7k|        auto left_size          = pos.size_before(idx);
 1418|  44.7k|        auto child_size         = pos.size_sbh(idx, left_size);
 1419|  44.7k|        auto dropped_size       = first;
 1420|  44.7k|        auto child_dropped_size = dropped_size - left_size;
 1421|  44.7k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1421:13): [Folded, False: 44.7k]
  |  Branch (1421:25): [True: 0, False: 0]
  |  Branch (1421:45): [True: 0, False: 0]
  ------------------
 1422|      0|            return pos.towards_sub_oh(this_t{}, first, idx);
 1423|  44.7k|        } else {
 1424|  44.7k|            using std::get;
 1425|  44.7k|            auto n    = pos.node();
 1426|  44.7k|            auto newc = count - idx;
 1427|  44.7k|            auto newn = node_t::make_inner_r_n(newc);
 1428|  44.7k|            IMMER_TRY {
  ------------------
  |  |   49|  44.7k|#define IMMER_TRY try
  ------------------
 1429|  44.7k|                auto subs     = pos.towards_sub_oh(no_collapse_t{}, first, idx);
 1430|  44.7k|                auto newr     = newn->relaxed();
 1431|  44.7k|                newr->d.count = count - idx;
 1432|  44.7k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1433|  44.7k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1433:17): [True: 44.7k, False: 0]
  ------------------
 1434|  44.7k|                pos.copy_sizes(idx + 1,
 1435|  44.7k|                               newr->d.count - 1,
 1436|  44.7k|                               newr->d.sizes[0],
 1437|  44.7k|                               newr->d.sizes + 1);
 1438|  44.7k|                assert(newr->d.sizes[newr->d.count - 1] ==
  ------------------
  |  Branch (1438:17): [True: 44.7k, False: 0]
  ------------------
 1439|  44.7k|                       pos.size() - dropped_size);
 1440|  44.7k|                newn->inner()[0] = get<1>(subs);
 1441|  44.7k|                std::copy(n->inner() + idx + 1,
 1442|  44.7k|                          n->inner() + count,
 1443|  44.7k|                          newn->inner() + 1);
 1444|  44.7k|                node_t::inc_nodes(newn->inner() + 1, newr->d.count - 1);
 1445|  44.7k|                return std::make_tuple(pos.shift(), newn);
 1446|  44.7k|            }
 1447|  44.7k|            IMMER_CATCH (...) {
 1448|      0|                node_t::delete_inner_r(newn, newc);
 1449|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1450|      0|            }
 1451|  44.7k|        }
 1452|  44.7k|    }
_ZN5immer6detail4rbts18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE11visit_innerIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_m:
 1414|  2.19k|    {
 1415|  2.19k|        auto idx                = pos.subindex(first);
 1416|  2.19k|        auto count              = pos.count();
 1417|  2.19k|        auto left_size          = pos.size_before(idx);
 1418|  2.19k|        auto child_size         = pos.size_sbh(idx, left_size);
 1419|  2.19k|        auto dropped_size       = first;
 1420|  2.19k|        auto child_dropped_size = dropped_size - left_size;
 1421|  2.19k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1421:13): [Folded, False: 2.19k]
  |  Branch (1421:25): [True: 0, False: 0]
  |  Branch (1421:45): [True: 0, False: 0]
  ------------------
 1422|      0|            return pos.towards_sub_oh(this_t{}, first, idx);
 1423|  2.19k|        } else {
 1424|  2.19k|            using std::get;
 1425|  2.19k|            auto n    = pos.node();
 1426|  2.19k|            auto newc = count - idx;
 1427|  2.19k|            auto newn = node_t::make_inner_r_n(newc);
 1428|  2.19k|            IMMER_TRY {
  ------------------
  |  |   49|  2.19k|#define IMMER_TRY try
  ------------------
 1429|  2.19k|                auto subs     = pos.towards_sub_oh(no_collapse_t{}, first, idx);
 1430|  2.19k|                auto newr     = newn->relaxed();
 1431|  2.19k|                newr->d.count = count - idx;
 1432|  2.19k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1433|  2.19k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1433:17): [True: 2.19k, False: 0]
  ------------------
 1434|  2.19k|                pos.copy_sizes(idx + 1,
 1435|  2.19k|                               newr->d.count - 1,
 1436|  2.19k|                               newr->d.sizes[0],
 1437|  2.19k|                               newr->d.sizes + 1);
 1438|  2.19k|                assert(newr->d.sizes[newr->d.count - 1] ==
  ------------------
  |  Branch (1438:17): [True: 2.19k, False: 0]
  ------------------
 1439|  2.19k|                       pos.size() - dropped_size);
 1440|  2.19k|                newn->inner()[0] = get<1>(subs);
 1441|  2.19k|                std::copy(n->inner() + idx + 1,
 1442|  2.19k|                          n->inner() + count,
 1443|  2.19k|                          newn->inner() + 1);
 1444|  2.19k|                node_t::inc_nodes(newn->inner() + 1, newr->d.count - 1);
 1445|  2.19k|                return std::make_tuple(pos.shift(), newn);
 1446|  2.19k|            }
 1447|  2.19k|            IMMER_CATCH (...) {
 1448|      0|                node_t::delete_inner_r(newn, newc);
 1449|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1450|      0|            }
 1451|  2.19k|        }
 1452|  2.19k|    }
_ZN5immer6detail4rbts18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE10visit_leafIRNS1_13full_leaf_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_m:
 1456|  9.67k|    {
 1457|  9.67k|        auto n = node_t::copy_leaf(pos.node(), pos.index(first), pos.count());
 1458|  9.67k|        return std::make_tuple(0, n);
 1459|  9.67k|    }
_ZN5immer6detail4rbts18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE11visit_innerIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_m:
 1414|  5.62k|    {
 1415|  5.62k|        auto idx                = pos.subindex(first);
 1416|  5.62k|        auto count              = pos.count();
 1417|  5.62k|        auto left_size          = pos.size_before(idx);
 1418|  5.62k|        auto child_size         = pos.size_sbh(idx, left_size);
 1419|  5.62k|        auto dropped_size       = first;
 1420|  5.62k|        auto child_dropped_size = dropped_size - left_size;
 1421|  5.62k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1421:13): [Folded, False: 5.62k]
  |  Branch (1421:25): [True: 0, False: 0]
  |  Branch (1421:45): [True: 0, False: 0]
  ------------------
 1422|      0|            return pos.towards_sub_oh(this_t{}, first, idx);
 1423|  5.62k|        } else {
 1424|  5.62k|            using std::get;
 1425|  5.62k|            auto n    = pos.node();
 1426|  5.62k|            auto newc = count - idx;
 1427|  5.62k|            auto newn = node_t::make_inner_r_n(newc);
 1428|  5.62k|            IMMER_TRY {
  ------------------
  |  |   49|  5.62k|#define IMMER_TRY try
  ------------------
 1429|  5.62k|                auto subs     = pos.towards_sub_oh(no_collapse_t{}, first, idx);
 1430|  5.62k|                auto newr     = newn->relaxed();
 1431|  5.62k|                newr->d.count = count - idx;
 1432|  5.62k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1433|  5.62k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1433:17): [True: 5.62k, False: 0]
  ------------------
 1434|  5.62k|                pos.copy_sizes(idx + 1,
 1435|  5.62k|                               newr->d.count - 1,
 1436|  5.62k|                               newr->d.sizes[0],
 1437|  5.62k|                               newr->d.sizes + 1);
 1438|  5.62k|                assert(newr->d.sizes[newr->d.count - 1] ==
  ------------------
  |  Branch (1438:17): [True: 5.62k, False: 0]
  ------------------
 1439|  5.62k|                       pos.size() - dropped_size);
 1440|  5.62k|                newn->inner()[0] = get<1>(subs);
 1441|  5.62k|                std::copy(n->inner() + idx + 1,
 1442|  5.62k|                          n->inner() + count,
 1443|  5.62k|                          newn->inner() + 1);
 1444|  5.62k|                node_t::inc_nodes(newn->inner() + 1, newr->d.count - 1);
 1445|  5.62k|                return std::make_tuple(pos.shift(), newn);
 1446|  5.62k|            }
 1447|  5.62k|            IMMER_CATCH (...) {
 1448|      0|                node_t::delete_inner_r(newn, newc);
 1449|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1450|      0|            }
 1451|  5.62k|        }
 1452|  5.62k|    }
_ZN5immer6detail4rbts18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE11visit_innerIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_m:
 1414|  9.83k|    {
 1415|  9.83k|        auto idx                = pos.subindex(first);
 1416|  9.83k|        auto count              = pos.count();
 1417|  9.83k|        auto left_size          = pos.size_before(idx);
 1418|  9.83k|        auto child_size         = pos.size_sbh(idx, left_size);
 1419|  9.83k|        auto dropped_size       = first;
 1420|  9.83k|        auto child_dropped_size = dropped_size - left_size;
 1421|  9.83k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1421:13): [True: 9.83k, Folded]
  |  Branch (1421:25): [True: 6.47k, False: 3.35k]
  |  Branch (1421:45): [True: 3.71k, False: 2.75k]
  ------------------
 1422|  3.71k|            return pos.towards_sub_oh(this_t{}, first, idx);
 1423|  6.11k|        } else {
 1424|  6.11k|            using std::get;
 1425|  6.11k|            auto n    = pos.node();
 1426|  6.11k|            auto newc = count - idx;
 1427|  6.11k|            auto newn = node_t::make_inner_r_n(newc);
 1428|  6.11k|            IMMER_TRY {
  ------------------
  |  |   49|  6.11k|#define IMMER_TRY try
  ------------------
 1429|  6.11k|                auto subs     = pos.towards_sub_oh(no_collapse_t{}, first, idx);
 1430|  6.11k|                auto newr     = newn->relaxed();
 1431|  6.11k|                newr->d.count = count - idx;
 1432|  6.11k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1433|  6.11k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1433:17): [True: 6.11k, False: 0]
  ------------------
 1434|  6.11k|                pos.copy_sizes(idx + 1,
 1435|  6.11k|                               newr->d.count - 1,
 1436|  6.11k|                               newr->d.sizes[0],
 1437|  6.11k|                               newr->d.sizes + 1);
 1438|  6.11k|                assert(newr->d.sizes[newr->d.count - 1] ==
  ------------------
  |  Branch (1438:17): [True: 6.11k, False: 0]
  ------------------
 1439|  6.11k|                       pos.size() - dropped_size);
 1440|  6.11k|                newn->inner()[0] = get<1>(subs);
 1441|  6.11k|                std::copy(n->inner() + idx + 1,
 1442|  6.11k|                          n->inner() + count,
 1443|  6.11k|                          newn->inner() + 1);
 1444|  6.11k|                node_t::inc_nodes(newn->inner() + 1, newr->d.count - 1);
 1445|  6.11k|                return std::make_tuple(pos.shift(), newn);
 1446|  6.11k|            }
 1447|  6.11k|            IMMER_CATCH (...) {
 1448|      0|                node_t::delete_inner_r(newn, newc);
 1449|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1450|      0|            }
 1451|  6.11k|        }
 1452|  9.83k|    }
_ZN5immer6detail4rbts18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE11visit_innerIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_m:
 1414|  1.63k|    {
 1415|  1.63k|        auto idx                = pos.subindex(first);
 1416|  1.63k|        auto count              = pos.count();
 1417|  1.63k|        auto left_size          = pos.size_before(idx);
 1418|  1.63k|        auto child_size         = pos.size_sbh(idx, left_size);
 1419|  1.63k|        auto dropped_size       = first;
 1420|  1.63k|        auto child_dropped_size = dropped_size - left_size;
 1421|  1.63k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1421:13): [True: 1.63k, Folded]
  |  Branch (1421:25): [True: 486, False: 1.15k]
  |  Branch (1421:45): [True: 277, False: 209]
  ------------------
 1422|    277|            return pos.towards_sub_oh(this_t{}, first, idx);
 1423|  1.36k|        } else {
 1424|  1.36k|            using std::get;
 1425|  1.36k|            auto n    = pos.node();
 1426|  1.36k|            auto newc = count - idx;
 1427|  1.36k|            auto newn = node_t::make_inner_r_n(newc);
 1428|  1.36k|            IMMER_TRY {
  ------------------
  |  |   49|  1.36k|#define IMMER_TRY try
  ------------------
 1429|  1.36k|                auto subs     = pos.towards_sub_oh(no_collapse_t{}, first, idx);
 1430|  1.36k|                auto newr     = newn->relaxed();
 1431|  1.36k|                newr->d.count = count - idx;
 1432|  1.36k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1433|  1.36k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1433:17): [True: 1.36k, False: 0]
  ------------------
 1434|  1.36k|                pos.copy_sizes(idx + 1,
 1435|  1.36k|                               newr->d.count - 1,
 1436|  1.36k|                               newr->d.sizes[0],
 1437|  1.36k|                               newr->d.sizes + 1);
 1438|  1.36k|                assert(newr->d.sizes[newr->d.count - 1] ==
  ------------------
  |  Branch (1438:17): [True: 1.36k, False: 0]
  ------------------
 1439|  1.36k|                       pos.size() - dropped_size);
 1440|  1.36k|                newn->inner()[0] = get<1>(subs);
 1441|  1.36k|                std::copy(n->inner() + idx + 1,
 1442|  1.36k|                          n->inner() + count,
 1443|  1.36k|                          newn->inner() + 1);
 1444|  1.36k|                node_t::inc_nodes(newn->inner() + 1, newr->d.count - 1);
 1445|  1.36k|                return std::make_tuple(pos.shift(), newn);
 1446|  1.36k|            }
 1447|  1.36k|            IMMER_CATCH (...) {
 1448|      0|                node_t::delete_inner_r(newn, newc);
 1449|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1450|      0|            }
 1451|  1.36k|        }
 1452|  1.63k|    }
_ZN5immer6detail4rbts12concat_treesINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_11relaxed_posIT_EEPSE_jSG_jm:
 2001|  8.22k|{
 2002|  8.22k|    return make_singleton_regular_sub_pos(ltail, ltcount)
 2003|  8.22k|        .visit(concat_trees_left_visitor<Node>{},
 2004|  8.22k|               empty_leaf_pos<Node>{},
 2005|  8.22k|               rroot,
 2006|  8.22k|               rshift,
 2007|  8.22k|               rsize)
 2008|  8.22k|        .realize();
 2009|  8.22k|}
_ZN5immer6detail4rbts25concat_trees_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_nodeIRNS1_25singleton_regular_sub_posISC_EENS1_14empty_leaf_posISC_EEJRPSC_RjRmEEENS1_17concat_center_posISC_EEOT_OT0_DpOT1_:
 1971|  8.22k|    {
 1972|  8.22k|        return visit_maybe_relaxed_sub(
 1973|  8.22k|            args..., concat_trees_right_visitor<Node>{}, lpos, tpos);
 1974|  8.22k|    }
_ZN5immer6detail4rbts26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_nodeIRNS1_11relaxed_posISC_EERNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1958|  5.87k|    {
 1959|  5.87k|        return concat_inners<Node>(lpos, tpos, rpos);
 1960|  5.87k|    }
_ZN5immer6detail4rbts13concat_innersINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EERNS1_11relaxed_posISC_EEEENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1872|  23.5k|{
 1873|  23.5k|    auto lshift = lpos.shift();
 1874|  23.5k|    auto rshift = rpos.shift();
 1875|  23.5k|    if (lshift > rshift) {
  ------------------
  |  Branch (1875:9): [True: 0, False: 23.5k]
  ------------------
 1876|      0|        auto cpos = lpos.last_sub(concat_left_visitor<Node>{}, tpos, rpos);
 1877|      0|        return concat_rebalance<Node>(lpos, cpos, null_sub_pos{});
 1878|  23.5k|    } else if (lshift < rshift) {
  ------------------
  |  Branch (1878:16): [True: 18.0k, False: 5.49k]
  ------------------
 1879|  18.0k|        auto cpos = rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1880|  18.0k|        return concat_rebalance<Node>(null_sub_pos{}, cpos, rpos);
 1881|  18.0k|    } else {
 1882|  5.49k|        assert(lshift == rshift);
  ------------------
  |  Branch (1882:9): [True: 5.49k, False: 0]
  ------------------
 1883|  5.49k|        assert(Node::bits_leaf == 0u || lshift > 0);
  ------------------
  |  Branch (1883:9): [Folded, False: 5.49k]
  |  Branch (1883:9): [True: 5.49k, False: 0]
  |  Branch (1883:9): [True: 5.49k, False: 0]
  ------------------
 1884|  5.49k|        auto cpos = lpos.last_sub(concat_both_visitor<Node>{}, tpos, rpos);
 1885|  5.49k|        return concat_rebalance<Node>(lpos, cpos, rpos);
 1886|  5.49k|    }
 1887|  23.5k|}
_ZN5immer6detail4rbts17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8each_subINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_DpOT0_:
 1512|  5.75M|    {
 1513|  5.75M|        if (shift_ == BL) {
  ------------------
  |  Branch (1513:13): [True: 539k, False: 5.21M]
  ------------------
 1514|   539k|            auto s = size_t{};
 1515|  2.14M|            for (auto i = count_t{0}; i < count_; ++i) {
  ------------------
  |  Branch (1515:39): [True: 1.60M, False: 539k]
  ------------------
 1516|  1.60M|                make_leaf_sub_pos(nodes_[i], sizes_[i] - s).visit(v, args...);
 1517|  1.60M|                s = sizes_[i];
 1518|  1.60M|            }
 1519|  5.21M|        } else {
 1520|  13.2M|            for (auto i = count_t{0}; i < count_; ++i)
  ------------------
  |  Branch (1520:39): [True: 8.02M, False: 5.21M]
  ------------------
 1521|  8.02M|                make_relaxed_pos(nodes_[i], shift_ - B, nodes_[i]->relaxed())
 1522|  8.02M|                    .visit(v, args...);
 1523|  5.21M|        }
 1524|  5.75M|    }
_ZN5immer6detail4rbts34concat_rebalance_plan_fill_visitor10visit_nodeIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21concat_rebalance_planILj2ELj2EEEEEvOT_RT0_:
 1733|  2.44M|    {
 1734|  2.44M|        auto count = p.count();
 1735|  2.44M|        assert(plan.n < Plan::max_children);
  ------------------
  |  Branch (1735:9): [True: 2.44M, False: 0]
  ------------------
 1736|  2.44M|        plan.counts[plan.n++] = count;
 1737|  2.44M|        plan.total += count;
 1738|  2.44M|    }
_ZN5immer6detail4rbts34concat_rebalance_plan_fill_visitor10visit_nodeIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21concat_rebalance_planILj2ELj2EEEEEvOT_RT0_:
 1733|  21.1M|    {
 1734|  21.1M|        auto count = p.count();
 1735|  21.1M|        assert(plan.n < Plan::max_children);
  ------------------
  |  Branch (1735:9): [True: 21.1M, False: 0]
  ------------------
 1736|  21.1M|        plan.counts[plan.n++] = count;
 1737|  21.1M|        plan.total += count;
 1738|  21.1M|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE7shuffleEj:
 1762|  5.75M|    {
 1763|       |        // gcc seems to not really understand this code... :(
 1764|  5.75M|#if !defined(_MSC_VER)
 1765|  5.75M|#pragma GCC diagnostic push
 1766|  5.75M|#pragma GCC diagnostic ignored "-Warray-bounds"
 1767|  5.75M|#endif
 1768|  5.75M|        constexpr count_t rrb_extras    = 2;
 1769|  5.75M|        constexpr count_t rrb_invariant = 1;
 1770|  5.75M|        const auto bits                 = shift == BL ? BL : B;
  ------------------
  |  Branch (1770:43): [True: 539k, False: 5.21M]
  ------------------
 1771|  5.75M|        const auto branches             = count_t{1} << bits;
 1772|  5.75M|        const auto optimal              = ((total - 1) >> bits) + 1;
 1773|  5.75M|        count_t i                       = 0;
 1774|  6.77M|        while (n >= optimal + rrb_extras) {
  ------------------
  |  Branch (1774:16): [True: 1.01M, False: 5.75M]
  ------------------
 1775|       |            // skip ok nodes
 1776|  1.67M|            while (counts[i] > branches - rrb_invariant)
  ------------------
  |  Branch (1776:20): [True: 657k, False: 1.01M]
  ------------------
 1777|   657k|                i++;
 1778|  1.01M|            assert(i < n);
  ------------------
  |  Branch (1778:13): [True: 1.01M, False: 0]
  ------------------
 1779|       |            // short node, redistribute
 1780|  1.01M|            auto remaining = counts[i];
 1781|  2.52M|            do {
 1782|  2.52M|                auto next  = counts[i + 1];
 1783|  2.52M|                auto count = std::min(remaining + next, branches);
 1784|  2.52M|                counts[i]  = count;
 1785|  2.52M|                assert(counts[i]);
  ------------------
  |  Branch (1785:17): [True: 2.52M, False: 0]
  ------------------
 1786|  2.52M|                remaining += next - count;
 1787|  2.52M|                ++i;
 1788|  2.52M|            } while (remaining > 0);
  ------------------
  |  Branch (1788:22): [True: 1.50M, False: 1.01M]
  ------------------
 1789|       |            // remove node
 1790|  1.01M|            std::move(counts + i + 1, counts + n, counts + i);
 1791|  1.01M|            --n;
 1792|  1.01M|            --i;
 1793|  1.01M|        }
 1794|  5.75M|#if !defined(_MSC_VER)
 1795|  5.75M|#pragma GCC diagnostic pop
 1796|  5.75M|#endif
 1797|  5.75M|    }
_ZNK5immer6detail4rbts17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
 1478|  11.5M|    auto shift() const { return shift_; }
_ZN5immer6detail4rbts13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEC2EjPjj:
 1577|  5.75M|        : curr_{counts}
 1578|  5.75M|        , n_{n}
 1579|  5.75M|        , result_{
 1580|  5.75M|              shift + B, node_t::make_inner_r_n(std::min(n_, branches<B>)), 0}
 1581|  5.75M|    {
 1582|  5.75M|    }
_ZN5immer6detail4rbts17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEC2EjPSC_m:
 1481|  5.75M|        : shift_{s}
 1482|  5.75M|        , count_{1}
 1483|  5.75M|        , nodes_{n0}
 1484|  5.75M|        , sizes_{s0}
 1485|  5.75M|    {
 1486|  5.75M|    }
_ZN5immer6detail4rbts17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8each_subINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_DpOT0_:
 1512|  5.75M|    {
 1513|  5.75M|        if (shift_ == BL) {
  ------------------
  |  Branch (1513:13): [True: 539k, False: 5.21M]
  ------------------
 1514|   539k|            auto s = size_t{};
 1515|  2.14M|            for (auto i = count_t{0}; i < count_; ++i) {
  ------------------
  |  Branch (1515:39): [True: 1.60M, False: 539k]
  ------------------
 1516|  1.60M|                make_leaf_sub_pos(nodes_[i], sizes_[i] - s).visit(v, args...);
 1517|  1.60M|                s = sizes_[i];
 1518|  1.60M|            }
 1519|  5.21M|        } else {
 1520|  13.2M|            for (auto i = count_t{0}; i < count_; ++i)
  ------------------
  |  Branch (1520:39): [True: 8.02M, False: 5.21M]
  ------------------
 1521|  8.02M|                make_relaxed_pos(nodes_[i], shift_ - B, nodes_[i]->relaxed())
 1522|  8.02M|                    .visit(v, args...);
 1523|  5.21M|        }
 1524|  5.75M|    }
_ZN5immer6detail4rbts21concat_merger_visitor10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_13concat_mergerISE_EEEEvOT_RT0_:
 1721|  2.44M|    {
 1722|  2.44M|        merger.merge_leaf(p);
 1723|  2.44M|    }
_ZN5immer6detail4rbts13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10merge_leafIRNS1_12leaf_sub_posISC_EEEEvOT_:
 1614|  2.44M|    {
 1615|  2.44M|        auto from       = p.node();
 1616|  2.44M|        auto from_size  = p.size();
 1617|  2.44M|        auto from_count = p.count();
 1618|  2.44M|        assert(from_size);
  ------------------
  |  Branch (1618:9): [True: 2.44M, False: 0]
  ------------------
 1619|  2.44M|        if (!to_ && *curr_ == from_count) {
  ------------------
  |  Branch (1619:13): [True: 2.42M, False: 25.4k]
  |  Branch (1619:21): [True: 2.40M, False: 15.6k]
  ------------------
 1620|  2.40M|            add_child(from, from_size);
 1621|  2.40M|            from->inc();
 1622|  2.40M|        } else {
 1623|  41.1k|            auto from_offset = count_t{};
 1624|  41.1k|            auto from_data   = from->leaf();
 1625|  50.2k|            do {
 1626|  50.2k|                if (!to_) {
  ------------------
  |  Branch (1626:21): [True: 24.8k, False: 25.4k]
  ------------------
 1627|  24.8k|                    to_        = node_t::make_leaf_n(*curr_);
 1628|  24.8k|                    to_offset_ = 0;
 1629|  24.8k|                }
 1630|  50.2k|                auto data = to_->leaf();
 1631|  50.2k|                auto to_copy =
 1632|  50.2k|                    std::min(from_count - from_offset, *curr_ - to_offset_);
 1633|  50.2k|                detail::uninitialized_copy(from_data + from_offset,
 1634|  50.2k|                                           from_data + from_offset + to_copy,
 1635|  50.2k|                                           data + to_offset_);
 1636|  50.2k|                to_offset_ += to_copy;
 1637|  50.2k|                from_offset += to_copy;
 1638|  50.2k|                if (*curr_ == to_offset_) {
  ------------------
  |  Branch (1638:21): [True: 24.8k, False: 25.4k]
  ------------------
 1639|  24.8k|                    add_child(to_, to_offset_);
 1640|  24.8k|                    to_ = nullptr;
 1641|  24.8k|                }
 1642|  50.2k|            } while (from_offset != from_count);
  ------------------
  |  Branch (1642:22): [True: 9.16k, False: 41.1k]
  ------------------
 1643|  41.1k|        }
 1644|  2.44M|    }
_ZN5immer6detail4rbts13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9add_childEPSC_m:
 1589|  25.2M|    {
 1590|  25.2M|        assert(size);
  ------------------
  |  Branch (1590:9): [True: 25.2M, False: 0]
  ------------------
 1591|  25.2M|        ++curr_;
 1592|  25.2M|        auto parent  = result_.nodes_[result_.count_ - 1];
 1593|  25.2M|        auto relaxed = parent->relaxed();
 1594|  25.2M|        if (relaxed->d.count == branches<B>) {
  ------------------
  |  Branch (1594:13): [True: 2.84M, False: 22.3M]
  ------------------
 1595|  2.84M|            assert(result_.count_ < result_t::max_children);
  ------------------
  |  Branch (1595:13): [True: 2.84M, False: 0]
  ------------------
 1596|  2.84M|            n_ -= branches<B>;
 1597|  2.84M|            parent  = node_t::make_inner_r_n(std::min(n_, branches<B>));
 1598|  2.84M|            relaxed = parent->relaxed();
 1599|  2.84M|            result_.nodes_[result_.count_] = parent;
 1600|  2.84M|            result_.sizes_[result_.count_] = result_.sizes_[result_.count_ - 1];
 1601|  2.84M|            assert(result_.sizes_[result_.count_]);
  ------------------
  |  Branch (1601:13): [True: 2.84M, False: 0]
  ------------------
 1602|  2.84M|            ++result_.count_;
 1603|  2.84M|        }
 1604|  25.2M|        auto idx = relaxed->d.count++;
 1605|  25.2M|        result_.sizes_[result_.count_ - 1] += size;
 1606|  25.2M|        assert(result_.sizes_[result_.count_ - 1]);
  ------------------
  |  Branch (1606:9): [True: 25.2M, False: 0]
  ------------------
 1607|  25.2M|        relaxed->d.sizes[idx] = size + (idx ? relaxed->d.sizes[idx - 1] : 0);
  ------------------
  |  Branch (1607:41): [True: 16.6M, False: 8.59M]
  ------------------
 1608|  25.2M|        assert(relaxed->d.sizes[idx]);
  ------------------
  |  Branch (1608:9): [True: 25.2M, False: 0]
  ------------------
 1609|  25.2M|        parent->inner()[idx] = p;
 1610|  25.2M|    };
_ZN5immer6detail4rbts21concat_merger_visitor11visit_innerIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_13concat_mergerISE_EEEEvOT_RT0_:
 1715|  21.1M|    {
 1716|  21.1M|        merger.merge_inner(p);
 1717|  21.1M|    }
_ZN5immer6detail4rbts13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11merge_innerIRNS1_11relaxed_posISC_EEEEvOT_:
 1648|  21.1M|    {
 1649|  21.1M|        auto from       = p.node();
 1650|  21.1M|        auto from_size  = p.size();
 1651|  21.1M|        auto from_count = p.count();
 1652|  21.1M|        assert(from_size);
  ------------------
  |  Branch (1652:9): [True: 21.1M, False: 0]
  ------------------
 1653|  21.1M|        if (!to_ && *curr_ == from_count) {
  ------------------
  |  Branch (1653:13): [True: 18.7M, False: 2.36M]
  |  Branch (1653:21): [True: 17.8M, False: 990k]
  ------------------
 1654|  17.8M|            add_child(from, from_size);
 1655|  17.8M|            from->inc();
 1656|  17.8M|        } else {
 1657|  3.35M|            auto from_offset = count_t{};
 1658|  3.35M|            auto from_data   = from->inner();
 1659|  4.72M|            do {
 1660|  4.72M|                if (!to_) {
  ------------------
  |  Branch (1660:21): [True: 2.35M, False: 2.36M]
  ------------------
 1661|  2.35M|                    to_        = node_t::make_inner_r_n(*curr_);
 1662|  2.35M|                    to_offset_ = 0;
 1663|  2.35M|                    to_size_   = 0;
 1664|  2.35M|                }
 1665|  4.72M|                auto data = to_->inner();
 1666|  4.72M|                auto to_copy =
 1667|  4.72M|                    std::min(from_count - from_offset, *curr_ - to_offset_);
 1668|  4.72M|                std::copy(from_data + from_offset,
 1669|  4.72M|                          from_data + from_offset + to_copy,
 1670|  4.72M|                          data + to_offset_);
 1671|  4.72M|                node_t::inc_nodes(from_data + from_offset, to_copy);
 1672|  4.72M|                auto sizes = to_->relaxed()->d.sizes;
 1673|  4.72M|                p.copy_sizes(
 1674|  4.72M|                    from_offset, to_copy, to_size_, sizes + to_offset_);
 1675|  4.72M|                to_offset_ += to_copy;
 1676|  4.72M|                from_offset += to_copy;
 1677|  4.72M|                to_size_ = sizes[to_offset_ - 1];
 1678|  4.72M|                assert(to_size_);
  ------------------
  |  Branch (1678:17): [True: 4.72M, False: 0]
  ------------------
 1679|  4.72M|                if (*curr_ == to_offset_) {
  ------------------
  |  Branch (1679:21): [True: 2.35M, False: 2.36M]
  ------------------
 1680|  2.35M|                    to_->relaxed()->d.count = to_offset_;
 1681|  2.35M|                    add_child(to_, to_size_);
 1682|  2.35M|                    to_ = nullptr;
 1683|  2.35M|                }
 1684|  4.72M|            } while (from_offset != from_count);
  ------------------
  |  Branch (1684:22): [True: 1.36M, False: 3.35M]
  ------------------
 1685|  3.35M|        }
 1686|  21.1M|    }
_ZNK5immer6detail4rbts13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE6finishEv:
 1689|  5.75M|    {
 1690|  5.75M|        assert(!to_);
  ------------------
  |  Branch (1690:9): [True: 5.75M, False: 0]
  ------------------
 1691|  5.75M|        return result_;
 1692|  5.75M|    }
_ZN5immer6detail4rbts17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8each_subINS1_11dec_visitorEJEEEvT_DpOT0_:
 1512|  5.75M|    {
 1513|  5.75M|        if (shift_ == BL) {
  ------------------
  |  Branch (1513:13): [True: 539k, False: 5.21M]
  ------------------
 1514|   539k|            auto s = size_t{};
 1515|  2.14M|            for (auto i = count_t{0}; i < count_; ++i) {
  ------------------
  |  Branch (1515:39): [True: 1.60M, False: 539k]
  ------------------
 1516|  1.60M|                make_leaf_sub_pos(nodes_[i], sizes_[i] - s).visit(v, args...);
 1517|  1.60M|                s = sizes_[i];
 1518|  1.60M|            }
 1519|  5.21M|        } else {
 1520|  13.2M|            for (auto i = count_t{0}; i < count_; ++i)
  ------------------
  |  Branch (1520:39): [True: 8.02M, False: 5.21M]
  ------------------
 1521|  8.02M|                make_relaxed_pos(nodes_[i], shift_ - B, nodes_[i]->relaxed())
 1522|  8.02M|                    .visit(v, args...);
 1523|  5.21M|        }
 1524|  5.75M|    }
_ZN5immer6detail4rbts17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEC2EjPSC_mSE_mSE_m:
 1503|   530k|        : shift_{s}
 1504|   530k|        , count_{3}
 1505|   530k|        , nodes_{n0, n1, n2}
 1506|   530k|        , sizes_{s0, s0 + s1, s0 + s1 + s2}
 1507|   530k|    {
 1508|   530k|    }
_ZN5immer6detail4rbts17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEC2EjPSC_mSE_m:
 1489|  8.22k|        : shift_{s}
 1490|  8.22k|        , count_{2}
 1491|  8.22k|        , nodes_{n0, n1}
 1492|  8.22k|        , sizes_{s0, s0 + s1}
 1493|  8.22k|    {
 1494|  8.22k|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_11relaxed_posISC_EERNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1917|  17.6k|    {
 1918|  17.6k|        return concat_inners<Node>(lpos, tpos, rpos);
 1919|  17.6k|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_15regular_sub_posISC_EERNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1917|    383|    {
 1918|    383|        return concat_inners<Node>(lpos, tpos, rpos);
 1919|    383|    }
_ZN5immer6detail4rbts13concat_innersINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EERNS1_15regular_sub_posISC_EEEENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1872|  2.73k|{
 1873|  2.73k|    auto lshift = lpos.shift();
 1874|  2.73k|    auto rshift = rpos.shift();
 1875|  2.73k|    if (lshift > rshift) {
  ------------------
  |  Branch (1875:9): [True: 0, False: 2.73k]
  ------------------
 1876|      0|        auto cpos = lpos.last_sub(concat_left_visitor<Node>{}, tpos, rpos);
 1877|      0|        return concat_rebalance<Node>(lpos, cpos, null_sub_pos{});
 1878|  2.73k|    } else if (lshift < rshift) {
  ------------------
  |  Branch (1878:16): [True: 679, False: 2.05k]
  ------------------
 1879|    679|        auto cpos = rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1880|    679|        return concat_rebalance<Node>(null_sub_pos{}, cpos, rpos);
 1881|  2.05k|    } else {
 1882|  2.05k|        assert(lshift == rshift);
  ------------------
  |  Branch (1882:9): [True: 2.05k, False: 0]
  ------------------
 1883|  2.05k|        assert(Node::bits_leaf == 0u || lshift > 0);
  ------------------
  |  Branch (1883:9): [Folded, False: 2.05k]
  |  Branch (1883:9): [True: 2.05k, False: 0]
  |  Branch (1883:9): [True: 2.05k, False: 0]
  ------------------
 1884|  2.05k|        auto cpos = lpos.last_sub(concat_both_visitor<Node>{}, tpos, rpos);
 1885|  2.05k|        return concat_rebalance<Node>(lpos, cpos, rpos);
 1886|  2.05k|    }
 1887|  2.73k|}
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_8full_posISC_EERNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1917|  1.06k|    {
 1918|  1.06k|        return concat_inners<Node>(lpos, tpos, rpos);
 1919|  1.06k|    }
_ZN5immer6detail4rbts13concat_innersINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EERNS1_8full_posISC_EEEENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1872|  1.06k|{
 1873|  1.06k|    auto lshift = lpos.shift();
 1874|  1.06k|    auto rshift = rpos.shift();
 1875|  1.06k|    if (lshift > rshift) {
  ------------------
  |  Branch (1875:9): [True: 0, False: 1.06k]
  ------------------
 1876|      0|        auto cpos = lpos.last_sub(concat_left_visitor<Node>{}, tpos, rpos);
 1877|      0|        return concat_rebalance<Node>(lpos, cpos, null_sub_pos{});
 1878|  1.06k|    } else if (lshift < rshift) {
  ------------------
  |  Branch (1878:16): [True: 384, False: 679]
  ------------------
 1879|    384|        auto cpos = rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1880|    384|        return concat_rebalance<Node>(null_sub_pos{}, cpos, rpos);
 1881|    679|    } else {
 1882|    679|        assert(lshift == rshift);
  ------------------
  |  Branch (1882:9): [True: 679, False: 0]
  ------------------
 1883|    679|        assert(Node::bits_leaf == 0u || lshift > 0);
  ------------------
  |  Branch (1883:9): [Folded, False: 679]
  |  Branch (1883:9): [True: 679, False: 0]
  |  Branch (1883:9): [True: 679, False: 0]
  ------------------
 1884|    679|        auto cpos = lpos.last_sub(concat_both_visitor<Node>{}, tpos, rpos);
 1885|    679|        return concat_rebalance<Node>(lpos, cpos, rpos);
 1886|    679|    }
 1887|  1.06k|}
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_12null_sub_posERNS1_17concat_center_posISC_EERNS1_8full_posISC_EEEENSE_IT_EEOT0_OT1_OT2_:
 1823|    938|{
 1824|    938|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|    938|    plan.fill(lpos, cpos, rpos);
 1826|    938|    plan.shuffle(cpos.shift());
 1827|    938|    IMMER_TRY {
  ------------------
  |  |   49|    938|#define IMMER_TRY try
  ------------------
 1828|    938|        return plan.merge(lpos, cpos, rpos);
 1829|    938|    }
 1830|    938|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|    938|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_12null_sub_posERNS1_17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_8full_posISH_EEEEvOT_OT0_OT1_:
 1752|    938|    {
 1753|    938|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 938, False: 0]
  ------------------
 1754|    938|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 938, False: 0]
  ------------------
 1755|    938|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|    938|        lpos.each_left_sub(visitor_t{}, *this);
 1757|    938|        cpos.each_sub(visitor_t{}, *this);
 1758|    938|        rpos.each_right_sub(visitor_t{}, *this);
 1759|    938|    }
_ZN5immer6detail4rbts34concat_rebalance_plan_fill_visitor10visit_nodeIRNS1_13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21concat_rebalance_planILj2ELj2EEEEEvOT_RT0_:
 1733|  1.16M|    {
 1734|  1.16M|        auto count = p.count();
 1735|  1.16M|        assert(plan.n < Plan::max_children);
  ------------------
  |  Branch (1735:9): [True: 1.16M, False: 0]
  ------------------
 1736|  1.16M|        plan.counts[plan.n++] = count;
 1737|  1.16M|        plan.total += count;
 1738|  1.16M|    }
_ZN5immer6detail4rbts34concat_rebalance_plan_fill_visitor10visit_nodeIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21concat_rebalance_planILj2ELj2EEEEEvOT_RT0_:
 1733|   743k|    {
 1734|   743k|        auto count = p.count();
 1735|   743k|        assert(plan.n < Plan::max_children);
  ------------------
  |  Branch (1735:9): [True: 743k, False: 0]
  ------------------
 1736|   743k|        plan.counts[plan.n++] = count;
 1737|   743k|        plan.total += count;
 1738|   743k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_12null_sub_posERNS1_17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_8full_posISH_EEEENS7_INSt3__15decayIT0_E4type6node_tEEEOT_OSP_OT1_:
 1802|    938|    {
 1803|    938|        using node_t    = node_type<CPos>;
 1804|    938|        using merger_t  = concat_merger<node_t>;
 1805|    938|        using visitor_t = concat_merger_visitor;
 1806|    938|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|    938|        IMMER_TRY {
  ------------------
  |  |   49|    938|#define IMMER_TRY try
  ------------------
 1808|    938|            lpos.each_left_sub(visitor_t{}, merger);
 1809|    938|            cpos.each_sub(visitor_t{}, merger);
 1810|    938|            rpos.each_right_sub(visitor_t{}, merger);
 1811|    938|            cpos.each_sub(dec_visitor{});
 1812|    938|            return merger.finish();
 1813|    938|        }
 1814|    938|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|    938|    }
_ZN5immer6detail4rbts21concat_merger_visitor10visit_leafIRNS1_13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_13concat_mergerISE_EEEEvOT_RT0_:
 1721|  1.16M|    {
 1722|  1.16M|        merger.merge_leaf(p);
 1723|  1.16M|    }
_ZN5immer6detail4rbts13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10merge_leafIRNS1_13full_leaf_posISC_EEEEvOT_:
 1614|  1.16M|    {
 1615|  1.16M|        auto from       = p.node();
 1616|  1.16M|        auto from_size  = p.size();
 1617|  1.16M|        auto from_count = p.count();
 1618|  1.16M|        assert(from_size);
  ------------------
  |  Branch (1618:9): [True: 1.16M, False: 0]
  ------------------
 1619|  1.16M|        if (!to_ && *curr_ == from_count) {
  ------------------
  |  Branch (1619:13): [True: 1.16M, False: 0]
  |  Branch (1619:21): [True: 1.16M, False: 0]
  ------------------
 1620|  1.16M|            add_child(from, from_size);
 1621|  1.16M|            from->inc();
 1622|  1.16M|        } else {
 1623|      0|            auto from_offset = count_t{};
 1624|      0|            auto from_data   = from->leaf();
 1625|      0|            do {
 1626|      0|                if (!to_) {
  ------------------
  |  Branch (1626:21): [True: 0, False: 0]
  ------------------
 1627|      0|                    to_        = node_t::make_leaf_n(*curr_);
 1628|      0|                    to_offset_ = 0;
 1629|      0|                }
 1630|      0|                auto data = to_->leaf();
 1631|      0|                auto to_copy =
 1632|      0|                    std::min(from_count - from_offset, *curr_ - to_offset_);
 1633|      0|                detail::uninitialized_copy(from_data + from_offset,
 1634|      0|                                           from_data + from_offset + to_copy,
 1635|      0|                                           data + to_offset_);
 1636|      0|                to_offset_ += to_copy;
 1637|      0|                from_offset += to_copy;
 1638|      0|                if (*curr_ == to_offset_) {
  ------------------
  |  Branch (1638:21): [True: 0, False: 0]
  ------------------
 1639|      0|                    add_child(to_, to_offset_);
 1640|      0|                    to_ = nullptr;
 1641|      0|                }
 1642|      0|            } while (from_offset != from_count);
  ------------------
  |  Branch (1642:22): [True: 0, False: 0]
  ------------------
 1643|      0|        }
 1644|  1.16M|    }
_ZN5immer6detail4rbts21concat_merger_visitor11visit_innerIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_13concat_mergerISE_EEEEvOT_RT0_:
 1715|   743k|    {
 1716|   743k|        merger.merge_inner(p);
 1717|   743k|    }
_ZN5immer6detail4rbts13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11merge_innerIRNS1_8full_posISC_EEEEvOT_:
 1648|   743k|    {
 1649|   743k|        auto from       = p.node();
 1650|   743k|        auto from_size  = p.size();
 1651|   743k|        auto from_count = p.count();
 1652|   743k|        assert(from_size);
  ------------------
  |  Branch (1652:9): [True: 743k, False: 0]
  ------------------
 1653|   743k|        if (!to_ && *curr_ == from_count) {
  ------------------
  |  Branch (1653:13): [True: 743k, False: 0]
  |  Branch (1653:21): [True: 743k, False: 0]
  ------------------
 1654|   743k|            add_child(from, from_size);
 1655|   743k|            from->inc();
 1656|   743k|        } else {
 1657|      0|            auto from_offset = count_t{};
 1658|      0|            auto from_data   = from->inner();
 1659|      0|            do {
 1660|      0|                if (!to_) {
  ------------------
  |  Branch (1660:21): [True: 0, False: 0]
  ------------------
 1661|      0|                    to_        = node_t::make_inner_r_n(*curr_);
 1662|      0|                    to_offset_ = 0;
 1663|      0|                    to_size_   = 0;
 1664|      0|                }
 1665|      0|                auto data = to_->inner();
 1666|      0|                auto to_copy =
 1667|      0|                    std::min(from_count - from_offset, *curr_ - to_offset_);
 1668|      0|                std::copy(from_data + from_offset,
 1669|      0|                          from_data + from_offset + to_copy,
 1670|      0|                          data + to_offset_);
 1671|      0|                node_t::inc_nodes(from_data + from_offset, to_copy);
 1672|      0|                auto sizes = to_->relaxed()->d.sizes;
 1673|      0|                p.copy_sizes(
 1674|      0|                    from_offset, to_copy, to_size_, sizes + to_offset_);
 1675|      0|                to_offset_ += to_copy;
 1676|      0|                from_offset += to_copy;
 1677|      0|                to_size_ = sizes[to_offset_ - 1];
 1678|      0|                assert(to_size_);
  ------------------
  |  Branch (1678:17): [True: 0, False: 0]
  ------------------
 1679|      0|                if (*curr_ == to_offset_) {
  ------------------
  |  Branch (1679:21): [True: 0, False: 0]
  ------------------
 1680|      0|                    to_->relaxed()->d.count = to_offset_;
 1681|      0|                    add_child(to_, to_size_);
 1682|      0|                    to_ = nullptr;
 1683|      0|                }
 1684|      0|            } while (from_offset != from_count);
  ------------------
  |  Branch (1684:22): [True: 0, False: 0]
  ------------------
 1685|      0|        }
 1686|   743k|    }
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EERNS1_8full_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1944|    679|    {
 1945|    679|        return rpos.first_sub_leaf(concat_right_visitor<Node>{}, lpos, tpos);
 1946|    679|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_13full_leaf_posISC_EERNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1924|  2.73k|    {
 1925|  2.73k|        return concat_leafs<Node>(lpos, tpos, rpos);
 1926|  2.73k|    }
_ZN5immer6detail4rbts12concat_leafsINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EERNS1_13full_leaf_posISC_EEEENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1838|  2.73k|{
 1839|  2.73k|    static_assert(Node::bits >= 2, "");
 1840|  2.73k|    assert(lpos.shift() == tpos.shift());
  ------------------
  |  Branch (1840:5): [True: 2.73k, False: 0]
  ------------------
 1841|  2.73k|    assert(lpos.shift() == rpos.shift());
  ------------------
  |  Branch (1841:5): [True: 2.73k, False: 0]
  ------------------
 1842|  2.73k|    assert(lpos.shift() == 0);
  ------------------
  |  Branch (1842:5): [True: 2.73k, False: 0]
  ------------------
 1843|  2.73k|    if (tpos.count() > 0)
  ------------------
  |  Branch (1843:9): [True: 0, False: 2.73k]
  ------------------
 1844|      0|        return {
 1845|      0|            Node::bits_leaf,
 1846|      0|            lpos.node()->inc(),
 1847|      0|            lpos.count(),
 1848|      0|            tpos.node()->inc(),
 1849|      0|            tpos.count(),
 1850|      0|            rpos.node()->inc(),
 1851|      0|            rpos.count(),
 1852|      0|        };
 1853|  2.73k|    else
 1854|  2.73k|        return {
 1855|  2.73k|            Node::bits_leaf,
 1856|  2.73k|            lpos.node()->inc(),
 1857|  2.73k|            lpos.count(),
 1858|  2.73k|            rpos.node()->inc(),
 1859|  2.73k|            rpos.count(),
 1860|  2.73k|        };
 1861|  2.73k|}
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_25singleton_regular_sub_posISC_EERNS1_17concat_center_posISC_EERNS1_8full_posISC_EEEENSG_IT_EEOT0_OT1_OT2_:
 1823|    679|{
 1824|    679|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|    679|    plan.fill(lpos, cpos, rpos);
 1826|    679|    plan.shuffle(cpos.shift());
 1827|    679|    IMMER_TRY {
  ------------------
  |  |   49|    679|#define IMMER_TRY try
  ------------------
 1828|    679|        return plan.merge(lpos, cpos, rpos);
 1829|    679|    }
 1830|    679|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|    679|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_8full_posISF_EEEEvOT_OT0_OT1_:
 1752|    679|    {
 1753|    679|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 679, False: 0]
  ------------------
 1754|    679|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 679, False: 0]
  ------------------
 1755|    679|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|    679|        lpos.each_left_sub(visitor_t{}, *this);
 1757|    679|        cpos.each_sub(visitor_t{}, *this);
 1758|    679|        rpos.each_right_sub(visitor_t{}, *this);
 1759|    679|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_8full_posISF_EEEENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSQ_OT1_:
 1802|    679|    {
 1803|    679|        using node_t    = node_type<CPos>;
 1804|    679|        using merger_t  = concat_merger<node_t>;
 1805|    679|        using visitor_t = concat_merger_visitor;
 1806|    679|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|    679|        IMMER_TRY {
  ------------------
  |  |   49|    679|#define IMMER_TRY try
  ------------------
 1808|    679|            lpos.each_left_sub(visitor_t{}, merger);
 1809|    679|            cpos.each_sub(visitor_t{}, merger);
 1810|    679|            rpos.each_right_sub(visitor_t{}, merger);
 1811|    679|            cpos.each_sub(dec_visitor{});
 1812|    679|            return merger.finish();
 1813|    679|        }
 1814|    679|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|    679|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_12null_sub_posERNS1_17concat_center_posISC_EERNS1_15regular_sub_posISC_EEEENSE_IT_EEOT0_OT1_OT2_:
 1823|  2.20k|{
 1824|  2.20k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|  2.20k|    plan.fill(lpos, cpos, rpos);
 1826|  2.20k|    plan.shuffle(cpos.shift());
 1827|  2.20k|    IMMER_TRY {
  ------------------
  |  |   49|  2.20k|#define IMMER_TRY try
  ------------------
 1828|  2.20k|        return plan.merge(lpos, cpos, rpos);
 1829|  2.20k|    }
 1830|  2.20k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|  2.20k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_12null_sub_posERNS1_17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_15regular_sub_posISH_EEEEvOT_OT0_OT1_:
 1752|  2.20k|    {
 1753|  2.20k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 2.20k, False: 0]
  ------------------
 1754|  2.20k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 2.20k, False: 0]
  ------------------
 1755|  2.20k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|  2.20k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|  2.20k|        cpos.each_sub(visitor_t{}, *this);
 1758|  2.20k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|  2.20k|    }
_ZN5immer6detail4rbts34concat_rebalance_plan_fill_visitor10visit_nodeIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21concat_rebalance_planILj2ELj2EEEEEvOT_RT0_:
 1733|   732k|    {
 1734|   732k|        auto count = p.count();
 1735|   732k|        assert(plan.n < Plan::max_children);
  ------------------
  |  Branch (1735:9): [True: 732k, False: 0]
  ------------------
 1736|   732k|        plan.counts[plan.n++] = count;
 1737|   732k|        plan.total += count;
 1738|   732k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_12null_sub_posERNS1_17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_15regular_sub_posISH_EEEENS7_INSt3__15decayIT0_E4type6node_tEEEOT_OSP_OT1_:
 1802|  2.20k|    {
 1803|  2.20k|        using node_t    = node_type<CPos>;
 1804|  2.20k|        using merger_t  = concat_merger<node_t>;
 1805|  2.20k|        using visitor_t = concat_merger_visitor;
 1806|  2.20k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|  2.20k|        IMMER_TRY {
  ------------------
  |  |   49|  2.20k|#define IMMER_TRY try
  ------------------
 1808|  2.20k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|  2.20k|            cpos.each_sub(visitor_t{}, merger);
 1810|  2.20k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|  2.20k|            cpos.each_sub(dec_visitor{});
 1812|  2.20k|            return merger.finish();
 1813|  2.20k|        }
 1814|  2.20k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|  2.20k|    }
_ZN5immer6detail4rbts21concat_merger_visitor11visit_innerIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_13concat_mergerISE_EEEEvOT_RT0_:
 1715|   732k|    {
 1716|   732k|        merger.merge_inner(p);
 1717|   732k|    }
_ZN5immer6detail4rbts13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11merge_innerIRNS1_15regular_sub_posISC_EEEEvOT_:
 1648|   732k|    {
 1649|   732k|        auto from       = p.node();
 1650|   732k|        auto from_size  = p.size();
 1651|   732k|        auto from_count = p.count();
 1652|   732k|        assert(from_size);
  ------------------
  |  Branch (1652:9): [True: 732k, False: 0]
  ------------------
 1653|   732k|        if (!to_ && *curr_ == from_count) {
  ------------------
  |  Branch (1653:13): [True: 599k, False: 133k]
  |  Branch (1653:21): [True: 599k, False: 0]
  ------------------
 1654|   599k|            add_child(from, from_size);
 1655|   599k|            from->inc();
 1656|   599k|        } else {
 1657|   133k|            auto from_offset = count_t{};
 1658|   133k|            auto from_data   = from->inner();
 1659|   267k|            do {
 1660|   267k|                if (!to_) {
  ------------------
  |  Branch (1660:21): [True: 133k, False: 133k]
  ------------------
 1661|   133k|                    to_        = node_t::make_inner_r_n(*curr_);
 1662|   133k|                    to_offset_ = 0;
 1663|   133k|                    to_size_   = 0;
 1664|   133k|                }
 1665|   267k|                auto data = to_->inner();
 1666|   267k|                auto to_copy =
 1667|   267k|                    std::min(from_count - from_offset, *curr_ - to_offset_);
 1668|   267k|                std::copy(from_data + from_offset,
 1669|   267k|                          from_data + from_offset + to_copy,
 1670|   267k|                          data + to_offset_);
 1671|   267k|                node_t::inc_nodes(from_data + from_offset, to_copy);
 1672|   267k|                auto sizes = to_->relaxed()->d.sizes;
 1673|   267k|                p.copy_sizes(
 1674|   267k|                    from_offset, to_copy, to_size_, sizes + to_offset_);
 1675|   267k|                to_offset_ += to_copy;
 1676|   267k|                from_offset += to_copy;
 1677|   267k|                to_size_ = sizes[to_offset_ - 1];
 1678|   267k|                assert(to_size_);
  ------------------
  |  Branch (1678:17): [True: 267k, False: 0]
  ------------------
 1679|   267k|                if (*curr_ == to_offset_) {
  ------------------
  |  Branch (1679:21): [True: 133k, False: 133k]
  ------------------
 1680|   133k|                    to_->relaxed()->d.count = to_offset_;
 1681|   133k|                    add_child(to_, to_size_);
 1682|   133k|                    to_ = nullptr;
 1683|   133k|                }
 1684|   267k|            } while (from_offset != from_count);
  ------------------
  |  Branch (1684:22): [True: 133k, False: 133k]
  ------------------
 1685|   133k|        }
 1686|   732k|    }
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EERNS1_15regular_sub_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1944|  2.05k|    {
 1945|  2.05k|        return rpos.first_sub_leaf(concat_right_visitor<Node>{}, lpos, tpos);
 1946|  2.05k|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EESH_RNS1_14empty_leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1924|  5.49k|    {
 1925|  5.49k|        return concat_leafs<Node>(lpos, tpos, rpos);
 1926|  5.49k|    }
_ZN5immer6detail4rbts12concat_leafsINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EESF_EENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1838|  5.49k|{
 1839|  5.49k|    static_assert(Node::bits >= 2, "");
 1840|  5.49k|    assert(lpos.shift() == tpos.shift());
  ------------------
  |  Branch (1840:5): [True: 5.49k, False: 0]
  ------------------
 1841|  5.49k|    assert(lpos.shift() == rpos.shift());
  ------------------
  |  Branch (1841:5): [True: 5.49k, False: 0]
  ------------------
 1842|  5.49k|    assert(lpos.shift() == 0);
  ------------------
  |  Branch (1842:5): [True: 5.49k, False: 0]
  ------------------
 1843|  5.49k|    if (tpos.count() > 0)
  ------------------
  |  Branch (1843:9): [True: 0, False: 5.49k]
  ------------------
 1844|      0|        return {
 1845|      0|            Node::bits_leaf,
 1846|      0|            lpos.node()->inc(),
 1847|      0|            lpos.count(),
 1848|      0|            tpos.node()->inc(),
 1849|      0|            tpos.count(),
 1850|      0|            rpos.node()->inc(),
 1851|      0|            rpos.count(),
 1852|      0|        };
 1853|  5.49k|    else
 1854|  5.49k|        return {
 1855|  5.49k|            Node::bits_leaf,
 1856|  5.49k|            lpos.node()->inc(),
 1857|  5.49k|            lpos.count(),
 1858|  5.49k|            rpos.node()->inc(),
 1859|  5.49k|            rpos.count(),
 1860|  5.49k|        };
 1861|  5.49k|}
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_25singleton_regular_sub_posISC_EERNS1_17concat_center_posISC_EERNS1_15regular_sub_posISC_EEEENSG_IT_EEOT0_OT1_OT2_:
 1823|  2.05k|{
 1824|  2.05k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|  2.05k|    plan.fill(lpos, cpos, rpos);
 1826|  2.05k|    plan.shuffle(cpos.shift());
 1827|  2.05k|    IMMER_TRY {
  ------------------
  |  |   49|  2.05k|#define IMMER_TRY try
  ------------------
 1828|  2.05k|        return plan.merge(lpos, cpos, rpos);
 1829|  2.05k|    }
 1830|  2.05k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|  2.05k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_15regular_sub_posISF_EEEEvOT_OT0_OT1_:
 1752|  2.05k|    {
 1753|  2.05k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 2.05k, False: 0]
  ------------------
 1754|  2.05k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 2.05k, False: 0]
  ------------------
 1755|  2.05k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|  2.05k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|  2.05k|        cpos.each_sub(visitor_t{}, *this);
 1758|  2.05k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|  2.05k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_15regular_sub_posISF_EEEENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSQ_OT1_:
 1802|  2.05k|    {
 1803|  2.05k|        using node_t    = node_type<CPos>;
 1804|  2.05k|        using merger_t  = concat_merger<node_t>;
 1805|  2.05k|        using visitor_t = concat_merger_visitor;
 1806|  2.05k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|  2.05k|        IMMER_TRY {
  ------------------
  |  |   49|  2.05k|#define IMMER_TRY try
  ------------------
 1808|  2.05k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|  2.05k|            cpos.each_sub(visitor_t{}, merger);
 1810|  2.05k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|  2.05k|            cpos.each_sub(dec_visitor{});
 1812|  2.05k|            return merger.finish();
 1813|  2.05k|        }
 1814|  2.05k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|  2.05k|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_12null_sub_posERNS1_17concat_center_posISC_EERNS1_11relaxed_posISC_EEEENSE_IT_EEOT0_OT1_OT2_:
 1823|   113k|{
 1824|   113k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|   113k|    plan.fill(lpos, cpos, rpos);
 1826|   113k|    plan.shuffle(cpos.shift());
 1827|   113k|    IMMER_TRY {
  ------------------
  |  |   49|   113k|#define IMMER_TRY try
  ------------------
 1828|   113k|        return plan.merge(lpos, cpos, rpos);
 1829|   113k|    }
 1830|   113k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|   113k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_12null_sub_posERNS1_17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISH_EEEEvOT_OT0_OT1_:
 1752|   113k|    {
 1753|   113k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 113k, False: 0]
  ------------------
 1754|   113k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 113k, False: 0]
  ------------------
 1755|   113k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|   113k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|   113k|        cpos.each_sub(visitor_t{}, *this);
 1758|   113k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|   113k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_12null_sub_posERNS1_17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISH_EEEENS7_INSt3__15decayIT0_E4type6node_tEEEOT_OSP_OT1_:
 1802|   113k|    {
 1803|   113k|        using node_t    = node_type<CPos>;
 1804|   113k|        using merger_t  = concat_merger<node_t>;
 1805|   113k|        using visitor_t = concat_merger_visitor;
 1806|   113k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|   113k|        IMMER_TRY {
  ------------------
  |  |   49|   113k|#define IMMER_TRY try
  ------------------
 1808|   113k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|   113k|            cpos.each_sub(visitor_t{}, merger);
 1810|   113k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|   113k|            cpos.each_sub(dec_visitor{});
 1812|   113k|            return merger.finish();
 1813|   113k|        }
 1814|   113k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|   113k|    }
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EERNS1_11relaxed_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1944|  5.49k|    {
 1945|  5.49k|        return rpos.first_sub_leaf(concat_right_visitor<Node>{}, lpos, tpos);
 1946|  5.49k|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_25singleton_regular_sub_posISC_EERNS1_17concat_center_posISC_EERNS1_11relaxed_posISC_EEEENSG_IT_EEOT0_OT1_OT2_:
 1823|  5.49k|{
 1824|  5.49k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|  5.49k|    plan.fill(lpos, cpos, rpos);
 1826|  5.49k|    plan.shuffle(cpos.shift());
 1827|  5.49k|    IMMER_TRY {
  ------------------
  |  |   49|  5.49k|#define IMMER_TRY try
  ------------------
 1828|  5.49k|        return plan.merge(lpos, cpos, rpos);
 1829|  5.49k|    }
 1830|  5.49k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|  5.49k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_11relaxed_posISF_EEEEvOT_OT0_OT1_:
 1752|  5.49k|    {
 1753|  5.49k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 5.49k, False: 0]
  ------------------
 1754|  5.49k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 5.49k, False: 0]
  ------------------
 1755|  5.49k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|  5.49k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|  5.49k|        cpos.each_sub(visitor_t{}, *this);
 1758|  5.49k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|  5.49k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_11relaxed_posISF_EEEENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSQ_OT1_:
 1802|  5.49k|    {
 1803|  5.49k|        using node_t    = node_type<CPos>;
 1804|  5.49k|        using merger_t  = concat_merger<node_t>;
 1805|  5.49k|        using visitor_t = concat_merger_visitor;
 1806|  5.49k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|  5.49k|        IMMER_TRY {
  ------------------
  |  |   49|  5.49k|#define IMMER_TRY try
  ------------------
 1808|  5.49k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|  5.49k|            cpos.each_sub(visitor_t{}, merger);
 1810|  5.49k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|  5.49k|            cpos.each_sub(dec_visitor{});
 1812|  5.49k|            return merger.finish();
 1813|  5.49k|        }
 1814|  5.49k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|  5.49k|    }
_ZN5immer6detail4rbts26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_nodeIRNS1_15regular_sub_posISC_EERNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1958|  2.35k|    {
 1959|  2.35k|        return concat_inners<Node>(lpos, tpos, rpos);
 1960|  2.35k|    }
_ZNO5immer6detail4rbts17concat_center_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7realizeEv:
 1527|   539k|    {
 1528|   539k|        if (count_ > 1) {
  ------------------
  |  Branch (1528:13): [True: 38.4k, False: 500k]
  ------------------
 1529|  38.4k|            IMMER_TRY {
  ------------------
  |  |   49|  38.4k|#define IMMER_TRY try
  ------------------
 1530|  38.4k|                auto result = node_t::make_inner_r_n(count_);
 1531|  38.4k|                auto r      = result->relaxed();
 1532|  38.4k|                r->d.count  = count_;
 1533|  38.4k|                std::copy(nodes_, nodes_ + count_, result->inner());
 1534|  38.4k|                std::copy(sizes_, sizes_ + count_, r->d.sizes);
 1535|  38.4k|                return {result, shift_, r};
 1536|  38.4k|            }
 1537|  38.4k|            IMMER_CATCH (...) {
 1538|      0|                each_sub(dec_visitor{});
 1539|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1540|      0|            }
 1541|   500k|        } else {
 1542|   500k|            assert(shift_ >= B + BL);
  ------------------
  |  Branch (1542:13): [True: 500k, False: 0]
  ------------------
 1543|   500k|            return {nodes_[0], shift_ - B, nodes_[0]->relaxed()};
 1544|   500k|        }
 1545|   539k|    }
_ZN5immer6detail4rbts12concat_treesINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_11relaxed_posIT_EEPSE_jmSG_jSG_jm:
 1986|   530k|{
 1987|   530k|    return visit_maybe_relaxed_sub(lroot,
 1988|   530k|                                   lshift,
 1989|   530k|                                   lsize,
 1990|   530k|                                   concat_trees_left_visitor<Node>{},
 1991|   530k|                                   make_leaf_pos(ltail, ltcount),
 1992|   530k|                                   rroot,
 1993|   530k|                                   rshift,
 1994|   530k|                                   rsize)
 1995|   530k|        .realize();
 1996|   530k|}
_ZN5immer6detail4rbts25concat_trees_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_nodeIRNS1_11relaxed_posISC_EENS1_8leaf_posISC_EEJRPSC_RjRmEEENS1_17concat_center_posISC_EEOT_OT0_DpOT1_:
 1971|   515k|    {
 1972|   515k|        return visit_maybe_relaxed_sub(
 1973|   515k|            args..., concat_trees_right_visitor<Node>{}, lpos, tpos);
 1974|   515k|    }
_ZN5immer6detail4rbts26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_nodeIRNS1_11relaxed_posISC_EESH_RNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1958|   500k|    {
 1959|   500k|        return concat_inners<Node>(lpos, tpos, rpos);
 1960|   500k|    }
_ZN5immer6detail4rbts13concat_innersINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EESF_EENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1872|  4.68M|{
 1873|  4.68M|    auto lshift = lpos.shift();
 1874|  4.68M|    auto rshift = rpos.shift();
 1875|  4.68M|    if (lshift > rshift) {
  ------------------
  |  Branch (1875:9): [True: 2.38M, False: 2.30M]
  ------------------
 1876|  2.38M|        auto cpos = lpos.last_sub(concat_left_visitor<Node>{}, tpos, rpos);
 1877|  2.38M|        return concat_rebalance<Node>(lpos, cpos, null_sub_pos{});
 1878|  2.38M|    } else if (lshift < rshift) {
  ------------------
  |  Branch (1878:16): [True: 83.3k, False: 2.21M]
  ------------------
 1879|  83.3k|        auto cpos = rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1880|  83.3k|        return concat_rebalance<Node>(null_sub_pos{}, cpos, rpos);
 1881|  2.21M|    } else {
 1882|  2.21M|        assert(lshift == rshift);
  ------------------
  |  Branch (1882:9): [True: 2.21M, False: 0]
  ------------------
 1883|  2.21M|        assert(Node::bits_leaf == 0u || lshift > 0);
  ------------------
  |  Branch (1883:9): [Folded, False: 2.21M]
  |  Branch (1883:9): [True: 2.21M, False: 0]
  |  Branch (1883:9): [True: 2.21M, False: 0]
  ------------------
 1884|  2.21M|        auto cpos = lpos.last_sub(concat_both_visitor<Node>{}, tpos, rpos);
 1885|  2.21M|        return concat_rebalance<Node>(lpos, cpos, rpos);
 1886|  2.21M|    }
 1887|  4.68M|}
_ZN5immer6detail4rbts19concat_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EESH_EENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1897|  2.38M|    {
 1898|  2.38M|        return concat_inners<Node>(lpos, tpos, rpos);
 1899|  2.38M|    }
_ZN5immer6detail4rbts19concat_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1897|  5.99k|    {
 1898|  5.99k|        return concat_inners<Node>(lpos, tpos, rpos);
 1899|  5.99k|    }
_ZN5immer6detail4rbts13concat_innersINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1872|   712k|{
 1873|   712k|    auto lshift = lpos.shift();
 1874|   712k|    auto rshift = rpos.shift();
 1875|   712k|    if (lshift > rshift) {
  ------------------
  |  Branch (1875:9): [True: 3.56k, False: 709k]
  ------------------
 1876|  3.56k|        auto cpos = lpos.last_sub(concat_left_visitor<Node>{}, tpos, rpos);
 1877|  3.56k|        return concat_rebalance<Node>(lpos, cpos, null_sub_pos{});
 1878|   709k|    } else if (lshift < rshift) {
  ------------------
  |  Branch (1878:16): [True: 11.9k, False: 697k]
  ------------------
 1879|  11.9k|        auto cpos = rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1880|  11.9k|        return concat_rebalance<Node>(null_sub_pos{}, cpos, rpos);
 1881|   697k|    } else {
 1882|   697k|        assert(lshift == rshift);
  ------------------
  |  Branch (1882:9): [True: 697k, False: 0]
  ------------------
 1883|   697k|        assert(Node::bits_leaf == 0u || lshift > 0);
  ------------------
  |  Branch (1883:9): [Folded, False: 697k]
  |  Branch (1883:9): [True: 697k, False: 0]
  |  Branch (1883:9): [True: 697k, False: 0]
  ------------------
 1884|   697k|        auto cpos = lpos.last_sub(concat_both_visitor<Node>{}, tpos, rpos);
 1885|   697k|        return concat_rebalance<Node>(lpos, cpos, rpos);
 1886|   697k|    }
 1887|   712k|}
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_15regular_sub_posISC_EERNS1_17concat_center_posISC_EENS1_12null_sub_posEEENSG_IT_EEOT0_OT1_OT2_:
 1823|  4.31k|{
 1824|  4.31k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|  4.31k|    plan.fill(lpos, cpos, rpos);
 1826|  4.31k|    plan.shuffle(cpos.shift());
 1827|  4.31k|    IMMER_TRY {
  ------------------
  |  |   49|  4.31k|#define IMMER_TRY try
  ------------------
 1828|  4.31k|        return plan.merge(lpos, cpos, rpos);
 1829|  4.31k|    }
 1830|  4.31k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|  4.31k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_12null_sub_posEEEvOT_OT0_OT1_:
 1752|  4.31k|    {
 1753|  4.31k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 4.31k, False: 0]
  ------------------
 1754|  4.31k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 4.31k, False: 0]
  ------------------
 1755|  4.31k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|  4.31k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|  4.31k|        cpos.each_sub(visitor_t{}, *this);
 1758|  4.31k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|  4.31k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_12null_sub_posEEENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSP_OT1_:
 1802|  4.31k|    {
 1803|  4.31k|        using node_t    = node_type<CPos>;
 1804|  4.31k|        using merger_t  = concat_merger<node_t>;
 1805|  4.31k|        using visitor_t = concat_merger_visitor;
 1806|  4.31k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|  4.31k|        IMMER_TRY {
  ------------------
  |  |   49|  4.31k|#define IMMER_TRY try
  ------------------
 1808|  4.31k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|  4.31k|            cpos.each_sub(visitor_t{}, merger);
 1810|  4.31k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|  4.31k|            cpos.each_sub(dec_visitor{});
 1812|  4.31k|            return merger.finish();
 1813|  4.31k|        }
 1814|  4.31k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|  4.31k|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_11relaxed_posISC_EERNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1917|   699k|    {
 1918|   699k|        return concat_inners<Node>(lpos, tpos, rpos);
 1919|   699k|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_15regular_sub_posISC_EESH_RNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1917|   127k|    {
 1918|   127k|        return concat_inners<Node>(lpos, tpos, rpos);
 1919|   127k|    }
_ZN5immer6detail4rbts13concat_innersINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EESF_EENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1872|   136k|{
 1873|   136k|    auto lshift = lpos.shift();
 1874|   136k|    auto rshift = rpos.shift();
 1875|   136k|    if (lshift > rshift) {
  ------------------
  |  Branch (1875:9): [True: 747, False: 135k]
  ------------------
 1876|    747|        auto cpos = lpos.last_sub(concat_left_visitor<Node>{}, tpos, rpos);
 1877|    747|        return concat_rebalance<Node>(lpos, cpos, null_sub_pos{});
 1878|   135k|    } else if (lshift < rshift) {
  ------------------
  |  Branch (1878:16): [True: 676, False: 135k]
  ------------------
 1879|    676|        auto cpos = rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1880|    676|        return concat_rebalance<Node>(null_sub_pos{}, cpos, rpos);
 1881|   135k|    } else {
 1882|   135k|        assert(lshift == rshift);
  ------------------
  |  Branch (1882:9): [True: 135k, False: 0]
  ------------------
 1883|   135k|        assert(Node::bits_leaf == 0u || lshift > 0);
  ------------------
  |  Branch (1883:9): [Folded, False: 135k]
  |  Branch (1883:9): [True: 135k, False: 0]
  |  Branch (1883:9): [True: 135k, False: 0]
  ------------------
 1884|   135k|        auto cpos = lpos.last_sub(concat_both_visitor<Node>{}, tpos, rpos);
 1885|   135k|        return concat_rebalance<Node>(lpos, cpos, rpos);
 1886|   135k|    }
 1887|   136k|}
_ZN5immer6detail4rbts19concat_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EESH_EENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1897|  1.13k|    {
 1898|  1.13k|        return concat_inners<Node>(lpos, tpos, rpos);
 1899|  1.13k|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_8full_posISC_EERNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1917|   122k|    {
 1918|   122k|        return concat_inners<Node>(lpos, tpos, rpos);
 1919|   122k|    }
_ZN5immer6detail4rbts13concat_innersINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EERNS1_8full_posISC_EEEENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1872|   122k|{
 1873|   122k|    auto lshift = lpos.shift();
 1874|   122k|    auto rshift = rpos.shift();
 1875|   122k|    if (lshift > rshift) {
  ------------------
  |  Branch (1875:9): [True: 0, False: 122k]
  ------------------
 1876|      0|        auto cpos = lpos.last_sub(concat_left_visitor<Node>{}, tpos, rpos);
 1877|      0|        return concat_rebalance<Node>(lpos, cpos, null_sub_pos{});
 1878|   122k|    } else if (lshift < rshift) {
  ------------------
  |  Branch (1878:16): [True: 289, False: 122k]
  ------------------
 1879|    289|        auto cpos = rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1880|    289|        return concat_rebalance<Node>(null_sub_pos{}, cpos, rpos);
 1881|   122k|    } else {
 1882|   122k|        assert(lshift == rshift);
  ------------------
  |  Branch (1882:9): [True: 122k, False: 0]
  ------------------
 1883|   122k|        assert(Node::bits_leaf == 0u || lshift > 0);
  ------------------
  |  Branch (1883:9): [Folded, False: 122k]
  |  Branch (1883:9): [True: 122k, False: 0]
  |  Branch (1883:9): [True: 122k, False: 0]
  ------------------
 1884|   122k|        auto cpos = lpos.last_sub(concat_both_visitor<Node>{}, tpos, rpos);
 1885|   122k|        return concat_rebalance<Node>(lpos, cpos, rpos);
 1886|   122k|    }
 1887|   122k|}
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EERNS1_8full_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1944|  63.8k|    {
 1945|  63.8k|        return rpos.first_sub_leaf(concat_right_visitor<Node>{}, lpos, tpos);
 1946|  63.8k|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_13full_leaf_posISC_EERNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1924|   151k|    {
 1925|   151k|        return concat_leafs<Node>(lpos, tpos, rpos);
 1926|   151k|    }
_ZN5immer6detail4rbts12concat_leafsINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EERNS1_13full_leaf_posISC_EEEENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1838|   151k|{
 1839|   151k|    static_assert(Node::bits >= 2, "");
 1840|   151k|    assert(lpos.shift() == tpos.shift());
  ------------------
  |  Branch (1840:5): [True: 151k, False: 0]
  ------------------
 1841|   151k|    assert(lpos.shift() == rpos.shift());
  ------------------
  |  Branch (1841:5): [True: 151k, False: 0]
  ------------------
 1842|   151k|    assert(lpos.shift() == 0);
  ------------------
  |  Branch (1842:5): [True: 151k, False: 0]
  ------------------
 1843|   151k|    if (tpos.count() > 0)
  ------------------
  |  Branch (1843:9): [True: 151k, False: 0]
  ------------------
 1844|   151k|        return {
 1845|   151k|            Node::bits_leaf,
 1846|   151k|            lpos.node()->inc(),
 1847|   151k|            lpos.count(),
 1848|   151k|            tpos.node()->inc(),
 1849|   151k|            tpos.count(),
 1850|   151k|            rpos.node()->inc(),
 1851|   151k|            rpos.count(),
 1852|   151k|        };
 1853|      0|    else
 1854|      0|        return {
 1855|      0|            Node::bits_leaf,
 1856|      0|            lpos.node()->inc(),
 1857|      0|            lpos.count(),
 1858|      0|            rpos.node()->inc(),
 1859|      0|            rpos.count(),
 1860|      0|        };
 1861|   151k|}
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EERNS1_8full_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1937|  59.8k|    {
 1938|  59.8k|        return rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1939|  59.8k|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_15regular_sub_posISC_EERNS1_17concat_center_posISC_EERNS1_8full_posISC_EEEENSG_IT_EEOT0_OT1_OT2_:
 1823|   122k|{
 1824|   122k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|   122k|    plan.fill(lpos, cpos, rpos);
 1826|   122k|    plan.shuffle(cpos.shift());
 1827|   122k|    IMMER_TRY {
  ------------------
  |  |   49|   122k|#define IMMER_TRY try
  ------------------
 1828|   122k|        return plan.merge(lpos, cpos, rpos);
 1829|   122k|    }
 1830|   122k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|   122k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_8full_posISF_EEEEvOT_OT0_OT1_:
 1752|   122k|    {
 1753|   122k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 122k, False: 0]
  ------------------
 1754|   122k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 122k, False: 0]
  ------------------
 1755|   122k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|   122k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|   122k|        cpos.each_sub(visitor_t{}, *this);
 1758|   122k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|   122k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_8full_posISF_EEEENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSQ_OT1_:
 1802|   122k|    {
 1803|   122k|        using node_t    = node_type<CPos>;
 1804|   122k|        using merger_t  = concat_merger<node_t>;
 1805|   122k|        using visitor_t = concat_merger_visitor;
 1806|   122k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|   122k|        IMMER_TRY {
  ------------------
  |  |   49|   122k|#define IMMER_TRY try
  ------------------
 1808|   122k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|   122k|            cpos.each_sub(visitor_t{}, merger);
 1810|   122k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|   122k|            cpos.each_sub(dec_visitor{});
 1812|   122k|            return merger.finish();
 1813|   122k|        }
 1814|   122k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|   122k|    }
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1944|  87.4k|    {
 1945|  87.4k|        return rpos.first_sub_leaf(concat_right_visitor<Node>{}, lpos, tpos);
 1946|  87.4k|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EESH_RNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1924|   379k|    {
 1925|   379k|        return concat_leafs<Node>(lpos, tpos, rpos);
 1926|   379k|    }
_ZN5immer6detail4rbts12concat_leafsINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EESF_EENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1838|   379k|{
 1839|   379k|    static_assert(Node::bits >= 2, "");
 1840|   379k|    assert(lpos.shift() == tpos.shift());
  ------------------
  |  Branch (1840:5): [True: 379k, False: 0]
  ------------------
 1841|   379k|    assert(lpos.shift() == rpos.shift());
  ------------------
  |  Branch (1841:5): [True: 379k, False: 0]
  ------------------
 1842|   379k|    assert(lpos.shift() == 0);
  ------------------
  |  Branch (1842:5): [True: 379k, False: 0]
  ------------------
 1843|   379k|    if (tpos.count() > 0)
  ------------------
  |  Branch (1843:9): [True: 379k, False: 0]
  ------------------
 1844|   379k|        return {
 1845|   379k|            Node::bits_leaf,
 1846|   379k|            lpos.node()->inc(),
 1847|   379k|            lpos.count(),
 1848|   379k|            tpos.node()->inc(),
 1849|   379k|            tpos.count(),
 1850|   379k|            rpos.node()->inc(),
 1851|   379k|            rpos.count(),
 1852|   379k|        };
 1853|      0|    else
 1854|      0|        return {
 1855|      0|            Node::bits_leaf,
 1856|      0|            lpos.node()->inc(),
 1857|      0|            lpos.count(),
 1858|      0|            rpos.node()->inc(),
 1859|      0|            rpos.count(),
 1860|      0|        };
 1861|   379k|}
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EESH_EENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1937|  61.9k|    {
 1938|  61.9k|        return rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1939|  61.9k|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_15regular_sub_posISC_EERNS1_17concat_center_posISC_EESF_EENSG_IT_EEOT0_OT1_OT2_:
 1823|   135k|{
 1824|   135k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|   135k|    plan.fill(lpos, cpos, rpos);
 1826|   135k|    plan.shuffle(cpos.shift());
 1827|   135k|    IMMER_TRY {
  ------------------
  |  |   49|   135k|#define IMMER_TRY try
  ------------------
 1828|   135k|        return plan.merge(lpos, cpos, rpos);
 1829|   135k|    }
 1830|   135k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|   135k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EESH_EEvOT_OT0_OT1_:
 1752|   135k|    {
 1753|   135k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 135k, False: 0]
  ------------------
 1754|   135k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 135k, False: 0]
  ------------------
 1755|   135k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|   135k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|   135k|        cpos.each_sub(visitor_t{}, *this);
 1758|   135k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|   135k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EESH_EENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSN_OT1_:
 1802|   135k|    {
 1803|   135k|        using node_t    = node_type<CPos>;
 1804|   135k|        using merger_t  = concat_merger<node_t>;
 1805|   135k|        using visitor_t = concat_merger_visitor;
 1806|   135k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|   135k|        IMMER_TRY {
  ------------------
  |  |   49|   135k|#define IMMER_TRY try
  ------------------
 1808|   135k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|   135k|            cpos.each_sub(visitor_t{}, merger);
 1810|   135k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|   135k|            cpos.each_sub(dec_visitor{});
 1812|   135k|            return merger.finish();
 1813|   135k|        }
 1814|   135k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|   135k|    }
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1944|   379k|    {
 1945|   379k|        return rpos.first_sub_leaf(concat_right_visitor<Node>{}, lpos, tpos);
 1946|   379k|    }
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1937|   815k|    {
 1938|   815k|        return rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1939|   815k|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_15regular_sub_posISC_EERNS1_17concat_center_posISC_EERNS1_11relaxed_posISC_EEEENSG_IT_EEOT0_OT1_OT2_:
 1823|   697k|{
 1824|   697k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|   697k|    plan.fill(lpos, cpos, rpos);
 1826|   697k|    plan.shuffle(cpos.shift());
 1827|   697k|    IMMER_TRY {
  ------------------
  |  |   49|   697k|#define IMMER_TRY try
  ------------------
 1828|   697k|        return plan.merge(lpos, cpos, rpos);
 1829|   697k|    }
 1830|   697k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|   697k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_11relaxed_posISF_EEEEvOT_OT0_OT1_:
 1752|   697k|    {
 1753|   697k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 697k, False: 0]
  ------------------
 1754|   697k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 697k, False: 0]
  ------------------
 1755|   697k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|   697k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|   697k|        cpos.each_sub(visitor_t{}, *this);
 1758|   697k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|   697k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_11relaxed_posISF_EEEENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSQ_OT1_:
 1802|   697k|    {
 1803|   697k|        using node_t    = node_type<CPos>;
 1804|   697k|        using merger_t  = concat_merger<node_t>;
 1805|   697k|        using visitor_t = concat_merger_visitor;
 1806|   697k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|   697k|        IMMER_TRY {
  ------------------
  |  |   49|   697k|#define IMMER_TRY try
  ------------------
 1808|   697k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|   697k|            cpos.each_sub(visitor_t{}, merger);
 1810|   697k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|   697k|            cpos.each_sub(dec_visitor{});
 1812|   697k|            return merger.finish();
 1813|   697k|        }
 1814|   697k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|   697k|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_11relaxed_posISC_EERNS1_17concat_center_posISC_EENS1_12null_sub_posEEENSG_IT_EEOT0_OT1_OT2_:
 1823|  2.43M|{
 1824|  2.43M|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|  2.43M|    plan.fill(lpos, cpos, rpos);
 1826|  2.43M|    plan.shuffle(cpos.shift());
 1827|  2.43M|    IMMER_TRY {
  ------------------
  |  |   49|  2.43M|#define IMMER_TRY try
  ------------------
 1828|  2.43M|        return plan.merge(lpos, cpos, rpos);
 1829|  2.43M|    }
 1830|  2.43M|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|  2.43M|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_12null_sub_posEEEvOT_OT0_OT1_:
 1752|  2.43M|    {
 1753|  2.43M|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 2.43M, False: 0]
  ------------------
 1754|  2.43M|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 2.43M, False: 0]
  ------------------
 1755|  2.43M|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|  2.43M|        lpos.each_left_sub(visitor_t{}, *this);
 1757|  2.43M|        cpos.each_sub(visitor_t{}, *this);
 1758|  2.43M|        rpos.each_right_sub(visitor_t{}, *this);
 1759|  2.43M|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_12null_sub_posEEENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSP_OT1_:
 1802|  2.43M|    {
 1803|  2.43M|        using node_t    = node_type<CPos>;
 1804|  2.43M|        using merger_t  = concat_merger<node_t>;
 1805|  2.43M|        using visitor_t = concat_merger_visitor;
 1806|  2.43M|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|  2.43M|        IMMER_TRY {
  ------------------
  |  |   49|  2.43M|#define IMMER_TRY try
  ------------------
 1808|  2.43M|            lpos.each_left_sub(visitor_t{}, merger);
 1809|  2.43M|            cpos.each_sub(visitor_t{}, merger);
 1810|  2.43M|            rpos.each_right_sub(visitor_t{}, merger);
 1811|  2.43M|            cpos.each_sub(dec_visitor{});
 1812|  2.43M|            return merger.finish();
 1813|  2.43M|        }
 1814|  2.43M|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|  2.43M|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_11relaxed_posISC_EESH_RNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1917|  1.80M|    {
 1918|  1.80M|        return concat_inners<Node>(lpos, tpos, rpos);
 1919|  1.80M|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_15regular_sub_posISC_EERNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1917|    636|    {
 1918|    636|        return concat_inners<Node>(lpos, tpos, rpos);
 1919|    636|    }
_ZN5immer6detail4rbts13concat_innersINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1872|  70.7k|{
 1873|  70.7k|    auto lshift = lpos.shift();
 1874|  70.7k|    auto rshift = rpos.shift();
 1875|  70.7k|    if (lshift > rshift) {
  ------------------
  |  Branch (1875:9): [True: 55.3k, False: 15.4k]
  ------------------
 1876|  55.3k|        auto cpos = lpos.last_sub(concat_left_visitor<Node>{}, tpos, rpos);
 1877|  55.3k|        return concat_rebalance<Node>(lpos, cpos, null_sub_pos{});
 1878|  55.3k|    } else if (lshift < rshift) {
  ------------------
  |  Branch (1878:16): [True: 848, False: 14.5k]
  ------------------
 1879|    848|        auto cpos = rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1880|    848|        return concat_rebalance<Node>(null_sub_pos{}, cpos, rpos);
 1881|  14.5k|    } else {
 1882|  14.5k|        assert(lshift == rshift);
  ------------------
  |  Branch (1882:9): [True: 14.5k, False: 0]
  ------------------
 1883|  14.5k|        assert(Node::bits_leaf == 0u || lshift > 0);
  ------------------
  |  Branch (1883:9): [Folded, False: 14.5k]
  |  Branch (1883:9): [True: 14.5k, False: 0]
  |  Branch (1883:9): [True: 14.5k, False: 0]
  ------------------
 1884|  14.5k|        auto cpos = lpos.last_sub(concat_both_visitor<Node>{}, tpos, rpos);
 1885|  14.5k|        return concat_rebalance<Node>(lpos, cpos, rpos);
 1886|  14.5k|    }
 1887|  70.7k|}
_ZN5immer6detail4rbts19concat_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1897|  54.9k|    {
 1898|  54.9k|        return concat_inners<Node>(lpos, tpos, rpos);
 1899|  54.9k|    }
_ZN5immer6detail4rbts20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_8full_posISC_EERNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1917|  1.82k|    {
 1918|  1.82k|        return concat_inners<Node>(lpos, tpos, rpos);
 1919|  1.82k|    }
_ZN5immer6detail4rbts13concat_innersINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EERNS1_8full_posISC_EEEENS1_17concat_center_posIT_EEOT0_OT1_OT2_:
 1872|  1.82k|{
 1873|  1.82k|    auto lshift = lpos.shift();
 1874|  1.82k|    auto rshift = rpos.shift();
 1875|  1.82k|    if (lshift > rshift) {
  ------------------
  |  Branch (1875:9): [True: 0, False: 1.82k]
  ------------------
 1876|      0|        auto cpos = lpos.last_sub(concat_left_visitor<Node>{}, tpos, rpos);
 1877|      0|        return concat_rebalance<Node>(lpos, cpos, null_sub_pos{});
 1878|  1.82k|    } else if (lshift < rshift) {
  ------------------
  |  Branch (1878:16): [True: 265, False: 1.56k]
  ------------------
 1879|    265|        auto cpos = rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1880|    265|        return concat_rebalance<Node>(null_sub_pos{}, cpos, rpos);
 1881|  1.56k|    } else {
 1882|  1.56k|        assert(lshift == rshift);
  ------------------
  |  Branch (1882:9): [True: 1.56k, False: 0]
  ------------------
 1883|  1.56k|        assert(Node::bits_leaf == 0u || lshift > 0);
  ------------------
  |  Branch (1883:9): [Folded, False: 1.56k]
  |  Branch (1883:9): [True: 1.56k, False: 0]
  |  Branch (1883:9): [True: 1.56k, False: 0]
  ------------------
 1884|  1.56k|        auto cpos = lpos.last_sub(concat_both_visitor<Node>{}, tpos, rpos);
 1885|  1.56k|        return concat_rebalance<Node>(lpos, cpos, rpos);
 1886|  1.56k|    }
 1887|  1.82k|}
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EERNS1_8full_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1937|    350|    {
 1938|    350|        return rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1939|    350|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_11relaxed_posISC_EERNS1_17concat_center_posISC_EERNS1_8full_posISC_EEEENSG_IT_EEOT0_OT1_OT2_:
 1823|  1.56k|{
 1824|  1.56k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|  1.56k|    plan.fill(lpos, cpos, rpos);
 1826|  1.56k|    plan.shuffle(cpos.shift());
 1827|  1.56k|    IMMER_TRY {
  ------------------
  |  |   49|  1.56k|#define IMMER_TRY try
  ------------------
 1828|  1.56k|        return plan.merge(lpos, cpos, rpos);
 1829|  1.56k|    }
 1830|  1.56k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|  1.56k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_8full_posISF_EEEEvOT_OT0_OT1_:
 1752|  1.56k|    {
 1753|  1.56k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 1.56k, False: 0]
  ------------------
 1754|  1.56k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 1.56k, False: 0]
  ------------------
 1755|  1.56k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|  1.56k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|  1.56k|        cpos.each_sub(visitor_t{}, *this);
 1758|  1.56k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|  1.56k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_8full_posISF_EEEENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSQ_OT1_:
 1802|  1.56k|    {
 1803|  1.56k|        using node_t    = node_type<CPos>;
 1804|  1.56k|        using merger_t  = concat_merger<node_t>;
 1805|  1.56k|        using visitor_t = concat_merger_visitor;
 1806|  1.56k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|  1.56k|        IMMER_TRY {
  ------------------
  |  |   49|  1.56k|#define IMMER_TRY try
  ------------------
 1808|  1.56k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|  1.56k|            cpos.each_sub(visitor_t{}, merger);
 1810|  1.56k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|  1.56k|            cpos.each_sub(dec_visitor{});
 1812|  1.56k|            return merger.finish();
 1813|  1.56k|        }
 1814|  1.56k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|  1.56k|    }
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1937|    364|    {
 1938|    364|        return rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1939|    364|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_11relaxed_posISC_EERNS1_17concat_center_posISC_EERNS1_15regular_sub_posISC_EEEENSG_IT_EEOT0_OT1_OT2_:
 1823|  14.5k|{
 1824|  14.5k|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|  14.5k|    plan.fill(lpos, cpos, rpos);
 1826|  14.5k|    plan.shuffle(cpos.shift());
 1827|  14.5k|    IMMER_TRY {
  ------------------
  |  |   49|  14.5k|#define IMMER_TRY try
  ------------------
 1828|  14.5k|        return plan.merge(lpos, cpos, rpos);
 1829|  14.5k|    }
 1830|  14.5k|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|  14.5k|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_15regular_sub_posISF_EEEEvOT_OT0_OT1_:
 1752|  14.5k|    {
 1753|  14.5k|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 14.5k, False: 0]
  ------------------
 1754|  14.5k|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 14.5k, False: 0]
  ------------------
 1755|  14.5k|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|  14.5k|        lpos.each_left_sub(visitor_t{}, *this);
 1757|  14.5k|        cpos.each_sub(visitor_t{}, *this);
 1758|  14.5k|        rpos.each_right_sub(visitor_t{}, *this);
 1759|  14.5k|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EERNS1_15regular_sub_posISF_EEEENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSQ_OT1_:
 1802|  14.5k|    {
 1803|  14.5k|        using node_t    = node_type<CPos>;
 1804|  14.5k|        using merger_t  = concat_merger<node_t>;
 1805|  14.5k|        using visitor_t = concat_merger_visitor;
 1806|  14.5k|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|  14.5k|        IMMER_TRY {
  ------------------
  |  |   49|  14.5k|#define IMMER_TRY try
  ------------------
 1808|  14.5k|            lpos.each_left_sub(visitor_t{}, merger);
 1809|  14.5k|            cpos.each_sub(visitor_t{}, merger);
 1810|  14.5k|            rpos.each_right_sub(visitor_t{}, merger);
 1811|  14.5k|            cpos.each_sub(dec_visitor{});
 1812|  14.5k|            return merger.finish();
 1813|  14.5k|        }
 1814|  14.5k|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|  14.5k|    }
_ZN5immer6detail4rbts19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11visit_innerIRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EESH_EENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1937|  1.72M|    {
 1938|  1.72M|        return rpos.first_sub(concat_right_visitor<Node>{}, lpos, tpos);
 1939|  1.72M|    }
_ZN5immer6detail4rbts16concat_rebalanceINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERNS1_11relaxed_posISC_EERNS1_17concat_center_posISC_EESF_EENSG_IT_EEOT0_OT1_OT2_:
 1823|  2.21M|{
 1824|  2.21M|    auto plan = concat_rebalance_plan<Node::bits, Node::bits_leaf>{};
 1825|  2.21M|    plan.fill(lpos, cpos, rpos);
 1826|  2.21M|    plan.shuffle(cpos.shift());
 1827|  2.21M|    IMMER_TRY {
  ------------------
  |  |   49|  2.21M|#define IMMER_TRY try
  ------------------
 1828|  2.21M|        return plan.merge(lpos, cpos, rpos);
 1829|  2.21M|    }
 1830|  2.21M|    IMMER_CATCH (...) {
 1831|      0|        cpos.each_sub(dec_visitor{});
 1832|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1833|      0|    }
 1834|  2.21M|}
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE4fillIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EESH_EEvOT_OT0_OT1_:
 1752|  2.21M|    {
 1753|  2.21M|        assert(n == 0u);
  ------------------
  |  Branch (1753:9): [True: 2.21M, False: 0]
  ------------------
 1754|  2.21M|        assert(total == 0u);
  ------------------
  |  Branch (1754:9): [True: 2.21M, False: 0]
  ------------------
 1755|  2.21M|        using visitor_t = concat_rebalance_plan_fill_visitor;
 1756|  2.21M|        lpos.each_left_sub(visitor_t{}, *this);
 1757|  2.21M|        cpos.each_sub(visitor_t{}, *this);
 1758|  2.21M|        rpos.each_right_sub(visitor_t{}, *this);
 1759|  2.21M|    }
_ZN5immer6detail4rbts21concat_rebalance_planILj2ELj2EE5mergeIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_17concat_center_posISF_EESH_EENSI_INSt3__15decayIT0_E4type6node_tEEEOT_OSN_OT1_:
 1802|  2.21M|    {
 1803|  2.21M|        using node_t    = node_type<CPos>;
 1804|  2.21M|        using merger_t  = concat_merger<node_t>;
 1805|  2.21M|        using visitor_t = concat_merger_visitor;
 1806|  2.21M|        auto merger     = merger_t{cpos.shift(), counts, n};
 1807|  2.21M|        IMMER_TRY {
  ------------------
  |  |   49|  2.21M|#define IMMER_TRY try
  ------------------
 1808|  2.21M|            lpos.each_left_sub(visitor_t{}, merger);
 1809|  2.21M|            cpos.each_sub(visitor_t{}, merger);
 1810|  2.21M|            rpos.each_right_sub(visitor_t{}, merger);
 1811|  2.21M|            cpos.each_sub(dec_visitor{});
 1812|  2.21M|            return merger.finish();
 1813|  2.21M|        }
 1814|  2.21M|        IMMER_CATCH (...) {
 1815|      0|            merger.abort();
 1816|      0|            IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1817|      0|        }
 1818|  2.21M|    }
_ZN5immer6detail4rbts26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_nodeIRNS1_15regular_sub_posISC_EERNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1958|  15.1k|    {
 1959|  15.1k|        return concat_inners<Node>(lpos, tpos, rpos);
 1960|  15.1k|    }
_ZN5immer6detail4rbts25concat_trees_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_nodeIRNS1_15regular_sub_posISC_EENS1_8leaf_posISC_EEJRPSC_RjRmEEENS1_17concat_center_posISC_EEOT_OT0_DpOT1_:
 1971|  14.8k|    {
 1972|  14.8k|        return visit_maybe_relaxed_sub(
 1973|  14.8k|            args..., concat_trees_right_visitor<Node>{}, lpos, tpos);
 1974|  14.8k|    }
_ZN5immer6detail4rbts26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_nodeIRNS1_11relaxed_posISC_EERNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1958|  6.78k|    {
 1959|  6.78k|        return concat_inners<Node>(lpos, tpos, rpos);
 1960|  6.78k|    }
_ZN5immer6detail4rbts26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_nodeIRNS1_15regular_sub_posISC_EESH_RNS1_8leaf_posISC_EEEENS1_17concat_center_posISC_EEOT_OT0_OT1_:
 1958|  8.09k|    {
 1959|  8.09k|        return concat_inners<Node>(lpos, tpos, rpos);
 1960|  8.09k|    }
_ZN5immer6detail4rbts21push_tail_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE13visit_relaxedIRNS1_11relaxed_posISC_EEEEPSC_OT_NSA_5applyIS7_E4type4editESI_j:
  680|  62.0k|    {
  681|  62.0k|        auto node     = pos.node();
  682|  62.0k|        auto level    = pos.shift();
  683|  62.0k|        auto idx      = pos.count() - 1;
  684|  62.0k|        auto children = pos.size(idx);
  685|  62.0k|        auto new_idx =
  686|  62.0k|            children == size_t{1} << level || level == BL ? idx + 1 : idx;
  ------------------
  |  Branch (686:13): [True: 2.49k, False: 59.5k]
  |  Branch (686:47): [True: 579, False: 58.9k]
  ------------------
  687|  62.0k|        auto new_child = static_cast<node_t*>(nullptr);
  688|  62.0k|        auto mutate    = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (688:26): [True: 62.0k, Folded]
  |  Branch (688:38): [True: 58.1k, False: 3.90k]
  ------------------
  689|       |
  690|  62.0k|        if (new_idx >= branches<B>)
  ------------------
  |  Branch (690:13): [True: 1.52k, False: 60.5k]
  ------------------
  691|  1.52k|            return nullptr;
  692|  60.5k|        else if (idx == new_idx) {
  ------------------
  |  Branch (692:18): [True: 58.9k, False: 1.54k]
  ------------------
  693|  58.9k|            new_child =
  694|  58.9k|                mutate ? pos.last_oh_csh(this_t{}, idx, children, e, tail, ts)
  ------------------
  |  Branch (694:17): [True: 56.5k, False: 2.47k]
  ------------------
  695|  58.9k|                       : pos.last_oh_csh(
  696|  2.47k|                             this_no_mut_t{}, idx, children, e, tail, ts);
  697|  58.9k|            if (!new_child) {
  ------------------
  |  Branch (697:17): [True: 773, False: 58.2k]
  ------------------
  698|    773|                if (++new_idx < branches<B>)
  ------------------
  |  Branch (698:21): [True: 428, False: 345]
  ------------------
  699|    428|                    new_child = node_t::make_path_e(e, level - B, tail);
  700|    345|                else
  701|    345|                    return nullptr;
  702|    773|            }
  703|  58.9k|        } else
  704|  1.54k|            new_child = node_t::make_path_e(e, level - B, tail);
  705|       |
  706|  60.1k|        if (mutate) {
  ------------------
  |  Branch (706:13): [True: 57.8k, False: 2.35k]
  ------------------
  707|  57.8k|            auto count             = new_idx + 1;
  708|  57.8k|            auto relaxed           = node->ensure_mutable_relaxed_n(e, new_idx);
  709|  57.8k|            node->inner()[new_idx] = new_child;
  710|  57.8k|            relaxed->d.sizes[new_idx] = pos.size() + ts;
  711|  57.8k|            relaxed->d.count          = count;
  712|  57.8k|            assert(relaxed->d.sizes[new_idx]);
  ------------------
  |  Branch (712:13): [True: 57.8k, False: 0]
  ------------------
  713|  57.8k|            return node;
  714|  57.8k|        } else {
  715|  2.35k|            IMMER_TRY {
  ------------------
  |  |   49|  2.35k|#define IMMER_TRY try
  ------------------
  716|  2.35k|                auto count    = new_idx + 1;
  717|  2.35k|                auto new_node = node_t::copy_inner_r_e(e, pos.node(), new_idx);
  718|  2.35k|                auto relaxed  = new_node->relaxed();
  719|  2.35k|                new_node->inner()[new_idx] = new_child;
  720|  2.35k|                relaxed->d.sizes[new_idx]  = pos.size() + ts;
  721|  2.35k|                relaxed->d.count           = count;
  722|  2.35k|                assert(relaxed->d.sizes[new_idx]);
  ------------------
  |  Branch (722:17): [True: 2.35k, False: 0]
  ------------------
  723|  2.35k|                if (Mutating)
  ------------------
  |  Branch (723:21): [True: 2.35k, Folded]
  ------------------
  724|  2.35k|                    pos.visit(dec_visitor{});
  725|  2.35k|                return new_node;
  726|  2.35k|            }
  727|  2.35k|            IMMER_CATCH (...) {
  728|      0|                auto shift = pos.shift();
  729|      0|                auto size  = new_idx == idx ? children + ts : ts;
  ------------------
  |  Branch (729:30): [True: 0, False: 0]
  ------------------
  730|      0|                if (shift > BL) {
  ------------------
  |  Branch (730:21): [True: 0, False: 0]
  ------------------
  731|      0|                    tail->inc();
  732|      0|                    dec_inner(new_child, shift - B, size);
  733|      0|                }
  734|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  735|      0|            }
  736|  2.35k|        }
  737|  60.1k|    }
_ZN5immer6detail4rbts21push_tail_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE13visit_regularIRNS1_15regular_sub_posISC_EEJRjEEEPSC_OT_NSA_5applyIS7_E4type4editESJ_DpOT0_:
  741|  47.1k|    {
  742|  47.1k|        assert((pos.size() & mask<BL>) == 0);
  ------------------
  |  Branch (742:9): [True: 47.1k, False: 0]
  ------------------
  743|  47.1k|        auto node    = pos.node();
  744|  47.1k|        auto idx     = pos.index(pos.size() - 1);
  745|  47.1k|        auto new_idx = pos.index(pos.size() + branches<BL> - 1);
  746|  47.1k|        auto mutate  = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (746:24): [True: 47.1k, Folded]
  |  Branch (746:36): [True: 46.4k, False: 703]
  ------------------
  747|  47.1k|        if (mutate) {
  ------------------
  |  Branch (747:13): [True: 46.4k, False: 703]
  ------------------
  748|  46.4k|            node->inner()[new_idx] =
  749|  46.4k|                idx == new_idx ? pos.last_oh(this_t{}, idx, e, tail)
  ------------------
  |  Branch (749:17): [True: 45.5k, False: 845]
  ------------------
  750|       |                               /* otherwise */
  751|  46.4k|                               : node_t::make_path_e(e, pos.shift() - B, tail);
  752|  46.4k|            return node;
  753|  46.4k|        } else {
  754|    703|            auto new_parent = node_t::make_inner_e(e);
  755|    703|            IMMER_TRY {
  ------------------
  |  |   49|    703|#define IMMER_TRY try
  ------------------
  756|    703|                new_parent->inner()[new_idx] =
  757|    703|                    idx == new_idx
  ------------------
  |  Branch (757:21): [True: 371, False: 332]
  ------------------
  758|    703|                        ? pos.last_oh(this_no_mut_t{}, idx, e, tail)
  759|       |                        /* otherwise */
  760|    703|                        : node_t::make_path_e(e, pos.shift() - B, tail);
  761|    703|                node_t::do_copy_inner(new_parent, node, new_idx);
  762|    703|                if (Mutating)
  ------------------
  |  Branch (762:21): [True: 703, Folded]
  ------------------
  763|    703|                    pos.visit(dec_visitor{});
  764|    703|                return new_parent;
  765|    703|            }
  766|    703|            IMMER_CATCH (...) {
  767|      0|                node_t::delete_inner_e(new_parent);
  768|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  769|      0|            }
  770|    703|        }
  771|  47.1k|    }
_ZN5immer6detail4rbts21push_tail_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE13visit_regularIRNS1_11regular_posISC_EEJEEEPSC_OT_NSA_5applyIS7_E4type4editESI_DpOT0_:
  741|   983k|    {
  742|   983k|        assert((pos.size() & mask<BL>) == 0);
  ------------------
  |  Branch (742:9): [True: 983k, False: 0]
  ------------------
  743|   983k|        auto node    = pos.node();
  744|   983k|        auto idx     = pos.index(pos.size() - 1);
  745|   983k|        auto new_idx = pos.index(pos.size() + branches<BL> - 1);
  746|   983k|        auto mutate  = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (746:24): [True: 983k, Folded]
  |  Branch (746:36): [True: 982k, False: 535]
  ------------------
  747|   983k|        if (mutate) {
  ------------------
  |  Branch (747:13): [True: 982k, False: 535]
  ------------------
  748|   982k|            node->inner()[new_idx] =
  749|   982k|                idx == new_idx ? pos.last_oh(this_t{}, idx, e, tail)
  ------------------
  |  Branch (749:17): [True: 771k, False: 211k]
  ------------------
  750|       |                               /* otherwise */
  751|   982k|                               : node_t::make_path_e(e, pos.shift() - B, tail);
  752|   982k|            return node;
  753|   982k|        } else {
  754|    535|            auto new_parent = node_t::make_inner_e(e);
  755|    535|            IMMER_TRY {
  ------------------
  |  |   49|    535|#define IMMER_TRY try
  ------------------
  756|    535|                new_parent->inner()[new_idx] =
  757|    535|                    idx == new_idx
  ------------------
  |  Branch (757:21): [True: 224, False: 311]
  ------------------
  758|    535|                        ? pos.last_oh(this_no_mut_t{}, idx, e, tail)
  759|       |                        /* otherwise */
  760|    535|                        : node_t::make_path_e(e, pos.shift() - B, tail);
  761|    535|                node_t::do_copy_inner(new_parent, node, new_idx);
  762|    535|                if (Mutating)
  ------------------
  |  Branch (762:21): [True: 535, Folded]
  ------------------
  763|    535|                    pos.visit(dec_visitor{});
  764|    535|                return new_parent;
  765|    535|            }
  766|    535|            IMMER_CATCH (...) {
  767|      0|                node_t::delete_inner_e(new_parent);
  768|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  769|      0|            }
  770|    535|        }
  771|   983k|    }
_ZN5immer6detail4rbts21push_tail_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE13visit_regularIRNS1_11regular_posISC_EEJEEEPSC_OT_NSA_5applyIS7_E4type4editESI_DpOT0_:
  741|  2.95k|    {
  742|  2.95k|        assert((pos.size() & mask<BL>) == 0);
  ------------------
  |  Branch (742:9): [True: 2.95k, False: 0]
  ------------------
  743|  2.95k|        auto node    = pos.node();
  744|  2.95k|        auto idx     = pos.index(pos.size() - 1);
  745|  2.95k|        auto new_idx = pos.index(pos.size() + branches<BL> - 1);
  746|  2.95k|        auto mutate  = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (746:24): [Folded, False: 2.95k]
  |  Branch (746:36): [True: 0, False: 0]
  ------------------
  747|  2.95k|        if (mutate) {
  ------------------
  |  Branch (747:13): [True: 0, False: 2.95k]
  ------------------
  748|      0|            node->inner()[new_idx] =
  749|      0|                idx == new_idx ? pos.last_oh(this_t{}, idx, e, tail)
  ------------------
  |  Branch (749:17): [True: 0, False: 0]
  ------------------
  750|       |                               /* otherwise */
  751|      0|                               : node_t::make_path_e(e, pos.shift() - B, tail);
  752|      0|            return node;
  753|  2.95k|        } else {
  754|  2.95k|            auto new_parent = node_t::make_inner_e(e);
  755|  2.95k|            IMMER_TRY {
  ------------------
  |  |   49|  2.95k|#define IMMER_TRY try
  ------------------
  756|  2.95k|                new_parent->inner()[new_idx] =
  757|  2.95k|                    idx == new_idx
  ------------------
  |  Branch (757:21): [True: 1.32k, False: 1.63k]
  ------------------
  758|  2.95k|                        ? pos.last_oh(this_no_mut_t{}, idx, e, tail)
  759|       |                        /* otherwise */
  760|  2.95k|                        : node_t::make_path_e(e, pos.shift() - B, tail);
  761|  2.95k|                node_t::do_copy_inner(new_parent, node, new_idx);
  762|  2.95k|                if (Mutating)
  ------------------
  |  Branch (762:21): [Folded, False: 2.95k]
  ------------------
  763|      0|                    pos.visit(dec_visitor{});
  764|  2.95k|                return new_parent;
  765|  2.95k|            }
  766|  2.95k|            IMMER_CATCH (...) {
  767|      0|                node_t::delete_inner_e(new_parent);
  768|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  769|      0|            }
  770|  2.95k|        }
  771|  2.95k|    }
_ZN5immer6detail4rbts21push_tail_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE13visit_relaxedIRNS1_11relaxed_posISC_EEEEPSC_OT_NSA_5applyIS7_E4type4editESI_j:
  680|  6.92k|    {
  681|  6.92k|        auto node     = pos.node();
  682|  6.92k|        auto level    = pos.shift();
  683|  6.92k|        auto idx      = pos.count() - 1;
  684|  6.92k|        auto children = pos.size(idx);
  685|  6.92k|        auto new_idx =
  686|  6.92k|            children == size_t{1} << level || level == BL ? idx + 1 : idx;
  ------------------
  |  Branch (686:13): [True: 1.01k, False: 5.91k]
  |  Branch (686:47): [True: 390, False: 5.52k]
  ------------------
  687|  6.92k|        auto new_child = static_cast<node_t*>(nullptr);
  688|  6.92k|        auto mutate    = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (688:26): [Folded, False: 6.92k]
  |  Branch (688:38): [True: 0, False: 0]
  ------------------
  689|       |
  690|  6.92k|        if (new_idx >= branches<B>)
  ------------------
  |  Branch (690:13): [True: 617, False: 6.31k]
  ------------------
  691|    617|            return nullptr;
  692|  6.31k|        else if (idx == new_idx) {
  ------------------
  |  Branch (692:18): [True: 5.52k, False: 792]
  ------------------
  693|  5.52k|            new_child =
  694|  5.52k|                mutate ? pos.last_oh_csh(this_t{}, idx, children, e, tail, ts)
  ------------------
  |  Branch (694:17): [True: 0, False: 5.52k]
  ------------------
  695|  5.52k|                       : pos.last_oh_csh(
  696|  5.52k|                             this_no_mut_t{}, idx, children, e, tail, ts);
  697|  5.52k|            if (!new_child) {
  ------------------
  |  Branch (697:17): [True: 623, False: 4.89k]
  ------------------
  698|    623|                if (++new_idx < branches<B>)
  ------------------
  |  Branch (698:21): [True: 298, False: 325]
  ------------------
  699|    298|                    new_child = node_t::make_path_e(e, level - B, tail);
  700|    325|                else
  701|    325|                    return nullptr;
  702|    623|            }
  703|  5.52k|        } else
  704|    792|            new_child = node_t::make_path_e(e, level - B, tail);
  705|       |
  706|  5.98k|        if (mutate) {
  ------------------
  |  Branch (706:13): [True: 0, False: 5.98k]
  ------------------
  707|      0|            auto count             = new_idx + 1;
  708|      0|            auto relaxed           = node->ensure_mutable_relaxed_n(e, new_idx);
  709|      0|            node->inner()[new_idx] = new_child;
  710|      0|            relaxed->d.sizes[new_idx] = pos.size() + ts;
  711|      0|            relaxed->d.count          = count;
  712|      0|            assert(relaxed->d.sizes[new_idx]);
  ------------------
  |  Branch (712:13): [True: 0, False: 0]
  ------------------
  713|      0|            return node;
  714|  5.98k|        } else {
  715|  5.98k|            IMMER_TRY {
  ------------------
  |  |   49|  5.98k|#define IMMER_TRY try
  ------------------
  716|  5.98k|                auto count    = new_idx + 1;
  717|  5.98k|                auto new_node = node_t::copy_inner_r_e(e, pos.node(), new_idx);
  718|  5.98k|                auto relaxed  = new_node->relaxed();
  719|  5.98k|                new_node->inner()[new_idx] = new_child;
  720|  5.98k|                relaxed->d.sizes[new_idx]  = pos.size() + ts;
  721|  5.98k|                relaxed->d.count           = count;
  722|  5.98k|                assert(relaxed->d.sizes[new_idx]);
  ------------------
  |  Branch (722:17): [True: 5.98k, False: 0]
  ------------------
  723|  5.98k|                if (Mutating)
  ------------------
  |  Branch (723:21): [Folded, False: 5.98k]
  ------------------
  724|      0|                    pos.visit(dec_visitor{});
  725|  5.98k|                return new_node;
  726|  5.98k|            }
  727|  5.98k|            IMMER_CATCH (...) {
  728|      0|                auto shift = pos.shift();
  729|      0|                auto size  = new_idx == idx ? children + ts : ts;
  ------------------
  |  Branch (729:30): [True: 0, False: 0]
  ------------------
  730|      0|                if (shift > BL) {
  ------------------
  |  Branch (730:21): [True: 0, False: 0]
  ------------------
  731|      0|                    tail->inc();
  732|      0|                    dec_inner(new_child, shift - B, size);
  733|      0|                }
  734|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  735|      0|            }
  736|  5.98k|        }
  737|  5.98k|    }
_ZN5immer6detail4rbts21push_tail_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EE13visit_regularIRNS1_15regular_sub_posISC_EEJRjEEEPSC_OT_NSA_5applyIS7_E4type4editESJ_DpOT0_:
  741|  1.06k|    {
  742|  1.06k|        assert((pos.size() & mask<BL>) == 0);
  ------------------
  |  Branch (742:9): [True: 1.06k, False: 0]
  ------------------
  743|  1.06k|        auto node    = pos.node();
  744|  1.06k|        auto idx     = pos.index(pos.size() - 1);
  745|  1.06k|        auto new_idx = pos.index(pos.size() + branches<BL> - 1);
  746|  1.06k|        auto mutate  = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (746:24): [Folded, False: 1.06k]
  |  Branch (746:36): [True: 0, False: 0]
  ------------------
  747|  1.06k|        if (mutate) {
  ------------------
  |  Branch (747:13): [True: 0, False: 1.06k]
  ------------------
  748|      0|            node->inner()[new_idx] =
  749|      0|                idx == new_idx ? pos.last_oh(this_t{}, idx, e, tail)
  ------------------
  |  Branch (749:17): [True: 0, False: 0]
  ------------------
  750|       |                               /* otherwise */
  751|      0|                               : node_t::make_path_e(e, pos.shift() - B, tail);
  752|      0|            return node;
  753|  1.06k|        } else {
  754|  1.06k|            auto new_parent = node_t::make_inner_e(e);
  755|  1.06k|            IMMER_TRY {
  ------------------
  |  |   49|  1.06k|#define IMMER_TRY try
  ------------------
  756|  1.06k|                new_parent->inner()[new_idx] =
  757|  1.06k|                    idx == new_idx
  ------------------
  |  Branch (757:21): [True: 660, False: 403]
  ------------------
  758|  1.06k|                        ? pos.last_oh(this_no_mut_t{}, idx, e, tail)
  759|       |                        /* otherwise */
  760|  1.06k|                        : node_t::make_path_e(e, pos.shift() - B, tail);
  761|  1.06k|                node_t::do_copy_inner(new_parent, node, new_idx);
  762|  1.06k|                if (Mutating)
  ------------------
  |  Branch (762:21): [Folded, False: 1.06k]
  ------------------
  763|      0|                    pos.visit(dec_visitor{});
  764|  1.06k|                return new_parent;
  765|  1.06k|            }
  766|  1.06k|            IMMER_CATCH (...) {
  767|      0|                node_t::delete_inner_e(new_parent);
  768|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  769|      0|            }
  770|  1.06k|        }
  771|  1.06k|    }
_ZN5immer6detail4rbts21push_tail_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EE13visit_regularIRNS1_15regular_sub_posISC_EEJEEEPSC_OT_NSA_5applyIS7_E4type4editESI_DpOT0_:
  741|   170k|    {
  742|   170k|        assert((pos.size() & mask<BL>) == 0);
  ------------------
  |  Branch (742:9): [True: 170k, False: 0]
  ------------------
  743|   170k|        auto node    = pos.node();
  744|   170k|        auto idx     = pos.index(pos.size() - 1);
  745|   170k|        auto new_idx = pos.index(pos.size() + branches<BL> - 1);
  746|   170k|        auto mutate  = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (746:24): [True: 170k, Folded]
  |  Branch (746:36): [True: 170k, False: 624]
  ------------------
  747|   170k|        if (mutate) {
  ------------------
  |  Branch (747:13): [True: 170k, False: 624]
  ------------------
  748|   170k|            node->inner()[new_idx] =
  749|   170k|                idx == new_idx ? pos.last_oh(this_t{}, idx, e, tail)
  ------------------
  |  Branch (749:17): [True: 166k, False: 3.98k]
  ------------------
  750|       |                               /* otherwise */
  751|   170k|                               : node_t::make_path_e(e, pos.shift() - B, tail);
  752|   170k|            return node;
  753|   170k|        } else {
  754|    624|            auto new_parent = node_t::make_inner_e(e);
  755|    624|            IMMER_TRY {
  ------------------
  |  |   49|    624|#define IMMER_TRY try
  ------------------
  756|    624|                new_parent->inner()[new_idx] =
  757|    624|                    idx == new_idx
  ------------------
  |  Branch (757:21): [True: 379, False: 245]
  ------------------
  758|    624|                        ? pos.last_oh(this_no_mut_t{}, idx, e, tail)
  759|       |                        /* otherwise */
  760|    624|                        : node_t::make_path_e(e, pos.shift() - B, tail);
  761|    624|                node_t::do_copy_inner(new_parent, node, new_idx);
  762|    624|                if (Mutating)
  ------------------
  |  Branch (762:21): [True: 624, Folded]
  ------------------
  763|    624|                    pos.visit(dec_visitor{});
  764|    624|                return new_parent;
  765|    624|            }
  766|    624|            IMMER_CATCH (...) {
  767|      0|                node_t::delete_inner_e(new_parent);
  768|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  769|      0|            }
  770|    624|        }
  771|   170k|    }
_ZN5immer6detail4rbts17dec_empty_regularINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEvPT_:
  580|  2.16k|{
  581|  2.16k|    make_empty_regular_pos(node).visit(dec_visitor());
  582|  2.16k|}
_ZN5immer6detail4rbts15get_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_relaxedIRNS1_11relaxed_posISC_EEEERiOT_mNSA_5applyIS7_E4type4editEPPSC_:
  595|  86.4k|    {
  596|  86.4k|        auto offset = pos.index(idx);
  597|  86.4k|        auto count  = pos.count();
  598|  86.4k|        auto node   = pos.node();
  599|  86.4k|        if (node->can_mutate(e)) {
  ------------------
  |  Branch (599:13): [True: 75.3k, False: 11.1k]
  ------------------
  600|  75.3k|            return pos.towards_oh(
  601|  75.3k|                this_t{}, idx, offset, e, &node->inner()[offset]);
  602|  75.3k|        } else {
  603|  11.1k|            auto new_node = node_t::copy_inner_sr_e(e, node, count);
  604|  11.1k|            IMMER_TRY {
  ------------------
  |  |   49|  11.1k|#define IMMER_TRY try
  ------------------
  605|  11.1k|                auto& res = pos.towards_oh(
  606|  11.1k|                    this_t{}, idx, offset, e, &new_node->inner()[offset]);
  607|  11.1k|                pos.visit(dec_visitor{});
  608|  11.1k|                *location = new_node;
  609|  11.1k|                return res;
  610|  11.1k|            }
  611|  11.1k|            IMMER_CATCH (...) {
  612|      0|                dec_relaxed(new_node, pos.shift());
  613|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  614|      0|            }
  615|  11.1k|        }
  616|  86.4k|    }
_ZN5immer6detail4rbts15get_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_12leaf_sub_posISC_EEEERiOT_mNSA_5applyIS7_E4type4editEPPSC_:
  652|  33.3k|    {
  653|  33.3k|        assert(pos.node() == *location);
  ------------------
  |  Branch (653:9): [True: 33.3k, False: 0]
  ------------------
  654|  33.3k|        auto node = pos.node();
  655|  33.3k|        if (node->can_mutate(e)) {
  ------------------
  |  Branch (655:13): [True: 31.1k, False: 2.20k]
  ------------------
  656|  31.1k|            return node->leaf()[pos.index(idx)];
  657|  31.1k|        } else {
  658|  2.20k|            auto new_node = node_t::copy_leaf_e(e, pos.node(), pos.count());
  659|  2.20k|            pos.visit(dec_visitor{});
  660|  2.20k|            *location = new_node;
  661|  2.20k|            return new_node->leaf()[pos.index(idx)];
  662|  2.20k|        }
  663|  33.3k|    }
_ZN5immer6detail4rbts15get_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_regularIRNS1_15regular_sub_posISC_EEEERiOT_mNSA_5applyIS7_E4type4editEPPSC_:
  621|  7.71k|    {
  622|  7.71k|        assert(pos.node() == *location);
  ------------------
  |  Branch (622:9): [True: 7.71k, False: 0]
  ------------------
  623|  7.71k|        auto offset = pos.index(idx);
  624|  7.71k|        auto count  = pos.count();
  625|  7.71k|        auto node   = pos.node();
  626|  7.71k|        if (node->can_mutate(e)) {
  ------------------
  |  Branch (626:13): [True: 5.89k, False: 1.81k]
  ------------------
  627|  5.89k|            return pos.towards_oh_ch(
  628|  5.89k|                this_t{}, idx, offset, count, e, &node->inner()[offset]);
  629|  5.89k|        } else {
  630|  1.81k|            auto new_node = node_t::copy_inner_e(e, node, count);
  631|  1.81k|            IMMER_TRY {
  ------------------
  |  |   49|  1.81k|#define IMMER_TRY try
  ------------------
  632|  1.81k|                auto& res = pos.towards_oh_ch(this_t{},
  633|  1.81k|                                              idx,
  634|  1.81k|                                              offset,
  635|  1.81k|                                              count,
  636|  1.81k|                                              e,
  637|  1.81k|                                              &new_node->inner()[offset]);
  638|  1.81k|                pos.visit(dec_visitor{});
  639|  1.81k|                *location = new_node;
  640|  1.81k|                return res;
  641|  1.81k|            }
  642|  1.81k|            IMMER_CATCH (...) {
  643|      0|                dec_regular(new_node, pos.shift(), pos.size());
  644|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  645|      0|            }
  646|  1.81k|        }
  647|  7.71k|    }
_ZN5immer6detail4rbts15get_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_13full_leaf_posISC_EEEERiOT_mNSA_5applyIS7_E4type4editEPPSC_:
  652|  6.57k|    {
  653|  6.57k|        assert(pos.node() == *location);
  ------------------
  |  Branch (653:9): [True: 6.57k, False: 0]
  ------------------
  654|  6.57k|        auto node = pos.node();
  655|  6.57k|        if (node->can_mutate(e)) {
  ------------------
  |  Branch (655:13): [True: 4.57k, False: 1.99k]
  ------------------
  656|  4.57k|            return node->leaf()[pos.index(idx)];
  657|  4.57k|        } else {
  658|  1.99k|            auto new_node = node_t::copy_leaf_e(e, pos.node(), pos.count());
  659|  1.99k|            pos.visit(dec_visitor{});
  660|  1.99k|            *location = new_node;
  661|  1.99k|            return new_node->leaf()[pos.index(idx)];
  662|  1.99k|        }
  663|  6.57k|    }
_ZN5immer6detail4rbts15get_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_regularIRNS1_8full_posISC_EEEERiOT_mNSA_5applyIS7_E4type4editEPPSC_:
  621|  5.42k|    {
  622|  5.42k|        assert(pos.node() == *location);
  ------------------
  |  Branch (622:9): [True: 5.42k, False: 0]
  ------------------
  623|  5.42k|        auto offset = pos.index(idx);
  624|  5.42k|        auto count  = pos.count();
  625|  5.42k|        auto node   = pos.node();
  626|  5.42k|        if (node->can_mutate(e)) {
  ------------------
  |  Branch (626:13): [True: 3.77k, False: 1.65k]
  ------------------
  627|  3.77k|            return pos.towards_oh_ch(
  628|  3.77k|                this_t{}, idx, offset, count, e, &node->inner()[offset]);
  629|  3.77k|        } else {
  630|  1.65k|            auto new_node = node_t::copy_inner_e(e, node, count);
  631|  1.65k|            IMMER_TRY {
  ------------------
  |  |   49|  1.65k|#define IMMER_TRY try
  ------------------
  632|  1.65k|                auto& res = pos.towards_oh_ch(this_t{},
  633|  1.65k|                                              idx,
  634|  1.65k|                                              offset,
  635|  1.65k|                                              count,
  636|  1.65k|                                              e,
  637|  1.65k|                                              &new_node->inner()[offset]);
  638|  1.65k|                pos.visit(dec_visitor{});
  639|  1.65k|                *location = new_node;
  640|  1.65k|                return res;
  641|  1.65k|            }
  642|  1.65k|            IMMER_CATCH (...) {
  643|      0|                dec_regular(new_node, pos.shift(), pos.size());
  644|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  645|      0|            }
  646|  1.65k|        }
  647|  5.42k|    }
_ZN5immer6detail4rbts15get_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10visit_leafIRNS1_8leaf_posISC_EEEERiOT_mNSA_5applyIS7_E4type4editEPPSC_:
  652|  1.13k|    {
  653|  1.13k|        assert(pos.node() == *location);
  ------------------
  |  Branch (653:9): [True: 1.13k, False: 0]
  ------------------
  654|  1.13k|        auto node = pos.node();
  655|  1.13k|        if (node->can_mutate(e)) {
  ------------------
  |  Branch (655:13): [True: 689, False: 448]
  ------------------
  656|    689|            return node->leaf()[pos.index(idx)];
  657|    689|        } else {
  658|    448|            auto new_node = node_t::copy_leaf_e(e, pos.node(), pos.count());
  659|    448|            pos.visit(dec_visitor{});
  660|    448|            *location = new_node;
  661|    448|            return new_node->leaf()[pos.index(idx)];
  662|    448|        }
  663|  1.13k|    }
_ZN5immer6detail4rbts15get_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13visit_regularIRNS1_11regular_posISC_EEEERiOT_mNSA_5applyIS7_E4type4editEPPSC_:
  621|  2.17k|    {
  622|  2.17k|        assert(pos.node() == *location);
  ------------------
  |  Branch (622:9): [True: 2.17k, False: 0]
  ------------------
  623|  2.17k|        auto offset = pos.index(idx);
  624|  2.17k|        auto count  = pos.count();
  625|  2.17k|        auto node   = pos.node();
  626|  2.17k|        if (node->can_mutate(e)) {
  ------------------
  |  Branch (626:13): [True: 1.71k, False: 458]
  ------------------
  627|  1.71k|            return pos.towards_oh_ch(
  628|  1.71k|                this_t{}, idx, offset, count, e, &node->inner()[offset]);
  629|  1.71k|        } else {
  630|    458|            auto new_node = node_t::copy_inner_e(e, node, count);
  631|    458|            IMMER_TRY {
  ------------------
  |  |   49|    458|#define IMMER_TRY try
  ------------------
  632|    458|                auto& res = pos.towards_oh_ch(this_t{},
  633|    458|                                              idx,
  634|    458|                                              offset,
  635|    458|                                              count,
  636|    458|                                              e,
  637|    458|                                              &new_node->inner()[offset]);
  638|    458|                pos.visit(dec_visitor{});
  639|    458|                *location = new_node;
  640|    458|                return res;
  641|    458|            }
  642|    458|            IMMER_CATCH (...) {
  643|      0|                dec_regular(new_node, pos.shift(), pos.size());
  644|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  645|      0|            }
  646|    458|        }
  647|  2.17k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  913|  48.9k|    {
  914|  48.9k|        auto idx    = pos.index(last);
  915|  48.9k|        auto node   = pos.node();
  916|  48.9k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (916:23): [True: 48.9k, Folded]
  |  Branch (916:35): [True: 40.9k, False: 8.02k]
  ------------------
  917|  48.9k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (917:13): [True: 48.9k, Folded]
  |  Branch (917:25): [True: 29.5k, False: 19.3k]
  ------------------
  918|  29.5k|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (918:24): [True: 25.3k, False: 4.20k]
  ------------------
  919|  29.5k|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  920|  29.5k|            if (Mutating)
  ------------------
  |  Branch (920:17): [True: 29.5k, Folded]
  ------------------
  921|  29.5k|                pos.visit(dec_right_visitor{}, count_t{1});
  922|  29.5k|            return res;
  923|  29.5k|        } else {
  924|  19.3k|            using std::get;
  925|  19.3k|            auto subs =
  926|  19.3k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (926:17): [True: 15.5k, False: 3.82k]
  ------------------
  927|  19.3k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
  928|  19.3k|            auto next = get<1>(subs);
  929|  19.3k|            auto ts   = get<2>(subs);
  930|  19.3k|            auto tail = get<3>(subs);
  931|  19.3k|            IMMER_TRY {
  ------------------
  |  |   49|  19.3k|#define IMMER_TRY try
  ------------------
  932|  19.3k|                if (next) {
  ------------------
  |  Branch (932:21): [True: 14.7k, False: 4.64k]
  ------------------
  933|  14.7k|                    if (mutate) {
  ------------------
  |  Branch (933:25): [True: 12.4k, False: 2.30k]
  ------------------
  934|  12.4k|                        auto nodr = node->ensure_mutable_relaxed_n(e, idx);
  935|  12.4k|                        pos.each_right(dec_visitor{}, idx + 1);
  936|  12.4k|                        node->inner()[idx] = next;
  937|  12.4k|                        nodr->d.sizes[idx] = last + 1 - ts;
  938|  12.4k|                        nodr->d.count      = idx + 1;
  939|  12.4k|                        assert(nodr->d.sizes[idx]);
  ------------------
  |  Branch (939:25): [True: 12.4k, False: 0]
  ------------------
  940|  12.4k|                        return std::make_tuple(pos.shift(), node, ts, tail);
  941|  12.4k|                    } else {
  942|  2.30k|                        auto newn = node_t::copy_inner_r_e(e, node, idx);
  943|  2.30k|                        auto newr = newn->relaxed();
  944|  2.30k|                        newn->inner()[idx] = next;
  945|  2.30k|                        newr->d.sizes[idx] = last + 1 - ts;
  946|  2.30k|                        newr->d.count      = idx + 1;
  947|  2.30k|                        assert(newr->d.sizes[idx]);
  ------------------
  |  Branch (947:25): [True: 2.30k, False: 0]
  ------------------
  948|  2.30k|                        if (Mutating)
  ------------------
  |  Branch (948:29): [True: 2.30k, Folded]
  ------------------
  949|  2.30k|                            pos.visit(dec_visitor{});
  950|  2.30k|                        return std::make_tuple(pos.shift(), newn, ts, tail);
  951|  2.30k|                    }
  952|  14.7k|                } else if (idx == 0) {
  ------------------
  |  Branch (952:28): [True: 0, False: 4.64k]
  ------------------
  953|      0|                    if (Mutating)
  ------------------
  |  Branch (953:25): [True: 0, Folded]
  ------------------
  954|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
  955|      0|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
  956|  4.64k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (956:28): [True: 4.64k, Folded]
  |  Branch (956:40): [True: 3.73k, False: 904]
  |  Branch (956:52): [True: 3.02k, False: 719]
  ------------------
  957|  3.02k|                    auto newn = pos.node()->inner()[0];
  958|  3.02k|                    if (!mutate)
  ------------------
  |  Branch (958:25): [True: 939, False: 2.08k]
  ------------------
  959|    939|                        newn->inc();
  960|  3.02k|                    if (Mutating)
  ------------------
  |  Branch (960:25): [True: 3.02k, Folded]
  ------------------
  961|  3.02k|                        pos.visit(dec_right_visitor{}, count_t{2});
  962|  3.02k|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
  963|  3.02k|                } else {
  964|  1.62k|                    if (mutate) {
  ------------------
  |  Branch (964:25): [True: 1.04k, False: 577]
  ------------------
  965|  1.04k|                        pos.each_right(dec_visitor{}, idx + 1);
  966|  1.04k|                        node->ensure_mutable_relaxed_n(e, idx)->d.count = idx;
  967|  1.04k|                        return std::make_tuple(pos.shift(), node, ts, tail);
  968|  1.04k|                    } else {
  969|    577|                        auto newn = node_t::copy_inner_r_e(e, node, idx);
  970|    577|                        if (Mutating)
  ------------------
  |  Branch (970:29): [True: 577, Folded]
  ------------------
  971|    577|                            pos.visit(dec_visitor{});
  972|    577|                        return std::make_tuple(pos.shift(), newn, ts, tail);
  973|    577|                    }
  974|  1.62k|                }
  975|  19.3k|            }
  976|  19.3k|            IMMER_CATCH (...) {
  977|      0|                assert(!mutate);
  ------------------
  |  Branch (977:17): [True: 0, False: 0]
  ------------------
  978|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (978:17): [True: 0, False: 0]
  |  Branch (978:17): [True: 0, False: 0]
  |  Branch (978:17): [True: 0, False: 0]
  ------------------
  979|      0|                if (next)
  ------------------
  |  Branch (979:21): [True: 0, False: 0]
  ------------------
  980|      0|                    dec_inner(next,
  981|      0|                              pos.shift() - B,
  982|      0|                              last + 1 - ts - pos.size_before(idx));
  983|      0|                dec_leaf(tail, ts);
  984|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  985|      0|            }
  986|  19.3k|        }
  987|  48.9k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|  1.06k|    {
 1060|  1.06k|        auto old_tail_size = pos.count();
 1061|  1.06k|        auto new_tail_size = pos.index(last) + 1;
 1062|  1.06k|        auto node          = pos.node();
 1063|  1.06k|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [True: 1.06k, Folded]
  |  Branch (1063:42): [True: 311, False: 754]
  ------------------
 1064|  1.06k|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 294, False: 771]
  ------------------
 1065|    294|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [Folded, False: 294]
  ------------------
 1066|      0|                node->inc();
 1067|    294|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|    771|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 275, False: 496]
  ------------------
 1069|    275|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|    275|                              old_tail_size - new_tail_size);
 1071|    275|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|    496|        } else {
 1073|    496|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|    496|            if (Mutating)
  ------------------
  |  Branch (1074:17): [True: 496, Folded]
  ------------------
 1075|    496|                pos.visit(dec_visitor{});
 1076|    496|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|    496|        }
 1078|  1.06k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb0EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|    761|    {
 1060|    761|        auto old_tail_size = pos.count();
 1061|    761|        auto new_tail_size = pos.index(last) + 1;
 1062|    761|        auto node          = pos.node();
 1063|    761|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [Folded, False: 761]
  |  Branch (1063:42): [True: 0, False: 0]
  ------------------
 1064|    761|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 480, False: 281]
  ------------------
 1065|    480|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [True: 480, Folded]
  ------------------
 1066|    480|                node->inc();
 1067|    480|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|    480|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 0, False: 281]
  ------------------
 1069|      0|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|      0|                              old_tail_size - new_tail_size);
 1071|      0|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|    281|        } else {
 1073|    281|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|    281|            if (Mutating)
  ------------------
  |  Branch (1074:17): [Folded, False: 281]
  ------------------
 1075|      0|                pos.visit(dec_visitor{});
 1076|    281|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|    281|        }
 1078|    761|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb0EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  913|  17.7k|    {
  914|  17.7k|        auto idx    = pos.index(last);
  915|  17.7k|        auto node   = pos.node();
  916|  17.7k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (916:23): [Folded, False: 17.7k]
  |  Branch (916:35): [True: 0, False: 0]
  ------------------
  917|  17.7k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (917:13): [True: 17.7k, Folded]
  |  Branch (917:25): [True: 15.7k, False: 2.00k]
  ------------------
  918|  15.7k|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (918:24): [True: 0, False: 15.7k]
  ------------------
  919|  15.7k|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  920|  15.7k|            if (Mutating)
  ------------------
  |  Branch (920:17): [Folded, False: 15.7k]
  ------------------
  921|      0|                pos.visit(dec_right_visitor{}, count_t{1});
  922|  15.7k|            return res;
  923|  15.7k|        } else {
  924|  2.00k|            using std::get;
  925|  2.00k|            auto subs =
  926|  2.00k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (926:17): [True: 0, False: 2.00k]
  ------------------
  927|  2.00k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
  928|  2.00k|            auto next = get<1>(subs);
  929|  2.00k|            auto ts   = get<2>(subs);
  930|  2.00k|            auto tail = get<3>(subs);
  931|  2.00k|            IMMER_TRY {
  ------------------
  |  |   49|  2.00k|#define IMMER_TRY try
  ------------------
  932|  2.00k|                if (next) {
  ------------------
  |  Branch (932:21): [True: 587, False: 1.41k]
  ------------------
  933|    587|                    if (mutate) {
  ------------------
  |  Branch (933:25): [True: 0, False: 587]
  ------------------
  934|      0|                        auto nodr = node->ensure_mutable_relaxed_n(e, idx);
  935|      0|                        pos.each_right(dec_visitor{}, idx + 1);
  936|      0|                        node->inner()[idx] = next;
  937|      0|                        nodr->d.sizes[idx] = last + 1 - ts;
  938|      0|                        nodr->d.count      = idx + 1;
  939|      0|                        assert(nodr->d.sizes[idx]);
  ------------------
  |  Branch (939:25): [True: 0, False: 0]
  ------------------
  940|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
  941|    587|                    } else {
  942|    587|                        auto newn = node_t::copy_inner_r_e(e, node, idx);
  943|    587|                        auto newr = newn->relaxed();
  944|    587|                        newn->inner()[idx] = next;
  945|    587|                        newr->d.sizes[idx] = last + 1 - ts;
  946|    587|                        newr->d.count      = idx + 1;
  947|    587|                        assert(newr->d.sizes[idx]);
  ------------------
  |  Branch (947:25): [True: 587, False: 0]
  ------------------
  948|    587|                        if (Mutating)
  ------------------
  |  Branch (948:29): [Folded, False: 587]
  ------------------
  949|      0|                            pos.visit(dec_visitor{});
  950|    587|                        return std::make_tuple(pos.shift(), newn, ts, tail);
  951|    587|                    }
  952|  1.41k|                } else if (idx == 0) {
  ------------------
  |  Branch (952:28): [True: 0, False: 1.41k]
  ------------------
  953|      0|                    if (Mutating)
  ------------------
  |  Branch (953:25): [Folded, False: 0]
  ------------------
  954|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
  955|      0|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
  956|  1.41k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (956:28): [True: 1.41k, Folded]
  |  Branch (956:40): [True: 692, False: 724]
  |  Branch (956:52): [True: 400, False: 292]
  ------------------
  957|    400|                    auto newn = pos.node()->inner()[0];
  958|    400|                    if (!mutate)
  ------------------
  |  Branch (958:25): [True: 400, False: 0]
  ------------------
  959|    400|                        newn->inc();
  960|    400|                    if (Mutating)
  ------------------
  |  Branch (960:25): [Folded, False: 400]
  ------------------
  961|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
  962|    400|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
  963|  1.01k|                } else {
  964|  1.01k|                    if (mutate) {
  ------------------
  |  Branch (964:25): [True: 0, False: 1.01k]
  ------------------
  965|      0|                        pos.each_right(dec_visitor{}, idx + 1);
  966|      0|                        node->ensure_mutable_relaxed_n(e, idx)->d.count = idx;
  967|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
  968|  1.01k|                    } else {
  969|  1.01k|                        auto newn = node_t::copy_inner_r_e(e, node, idx);
  970|  1.01k|                        if (Mutating)
  ------------------
  |  Branch (970:29): [Folded, False: 1.01k]
  ------------------
  971|      0|                            pos.visit(dec_visitor{});
  972|  1.01k|                        return std::make_tuple(pos.shift(), newn, ts, tail);
  973|  1.01k|                    }
  974|  1.01k|                }
  975|  2.00k|            }
  976|  2.00k|            IMMER_CATCH (...) {
  977|      0|                assert(!mutate);
  ------------------
  |  Branch (977:17): [True: 0, False: 0]
  ------------------
  978|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (978:17): [True: 0, False: 0]
  |  Branch (978:17): [True: 0, False: 0]
  |  Branch (978:17): [True: 0, False: 0]
  ------------------
  979|      0|                if (next)
  ------------------
  |  Branch (979:21): [True: 0, False: 0]
  ------------------
  980|      0|                    dec_inner(next,
  981|      0|                              pos.shift() - B,
  982|      0|                              last + 1 - ts - pos.size_before(idx));
  983|      0|                dec_leaf(tail, ts);
  984|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  985|      0|            }
  986|  2.00k|        }
  987|  17.7k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb0EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  1.43k|    {
  992|  1.43k|        auto idx    = pos.index(last);
  993|  1.43k|        auto node   = pos.node();
  994|  1.43k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [Folded, False: 1.43k]
  |  Branch (994:35): [True: 0, False: 0]
  ------------------
  995|  1.43k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [True: 1.43k, Folded]
  |  Branch (995:25): [True: 401, False: 1.03k]
  ------------------
  996|    401|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 0, False: 401]
  ------------------
  997|    401|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|    401|            if (Mutating)
  ------------------
  |  Branch (998:17): [Folded, False: 401]
  ------------------
  999|      0|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|    401|            return res;
 1001|  1.03k|        } else {
 1002|  1.03k|            using std::get;
 1003|  1.03k|            auto subs =
 1004|  1.03k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 0, False: 1.03k]
  ------------------
 1005|  1.03k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  1.03k|            auto next = get<1>(subs);
 1007|  1.03k|            auto ts   = get<2>(subs);
 1008|  1.03k|            auto tail = get<3>(subs);
 1009|  1.03k|            IMMER_TRY {
  ------------------
  |  |   49|  1.03k|#define IMMER_TRY try
  ------------------
 1010|  1.03k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 216, False: 821]
  ------------------
 1011|    216|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 0, False: 216]
  ------------------
 1012|      0|                        node->inner()[idx] = next;
 1013|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|    216|                    } else {
 1016|    216|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    216|                        newn->inner()[idx] = next;
 1018|    216|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [Folded, False: 216]
  ------------------
 1019|      0|                            pos.visit(dec_visitor{});
 1020|    216|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    216|                    }
 1022|    821|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 0, False: 821]
  ------------------
 1023|      0|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [Folded, False: 0]
  ------------------
 1024|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|      0|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|    821|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [True: 821, Folded]
  |  Branch (1026:40): [True: 568, False: 253]
  |  Branch (1026:52): [True: 203, False: 365]
  ------------------
 1027|    203|                    auto newn = pos.node()->inner()[0];
 1028|    203|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 203, False: 0]
  ------------------
 1029|    203|                        newn->inc();
 1030|    203|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [Folded, False: 203]
  ------------------
 1031|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|    203|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|    618|                } else {
 1034|    618|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 0, False: 618]
  ------------------
 1035|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|    618|                    } else {
 1038|    618|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|    618|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [Folded, False: 618]
  ------------------
 1040|      0|                            pos.visit(dec_visitor{});
 1041|    618|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|    618|                    }
 1043|    618|                }
 1044|  1.03k|            }
 1045|  1.03k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  1.03k|        }
 1055|  1.43k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb0EE10visit_leafIRNS1_13full_leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|  1.42k|    {
 1060|  1.42k|        auto old_tail_size = pos.count();
 1061|  1.42k|        auto new_tail_size = pos.index(last) + 1;
 1062|  1.42k|        auto node          = pos.node();
 1063|  1.42k|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [Folded, False: 1.42k]
  |  Branch (1063:42): [True: 0, False: 0]
  ------------------
 1064|  1.42k|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 692, False: 734]
  ------------------
 1065|    692|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [True: 692, Folded]
  ------------------
 1066|    692|                node->inc();
 1067|    692|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|    734|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 0, False: 734]
  ------------------
 1069|      0|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|      0|                              old_tail_size - new_tail_size);
 1071|      0|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|    734|        } else {
 1073|    734|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|    734|            if (Mutating)
  ------------------
  |  Branch (1074:17): [Folded, False: 734]
  ------------------
 1075|      0|                pos.visit(dec_visitor{});
 1076|    734|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|    734|        }
 1078|  1.42k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb0EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  1.84k|    {
  992|  1.84k|        auto idx    = pos.index(last);
  993|  1.84k|        auto node   = pos.node();
  994|  1.84k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [Folded, False: 1.84k]
  |  Branch (994:35): [True: 0, False: 0]
  ------------------
  995|  1.84k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [True: 1.84k, Folded]
  |  Branch (995:25): [True: 596, False: 1.24k]
  ------------------
  996|    596|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 0, False: 596]
  ------------------
  997|    596|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|    596|            if (Mutating)
  ------------------
  |  Branch (998:17): [Folded, False: 596]
  ------------------
  999|      0|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|    596|            return res;
 1001|  1.24k|        } else {
 1002|  1.24k|            using std::get;
 1003|  1.24k|            auto subs =
 1004|  1.24k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 0, False: 1.24k]
  ------------------
 1005|  1.24k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  1.24k|            auto next = get<1>(subs);
 1007|  1.24k|            auto ts   = get<2>(subs);
 1008|  1.24k|            auto tail = get<3>(subs);
 1009|  1.24k|            IMMER_TRY {
  ------------------
  |  |   49|  1.24k|#define IMMER_TRY try
  ------------------
 1010|  1.24k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 232, False: 1.01k]
  ------------------
 1011|    232|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 0, False: 232]
  ------------------
 1012|      0|                        node->inner()[idx] = next;
 1013|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|    232|                    } else {
 1016|    232|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    232|                        newn->inner()[idx] = next;
 1018|    232|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [Folded, False: 232]
  ------------------
 1019|      0|                            pos.visit(dec_visitor{});
 1020|    232|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    232|                    }
 1022|  1.01k|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 0, False: 1.01k]
  ------------------
 1023|      0|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [Folded, False: 0]
  ------------------
 1024|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|      0|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|  1.01k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [True: 1.01k, Folded]
  |  Branch (1026:40): [True: 682, False: 333]
  |  Branch (1026:52): [True: 220, False: 462]
  ------------------
 1027|    220|                    auto newn = pos.node()->inner()[0];
 1028|    220|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 220, False: 0]
  ------------------
 1029|    220|                        newn->inc();
 1030|    220|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [Folded, False: 220]
  ------------------
 1031|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|    220|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|    795|                } else {
 1034|    795|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 0, False: 795]
  ------------------
 1035|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|    795|                    } else {
 1038|    795|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|    795|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [Folded, False: 795]
  ------------------
 1040|      0|                            pos.visit(dec_visitor{});
 1041|    795|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|    795|                    }
 1043|    795|                }
 1044|  1.24k|            }
 1045|  1.24k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  1.24k|        }
 1055|  1.84k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE10visit_leafIRNS1_13full_leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|  6.53k|    {
 1060|  6.53k|        auto old_tail_size = pos.count();
 1061|  6.53k|        auto new_tail_size = pos.index(last) + 1;
 1062|  6.53k|        auto node          = pos.node();
 1063|  6.53k|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [True: 6.53k, Folded]
  |  Branch (1063:42): [True: 1.04k, False: 5.49k]
  ------------------
 1064|  6.53k|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 1.21k, False: 5.32k]
  ------------------
 1065|  1.21k|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [Folded, False: 1.21k]
  ------------------
 1066|      0|                node->inc();
 1067|  1.21k|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|  5.32k|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 1.03k, False: 4.29k]
  ------------------
 1069|  1.03k|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|  1.03k|                              old_tail_size - new_tail_size);
 1071|  1.03k|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|  4.29k|        } else {
 1073|  4.29k|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|  4.29k|            if (Mutating)
  ------------------
  |  Branch (1074:17): [True: 4.29k, Folded]
  ------------------
 1075|  4.29k|                pos.visit(dec_visitor{});
 1076|  4.29k|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|  4.29k|        }
 1078|  6.53k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  4.90k|    {
  992|  4.90k|        auto idx    = pos.index(last);
  993|  4.90k|        auto node   = pos.node();
  994|  4.90k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [True: 4.90k, Folded]
  |  Branch (994:35): [True: 2.61k, False: 2.29k]
  ------------------
  995|  4.90k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [Folded, False: 4.90k]
  |  Branch (995:25): [True: 0, False: 0]
  ------------------
  996|      0|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 0, False: 0]
  ------------------
  997|      0|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|      0|            if (Mutating)
  ------------------
  |  Branch (998:17): [True: 0, Folded]
  ------------------
  999|      0|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|      0|            return res;
 1001|  4.90k|        } else {
 1002|  4.90k|            using std::get;
 1003|  4.90k|            auto subs =
 1004|  4.90k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 2.61k, False: 2.29k]
  ------------------
 1005|  4.90k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  4.90k|            auto next = get<1>(subs);
 1007|  4.90k|            auto ts   = get<2>(subs);
 1008|  4.90k|            auto tail = get<3>(subs);
 1009|  4.90k|            IMMER_TRY {
  ------------------
  |  |   49|  4.90k|#define IMMER_TRY try
  ------------------
 1010|  4.90k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 905, False: 3.99k]
  ------------------
 1011|    905|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 622, False: 283]
  ------------------
 1012|    622|                        node->inner()[idx] = next;
 1013|    622|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|    622|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|    622|                    } else {
 1016|    283|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    283|                        newn->inner()[idx] = next;
 1018|    283|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [True: 283, Folded]
  ------------------
 1019|    283|                            pos.visit(dec_visitor{});
 1020|    283|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    283|                    }
 1022|  3.99k|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 1.51k, False: 2.48k]
  ------------------
 1023|  1.51k|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [True: 1.51k, Folded]
  ------------------
 1024|  1.51k|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|  1.51k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|  2.48k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [Folded, False: 2.48k]
  |  Branch (1026:40): [True: 0, False: 0]
  |  Branch (1026:52): [True: 0, False: 0]
  ------------------
 1027|      0|                    auto newn = pos.node()->inner()[0];
 1028|      0|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 0, False: 0]
  ------------------
 1029|      0|                        newn->inc();
 1030|      0|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [True: 0, Folded]
  ------------------
 1031|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|      0|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|  2.48k|                } else {
 1034|  2.48k|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 1.52k, False: 964]
  ------------------
 1035|  1.52k|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|  1.52k|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|  1.52k|                    } else {
 1038|    964|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|    964|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [True: 964, Folded]
  ------------------
 1040|    964|                            pos.visit(dec_visitor{});
 1041|    964|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|    964|                    }
 1043|  2.48k|                }
 1044|  4.90k|            }
 1045|  4.90k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  4.90k|        }
 1055|  4.90k|    }
_ZN5immer6detail4rbts17dec_right_visitor13visit_regularIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_j:
  878|  3.39k|    {
  879|  3.39k|        using node_t = node_type<Pos>;
  880|  3.39k|        auto node    = p.node();
  881|  3.39k|        if (node->dec()) {
  ------------------
  |  Branch (881:13): [True: 1.53k, False: 1.86k]
  ------------------
  882|  1.53k|            p.each_right(dec_t{}, idx);
  883|  1.53k|            node_t::delete_inner(node, p.count());
  884|  1.53k|        }
  885|  3.39k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE10visit_leafIRNS1_13full_leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|  10.8k|    {
 1060|  10.8k|        auto old_tail_size = pos.count();
 1061|  10.8k|        auto new_tail_size = pos.index(last) + 1;
 1062|  10.8k|        auto node          = pos.node();
 1063|  10.8k|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [Folded, False: 10.8k]
  |  Branch (1063:42): [True: 0, False: 0]
  ------------------
 1064|  10.8k|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 2.81k, False: 8.02k]
  ------------------
 1065|  2.81k|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [True: 2.81k, Folded]
  ------------------
 1066|  2.81k|                node->inc();
 1067|  2.81k|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|  8.02k|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 0, False: 8.02k]
  ------------------
 1069|      0|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|      0|                              old_tail_size - new_tail_size);
 1071|      0|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|  8.02k|        } else {
 1073|  8.02k|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|  8.02k|            if (Mutating)
  ------------------
  |  Branch (1074:17): [Folded, False: 8.02k]
  ------------------
 1075|      0|                pos.visit(dec_visitor{});
 1076|  8.02k|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|  8.02k|        }
 1078|  10.8k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  3.24k|    {
  992|  3.24k|        auto idx    = pos.index(last);
  993|  3.24k|        auto node   = pos.node();
  994|  3.24k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [Folded, False: 3.24k]
  |  Branch (994:35): [True: 0, False: 0]
  ------------------
  995|  3.24k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [Folded, False: 3.24k]
  |  Branch (995:25): [True: 0, False: 0]
  ------------------
  996|      0|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 0, False: 0]
  ------------------
  997|      0|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|      0|            if (Mutating)
  ------------------
  |  Branch (998:17): [Folded, False: 0]
  ------------------
  999|      0|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|      0|            return res;
 1001|  3.24k|        } else {
 1002|  3.24k|            using std::get;
 1003|  3.24k|            auto subs =
 1004|  3.24k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 0, False: 3.24k]
  ------------------
 1005|  3.24k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  3.24k|            auto next = get<1>(subs);
 1007|  3.24k|            auto ts   = get<2>(subs);
 1008|  3.24k|            auto tail = get<3>(subs);
 1009|  3.24k|            IMMER_TRY {
  ------------------
  |  |   49|  3.24k|#define IMMER_TRY try
  ------------------
 1010|  3.24k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 302, False: 2.94k]
  ------------------
 1011|    302|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 0, False: 302]
  ------------------
 1012|      0|                        node->inner()[idx] = next;
 1013|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|    302|                    } else {
 1016|    302|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    302|                        newn->inner()[idx] = next;
 1018|    302|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [Folded, False: 302]
  ------------------
 1019|      0|                            pos.visit(dec_visitor{});
 1020|    302|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    302|                    }
 1022|  2.94k|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 1.27k, False: 1.67k]
  ------------------
 1023|  1.27k|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [Folded, False: 1.27k]
  ------------------
 1024|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|  1.27k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|  1.67k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [Folded, False: 1.67k]
  |  Branch (1026:40): [True: 0, False: 0]
  |  Branch (1026:52): [True: 0, False: 0]
  ------------------
 1027|      0|                    auto newn = pos.node()->inner()[0];
 1028|      0|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 0, False: 0]
  ------------------
 1029|      0|                        newn->inc();
 1030|      0|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [Folded, False: 0]
  ------------------
 1031|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|      0|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|  1.67k|                } else {
 1034|  1.67k|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 0, False: 1.67k]
  ------------------
 1035|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|  1.67k|                    } else {
 1038|  1.67k|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|  1.67k|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [Folded, False: 1.67k]
  ------------------
 1040|      0|                            pos.visit(dec_visitor{});
 1041|  1.67k|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|  1.67k|                    }
 1043|  1.67k|                }
 1044|  3.24k|            }
 1045|  3.24k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  3.24k|        }
 1055|  3.24k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb0EE10visit_leafIRNS1_8leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|    405|    {
 1060|    405|        auto old_tail_size = pos.count();
 1061|    405|        auto new_tail_size = pos.index(last) + 1;
 1062|    405|        auto node          = pos.node();
 1063|    405|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [Folded, False: 405]
  |  Branch (1063:42): [True: 0, False: 0]
  ------------------
 1064|    405|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 201, False: 204]
  ------------------
 1065|    201|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [True: 201, Folded]
  ------------------
 1066|    201|                node->inc();
 1067|    201|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|    204|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 0, False: 204]
  ------------------
 1069|      0|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|      0|                              old_tail_size - new_tail_size);
 1071|      0|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|    204|        } else {
 1073|    204|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|    204|            if (Mutating)
  ------------------
  |  Branch (1074:17): [Folded, False: 204]
  ------------------
 1075|      0|                pos.visit(dec_visitor{});
 1076|    204|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|    204|        }
 1078|    405|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE10visit_leafIRNS1_8leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|  2.39k|    {
 1060|  2.39k|        auto old_tail_size = pos.count();
 1061|  2.39k|        auto new_tail_size = pos.index(last) + 1;
 1062|  2.39k|        auto node          = pos.node();
 1063|  2.39k|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [True: 2.39k, Folded]
  |  Branch (1063:42): [True: 340, False: 2.05k]
  ------------------
 1064|  2.39k|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 239, False: 2.15k]
  ------------------
 1065|    239|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [Folded, False: 239]
  ------------------
 1066|      0|                node->inc();
 1067|    239|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|  2.15k|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 322, False: 1.83k]
  ------------------
 1069|    322|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|    322|                              old_tail_size - new_tail_size);
 1071|    322|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|  1.83k|        } else {
 1073|  1.83k|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|  1.83k|            if (Mutating)
  ------------------
  |  Branch (1074:17): [True: 1.83k, Folded]
  ------------------
 1075|  1.83k|                pos.visit(dec_visitor{});
 1076|  1.83k|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|  1.83k|        }
 1078|  2.39k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE13visit_regularIRNS1_11regular_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  6.13k|    {
  992|  6.13k|        auto idx    = pos.index(last);
  993|  6.13k|        auto node   = pos.node();
  994|  6.13k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [True: 6.13k, Folded]
  |  Branch (994:35): [True: 5.51k, False: 616]
  ------------------
  995|  6.13k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [Folded, False: 6.13k]
  |  Branch (995:25): [True: 0, False: 0]
  ------------------
  996|      0|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 0, False: 0]
  ------------------
  997|      0|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|      0|            if (Mutating)
  ------------------
  |  Branch (998:17): [True: 0, Folded]
  ------------------
  999|      0|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|      0|            return res;
 1001|  6.13k|        } else {
 1002|  6.13k|            using std::get;
 1003|  6.13k|            auto subs =
 1004|  6.13k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 5.51k, False: 616]
  ------------------
 1005|  6.13k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  6.13k|            auto next = get<1>(subs);
 1007|  6.13k|            auto ts   = get<2>(subs);
 1008|  6.13k|            auto tail = get<3>(subs);
 1009|  6.13k|            IMMER_TRY {
  ------------------
  |  |   49|  6.13k|#define IMMER_TRY try
  ------------------
 1010|  6.13k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 1.49k, False: 4.63k]
  ------------------
 1011|  1.49k|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 1.29k, False: 197]
  ------------------
 1012|  1.29k|                        node->inner()[idx] = next;
 1013|  1.29k|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|  1.29k|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|  1.29k|                    } else {
 1016|    197|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    197|                        newn->inner()[idx] = next;
 1018|    197|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [True: 197, Folded]
  ------------------
 1019|    197|                            pos.visit(dec_visitor{});
 1020|    197|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    197|                    }
 1022|  4.63k|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 3.90k, False: 739]
  ------------------
 1023|  3.90k|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [True: 3.90k, Folded]
  ------------------
 1024|  3.90k|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|  3.90k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|  3.90k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [Folded, False: 739]
  |  Branch (1026:40): [True: 0, False: 0]
  |  Branch (1026:52): [True: 0, False: 0]
  ------------------
 1027|      0|                    auto newn = pos.node()->inner()[0];
 1028|      0|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 0, False: 0]
  ------------------
 1029|      0|                        newn->inc();
 1030|      0|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [True: 0, Folded]
  ------------------
 1031|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|      0|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|    739|                } else {
 1034|    739|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 529, False: 210]
  ------------------
 1035|    529|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|    529|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|    529|                    } else {
 1038|    210|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|    210|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [True: 210, Folded]
  ------------------
 1040|    210|                            pos.visit(dec_visitor{});
 1041|    210|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|    210|                    }
 1043|    739|                }
 1044|  6.13k|            }
 1045|  6.13k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  6.13k|        }
 1055|  6.13k|    }
_ZN5immer6detail4rbts17dec_right_visitor13visit_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_j:
  878|  3.90k|    {
  879|  3.90k|        using node_t = node_type<Pos>;
  880|  3.90k|        auto node    = p.node();
  881|  3.90k|        if (node->dec()) {
  ------------------
  |  Branch (881:13): [True: 3.69k, False: 209]
  ------------------
  882|  3.69k|            p.each_right(dec_t{}, idx);
  883|  3.69k|            node_t::delete_inner(node, p.count());
  884|  3.69k|        }
  885|  3.90k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE10visit_leafIRNS1_8leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|  2.62k|    {
 1060|  2.62k|        auto old_tail_size = pos.count();
 1061|  2.62k|        auto new_tail_size = pos.index(last) + 1;
 1062|  2.62k|        auto node          = pos.node();
 1063|  2.62k|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [Folded, False: 2.62k]
  |  Branch (1063:42): [True: 0, False: 0]
  ------------------
 1064|  2.62k|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 779, False: 1.84k]
  ------------------
 1065|    779|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [True: 779, Folded]
  ------------------
 1066|    779|                node->inc();
 1067|    779|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|  1.84k|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 0, False: 1.84k]
  ------------------
 1069|      0|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|      0|                              old_tail_size - new_tail_size);
 1071|      0|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|  1.84k|        } else {
 1073|  1.84k|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|  1.84k|            if (Mutating)
  ------------------
  |  Branch (1074:17): [Folded, False: 1.84k]
  ------------------
 1075|      0|                pos.visit(dec_visitor{});
 1076|  1.84k|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|  1.84k|        }
 1078|  2.62k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE13visit_regularIRNS1_11regular_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  3.35k|    {
  992|  3.35k|        auto idx    = pos.index(last);
  993|  3.35k|        auto node   = pos.node();
  994|  3.35k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [Folded, False: 3.35k]
  |  Branch (994:35): [True: 0, False: 0]
  ------------------
  995|  3.35k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [Folded, False: 3.35k]
  |  Branch (995:25): [True: 0, False: 0]
  ------------------
  996|      0|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 0, False: 0]
  ------------------
  997|      0|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|      0|            if (Mutating)
  ------------------
  |  Branch (998:17): [Folded, False: 0]
  ------------------
  999|      0|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|      0|            return res;
 1001|  3.35k|        } else {
 1002|  3.35k|            using std::get;
 1003|  3.35k|            auto subs =
 1004|  3.35k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 0, False: 3.35k]
  ------------------
 1005|  3.35k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  3.35k|            auto next = get<1>(subs);
 1007|  3.35k|            auto ts   = get<2>(subs);
 1008|  3.35k|            auto tail = get<3>(subs);
 1009|  3.35k|            IMMER_TRY {
  ------------------
  |  |   49|  3.35k|#define IMMER_TRY try
  ------------------
 1010|  3.35k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 414, False: 2.93k]
  ------------------
 1011|    414|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 0, False: 414]
  ------------------
 1012|      0|                        node->inner()[idx] = next;
 1013|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|    414|                    } else {
 1016|    414|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    414|                        newn->inner()[idx] = next;
 1018|    414|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [Folded, False: 414]
  ------------------
 1019|      0|                            pos.visit(dec_visitor{});
 1020|    414|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    414|                    }
 1022|  2.93k|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 2.07k, False: 860]
  ------------------
 1023|  2.07k|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [Folded, False: 2.07k]
  ------------------
 1024|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|  2.07k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|  2.07k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [Folded, False: 860]
  |  Branch (1026:40): [True: 0, False: 0]
  |  Branch (1026:52): [True: 0, False: 0]
  ------------------
 1027|      0|                    auto newn = pos.node()->inner()[0];
 1028|      0|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 0, False: 0]
  ------------------
 1029|      0|                        newn->inc();
 1030|      0|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [Folded, False: 0]
  ------------------
 1031|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|      0|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|    860|                } else {
 1034|    860|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 0, False: 860]
  ------------------
 1035|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|    860|                    } else {
 1038|    860|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|    860|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [Folded, False: 860]
  ------------------
 1040|      0|                            pos.visit(dec_visitor{});
 1041|    860|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|    860|                    }
 1043|    860|                }
 1044|  3.35k|            }
 1045|  3.35k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  3.35k|        }
 1055|  3.35k|    }
_ZN5immer6detail4rbts17dec_right_visitor13visit_relaxedIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_j:
  867|  35.0k|    {
  868|  35.0k|        using node_t = node_type<Pos>;
  869|  35.0k|        auto node    = p.node();
  870|  35.0k|        if (node->dec()) {
  ------------------
  |  Branch (870:13): [True: 29.1k, False: 5.83k]
  ------------------
  871|  29.1k|            p.each_right(dec_t{}, idx);
  872|  29.1k|            node_t::delete_inner_r(node, p.count());
  873|  29.1k|        }
  874|  35.0k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|  3.72k|    {
 1060|  3.72k|        auto old_tail_size = pos.count();
 1061|  3.72k|        auto new_tail_size = pos.index(last) + 1;
 1062|  3.72k|        auto node          = pos.node();
 1063|  3.72k|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [True: 3.72k, Folded]
  |  Branch (1063:42): [True: 989, False: 2.73k]
  ------------------
 1064|  3.72k|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 1.35k, False: 2.37k]
  ------------------
 1065|  1.35k|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [Folded, False: 1.35k]
  ------------------
 1066|      0|                node->inc();
 1067|  1.35k|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|  2.37k|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 875, False: 1.49k]
  ------------------
 1069|    875|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|    875|                              old_tail_size - new_tail_size);
 1071|    875|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|  1.49k|        } else {
 1073|  1.49k|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|  1.49k|            if (Mutating)
  ------------------
  |  Branch (1074:17): [True: 1.49k, Folded]
  ------------------
 1075|  1.49k|                pos.visit(dec_visitor{});
 1076|  1.49k|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|  1.49k|        }
 1078|  3.72k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  913|  12.7k|    {
  914|  12.7k|        auto idx    = pos.index(last);
  915|  12.7k|        auto node   = pos.node();
  916|  12.7k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (916:23): [True: 12.7k, Folded]
  |  Branch (916:35): [True: 9.26k, False: 3.50k]
  ------------------
  917|  12.7k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (917:13): [Folded, False: 12.7k]
  |  Branch (917:25): [True: 0, False: 0]
  ------------------
  918|      0|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (918:24): [True: 0, False: 0]
  ------------------
  919|      0|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  920|      0|            if (Mutating)
  ------------------
  |  Branch (920:17): [True: 0, Folded]
  ------------------
  921|      0|                pos.visit(dec_right_visitor{}, count_t{1});
  922|      0|            return res;
  923|  12.7k|        } else {
  924|  12.7k|            using std::get;
  925|  12.7k|            auto subs =
  926|  12.7k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (926:17): [True: 9.26k, False: 3.50k]
  ------------------
  927|  12.7k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
  928|  12.7k|            auto next = get<1>(subs);
  929|  12.7k|            auto ts   = get<2>(subs);
  930|  12.7k|            auto tail = get<3>(subs);
  931|  12.7k|            IMMER_TRY {
  ------------------
  |  |   49|  12.7k|#define IMMER_TRY try
  ------------------
  932|  12.7k|                if (next) {
  ------------------
  |  Branch (932:21): [True: 7.43k, False: 5.33k]
  ------------------
  933|  7.43k|                    if (mutate) {
  ------------------
  |  Branch (933:25): [True: 5.17k, False: 2.25k]
  ------------------
  934|  5.17k|                        auto nodr = node->ensure_mutable_relaxed_n(e, idx);
  935|  5.17k|                        pos.each_right(dec_visitor{}, idx + 1);
  936|  5.17k|                        node->inner()[idx] = next;
  937|  5.17k|                        nodr->d.sizes[idx] = last + 1 - ts;
  938|  5.17k|                        nodr->d.count      = idx + 1;
  939|  5.17k|                        assert(nodr->d.sizes[idx]);
  ------------------
  |  Branch (939:25): [True: 5.17k, False: 0]
  ------------------
  940|  5.17k|                        return std::make_tuple(pos.shift(), node, ts, tail);
  941|  5.17k|                    } else {
  942|  2.25k|                        auto newn = node_t::copy_inner_r_e(e, node, idx);
  943|  2.25k|                        auto newr = newn->relaxed();
  944|  2.25k|                        newn->inner()[idx] = next;
  945|  2.25k|                        newr->d.sizes[idx] = last + 1 - ts;
  946|  2.25k|                        newr->d.count      = idx + 1;
  947|  2.25k|                        assert(newr->d.sizes[idx]);
  ------------------
  |  Branch (947:25): [True: 2.25k, False: 0]
  ------------------
  948|  2.25k|                        if (Mutating)
  ------------------
  |  Branch (948:29): [True: 2.25k, Folded]
  ------------------
  949|  2.25k|                            pos.visit(dec_visitor{});
  950|  2.25k|                        return std::make_tuple(pos.shift(), newn, ts, tail);
  951|  2.25k|                    }
  952|  7.43k|                } else if (idx == 0) {
  ------------------
  |  Branch (952:28): [True: 2.44k, False: 2.89k]
  ------------------
  953|  2.44k|                    if (Mutating)
  ------------------
  |  Branch (953:25): [True: 2.44k, Folded]
  ------------------
  954|  2.44k|                        pos.visit(dec_right_visitor{}, count_t{1});
  955|  2.44k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
  956|  2.89k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (956:28): [Folded, False: 2.89k]
  |  Branch (956:40): [True: 0, False: 0]
  |  Branch (956:52): [True: 0, False: 0]
  ------------------
  957|      0|                    auto newn = pos.node()->inner()[0];
  958|      0|                    if (!mutate)
  ------------------
  |  Branch (958:25): [True: 0, False: 0]
  ------------------
  959|      0|                        newn->inc();
  960|      0|                    if (Mutating)
  ------------------
  |  Branch (960:25): [True: 0, Folded]
  ------------------
  961|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
  962|      0|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
  963|  2.89k|                } else {
  964|  2.89k|                    if (mutate) {
  ------------------
  |  Branch (964:25): [True: 2.34k, False: 550]
  ------------------
  965|  2.34k|                        pos.each_right(dec_visitor{}, idx + 1);
  966|  2.34k|                        node->ensure_mutable_relaxed_n(e, idx)->d.count = idx;
  967|  2.34k|                        return std::make_tuple(pos.shift(), node, ts, tail);
  968|  2.34k|                    } else {
  969|    550|                        auto newn = node_t::copy_inner_r_e(e, node, idx);
  970|    550|                        if (Mutating)
  ------------------
  |  Branch (970:29): [True: 550, Folded]
  ------------------
  971|    550|                            pos.visit(dec_visitor{});
  972|    550|                        return std::make_tuple(pos.shift(), newn, ts, tail);
  973|    550|                    }
  974|  2.89k|                }
  975|  12.7k|            }
  976|  12.7k|            IMMER_CATCH (...) {
  977|      0|                assert(!mutate);
  ------------------
  |  Branch (977:17): [True: 0, False: 0]
  ------------------
  978|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (978:17): [True: 0, False: 0]
  |  Branch (978:17): [True: 0, False: 0]
  |  Branch (978:17): [True: 0, False: 0]
  ------------------
  979|      0|                if (next)
  ------------------
  |  Branch (979:21): [True: 0, False: 0]
  ------------------
  980|      0|                    dec_inner(next,
  981|      0|                              pos.shift() - B,
  982|      0|                              last + 1 - ts - pos.size_before(idx));
  983|      0|                dec_leaf(tail, ts);
  984|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  985|      0|            }
  986|  12.7k|        }
  987|  12.7k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  8.32k|    {
  992|  8.32k|        auto idx    = pos.index(last);
  993|  8.32k|        auto node   = pos.node();
  994|  8.32k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [True: 8.32k, Folded]
  |  Branch (994:35): [True: 7.29k, False: 1.02k]
  ------------------
  995|  8.32k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [Folded, False: 8.32k]
  |  Branch (995:25): [True: 0, False: 0]
  ------------------
  996|      0|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 0, False: 0]
  ------------------
  997|      0|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|      0|            if (Mutating)
  ------------------
  |  Branch (998:17): [True: 0, Folded]
  ------------------
  999|      0|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|      0|            return res;
 1001|  8.32k|        } else {
 1002|  8.32k|            using std::get;
 1003|  8.32k|            auto subs =
 1004|  8.32k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 7.29k, False: 1.02k]
  ------------------
 1005|  8.32k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  8.32k|            auto next = get<1>(subs);
 1007|  8.32k|            auto ts   = get<2>(subs);
 1008|  8.32k|            auto tail = get<3>(subs);
 1009|  8.32k|            IMMER_TRY {
  ------------------
  |  |   49|  8.32k|#define IMMER_TRY try
  ------------------
 1010|  8.32k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 2.79k, False: 5.52k]
  ------------------
 1011|  2.79k|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 2.48k, False: 308]
  ------------------
 1012|  2.48k|                        node->inner()[idx] = next;
 1013|  2.48k|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|  2.48k|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|  2.48k|                    } else {
 1016|    308|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    308|                        newn->inner()[idx] = next;
 1018|    308|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [True: 308, Folded]
  ------------------
 1019|    308|                            pos.visit(dec_visitor{});
 1020|    308|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    308|                    }
 1022|  5.52k|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 1.05k, False: 4.47k]
  ------------------
 1023|  1.05k|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [True: 1.05k, Folded]
  ------------------
 1024|  1.05k|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|  1.05k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|  4.47k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [Folded, False: 4.47k]
  |  Branch (1026:40): [True: 0, False: 0]
  |  Branch (1026:52): [True: 0, False: 0]
  ------------------
 1027|      0|                    auto newn = pos.node()->inner()[0];
 1028|      0|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 0, False: 0]
  ------------------
 1029|      0|                        newn->inc();
 1030|      0|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [True: 0, Folded]
  ------------------
 1031|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|      0|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|  4.47k|                } else {
 1034|  4.47k|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 4.10k, False: 377]
  ------------------
 1035|  4.10k|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|  4.10k|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|  4.10k|                    } else {
 1038|    377|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|    377|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [True: 377, Folded]
  ------------------
 1040|    377|                            pos.visit(dec_visitor{});
 1041|    377|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|    377|                    }
 1043|  4.47k|                }
 1044|  8.32k|            }
 1045|  8.32k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  8.32k|        }
 1055|  8.32k|    }
_ZN5immer6detail4rbts17dec_right_visitor13visit_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_j:
  878|  10.7k|    {
  879|  10.7k|        using node_t = node_type<Pos>;
  880|  10.7k|        auto node    = p.node();
  881|  10.7k|        if (node->dec()) {
  ------------------
  |  Branch (881:13): [True: 7.56k, False: 3.15k]
  ------------------
  882|  7.56k|            p.each_right(dec_t{}, idx);
  883|  7.56k|            node_t::delete_inner(node, p.count());
  884|  7.56k|        }
  885|  10.7k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|  5.09k|    {
 1060|  5.09k|        auto old_tail_size = pos.count();
 1061|  5.09k|        auto new_tail_size = pos.index(last) + 1;
 1062|  5.09k|        auto node          = pos.node();
 1063|  5.09k|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [Folded, False: 5.09k]
  |  Branch (1063:42): [True: 0, False: 0]
  ------------------
 1064|  5.09k|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 1.42k, False: 3.67k]
  ------------------
 1065|  1.42k|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [True: 1.42k, Folded]
  ------------------
 1066|  1.42k|                node->inc();
 1067|  1.42k|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|  3.67k|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 0, False: 3.67k]
  ------------------
 1069|      0|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|      0|                              old_tail_size - new_tail_size);
 1071|      0|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|  3.67k|        } else {
 1073|  3.67k|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|  3.67k|            if (Mutating)
  ------------------
  |  Branch (1074:17): [Folded, False: 3.67k]
  ------------------
 1075|      0|                pos.visit(dec_visitor{});
 1076|  3.67k|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|  3.67k|        }
 1078|  5.09k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  913|  6.68k|    {
  914|  6.68k|        auto idx    = pos.index(last);
  915|  6.68k|        auto node   = pos.node();
  916|  6.68k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (916:23): [Folded, False: 6.68k]
  |  Branch (916:35): [True: 0, False: 0]
  ------------------
  917|  6.68k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (917:13): [Folded, False: 6.68k]
  |  Branch (917:25): [True: 0, False: 0]
  ------------------
  918|      0|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (918:24): [True: 0, False: 0]
  ------------------
  919|      0|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  920|      0|            if (Mutating)
  ------------------
  |  Branch (920:17): [Folded, False: 0]
  ------------------
  921|      0|                pos.visit(dec_right_visitor{}, count_t{1});
  922|      0|            return res;
  923|  6.68k|        } else {
  924|  6.68k|            using std::get;
  925|  6.68k|            auto subs =
  926|  6.68k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (926:17): [True: 0, False: 6.68k]
  ------------------
  927|  6.68k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
  928|  6.68k|            auto next = get<1>(subs);
  929|  6.68k|            auto ts   = get<2>(subs);
  930|  6.68k|            auto tail = get<3>(subs);
  931|  6.68k|            IMMER_TRY {
  ------------------
  |  |   49|  6.68k|#define IMMER_TRY try
  ------------------
  932|  6.68k|                if (next) {
  ------------------
  |  Branch (932:21): [True: 1.03k, False: 5.65k]
  ------------------
  933|  1.03k|                    if (mutate) {
  ------------------
  |  Branch (933:25): [True: 0, False: 1.03k]
  ------------------
  934|      0|                        auto nodr = node->ensure_mutable_relaxed_n(e, idx);
  935|      0|                        pos.each_right(dec_visitor{}, idx + 1);
  936|      0|                        node->inner()[idx] = next;
  937|      0|                        nodr->d.sizes[idx] = last + 1 - ts;
  938|      0|                        nodr->d.count      = idx + 1;
  939|      0|                        assert(nodr->d.sizes[idx]);
  ------------------
  |  Branch (939:25): [True: 0, False: 0]
  ------------------
  940|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
  941|  1.03k|                    } else {
  942|  1.03k|                        auto newn = node_t::copy_inner_r_e(e, node, idx);
  943|  1.03k|                        auto newr = newn->relaxed();
  944|  1.03k|                        newn->inner()[idx] = next;
  945|  1.03k|                        newr->d.sizes[idx] = last + 1 - ts;
  946|  1.03k|                        newr->d.count      = idx + 1;
  947|  1.03k|                        assert(newr->d.sizes[idx]);
  ------------------
  |  Branch (947:25): [True: 1.03k, False: 0]
  ------------------
  948|  1.03k|                        if (Mutating)
  ------------------
  |  Branch (948:29): [Folded, False: 1.03k]
  ------------------
  949|      0|                            pos.visit(dec_visitor{});
  950|  1.03k|                        return std::make_tuple(pos.shift(), newn, ts, tail);
  951|  1.03k|                    }
  952|  5.65k|                } else if (idx == 0) {
  ------------------
  |  Branch (952:28): [True: 3.92k, False: 1.73k]
  ------------------
  953|  3.92k|                    if (Mutating)
  ------------------
  |  Branch (953:25): [Folded, False: 3.92k]
  ------------------
  954|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
  955|  3.92k|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
  956|  3.92k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (956:28): [Folded, False: 1.73k]
  |  Branch (956:40): [True: 0, False: 0]
  |  Branch (956:52): [True: 0, False: 0]
  ------------------
  957|      0|                    auto newn = pos.node()->inner()[0];
  958|      0|                    if (!mutate)
  ------------------
  |  Branch (958:25): [True: 0, False: 0]
  ------------------
  959|      0|                        newn->inc();
  960|      0|                    if (Mutating)
  ------------------
  |  Branch (960:25): [Folded, False: 0]
  ------------------
  961|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
  962|      0|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
  963|  1.73k|                } else {
  964|  1.73k|                    if (mutate) {
  ------------------
  |  Branch (964:25): [True: 0, False: 1.73k]
  ------------------
  965|      0|                        pos.each_right(dec_visitor{}, idx + 1);
  966|      0|                        node->ensure_mutable_relaxed_n(e, idx)->d.count = idx;
  967|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
  968|  1.73k|                    } else {
  969|  1.73k|                        auto newn = node_t::copy_inner_r_e(e, node, idx);
  970|  1.73k|                        if (Mutating)
  ------------------
  |  Branch (970:29): [Folded, False: 1.73k]
  ------------------
  971|      0|                            pos.visit(dec_visitor{});
  972|  1.73k|                        return std::make_tuple(pos.shift(), newn, ts, tail);
  973|  1.73k|                    }
  974|  1.73k|                }
  975|  6.68k|            }
  976|  6.68k|            IMMER_CATCH (...) {
  977|      0|                assert(!mutate);
  ------------------
  |  Branch (977:17): [True: 0, False: 0]
  ------------------
  978|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (978:17): [True: 0, False: 0]
  |  Branch (978:17): [True: 0, False: 0]
  |  Branch (978:17): [True: 0, False: 0]
  ------------------
  979|      0|                if (next)
  ------------------
  |  Branch (979:21): [True: 0, False: 0]
  ------------------
  980|      0|                    dec_inner(next,
  981|      0|                              pos.shift() - B,
  982|      0|                              last + 1 - ts - pos.size_before(idx));
  983|      0|                dec_leaf(tail, ts);
  984|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  985|      0|            }
  986|  6.68k|        }
  987|  6.68k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  4.23k|    {
  992|  4.23k|        auto idx    = pos.index(last);
  993|  4.23k|        auto node   = pos.node();
  994|  4.23k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [Folded, False: 4.23k]
  |  Branch (994:35): [True: 0, False: 0]
  ------------------
  995|  4.23k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [Folded, False: 4.23k]
  |  Branch (995:25): [True: 0, False: 0]
  ------------------
  996|      0|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 0, False: 0]
  ------------------
  997|      0|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|      0|            if (Mutating)
  ------------------
  |  Branch (998:17): [Folded, False: 0]
  ------------------
  999|      0|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|      0|            return res;
 1001|  4.23k|        } else {
 1002|  4.23k|            using std::get;
 1003|  4.23k|            auto subs =
 1004|  4.23k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 0, False: 4.23k]
  ------------------
 1005|  4.23k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  4.23k|            auto next = get<1>(subs);
 1007|  4.23k|            auto ts   = get<2>(subs);
 1008|  4.23k|            auto tail = get<3>(subs);
 1009|  4.23k|            IMMER_TRY {
  ------------------
  |  |   49|  4.23k|#define IMMER_TRY try
  ------------------
 1010|  4.23k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 823, False: 3.41k]
  ------------------
 1011|    823|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 0, False: 823]
  ------------------
 1012|      0|                        node->inner()[idx] = next;
 1013|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|    823|                    } else {
 1016|    823|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    823|                        newn->inner()[idx] = next;
 1018|    823|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [Folded, False: 823]
  ------------------
 1019|      0|                            pos.visit(dec_visitor{});
 1020|    823|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    823|                    }
 1022|  3.41k|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 815, False: 2.59k]
  ------------------
 1023|    815|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [Folded, False: 815]
  ------------------
 1024|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|    815|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|  2.59k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [Folded, False: 2.59k]
  |  Branch (1026:40): [True: 0, False: 0]
  |  Branch (1026:52): [True: 0, False: 0]
  ------------------
 1027|      0|                    auto newn = pos.node()->inner()[0];
 1028|      0|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 0, False: 0]
  ------------------
 1029|      0|                        newn->inc();
 1030|      0|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [Folded, False: 0]
  ------------------
 1031|      0|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|      0|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|  2.59k|                } else {
 1034|  2.59k|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 0, False: 2.59k]
  ------------------
 1035|      0|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|      0|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|  2.59k|                    } else {
 1038|  2.59k|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|  2.59k|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [Folded, False: 2.59k]
  ------------------
 1040|      0|                            pos.visit(dec_visitor{});
 1041|  2.59k|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|  2.59k|                    }
 1043|  2.59k|                }
 1044|  4.23k|            }
 1045|  4.23k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  4.23k|        }
 1055|  4.23k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  12.5k|    {
  992|  12.5k|        auto idx    = pos.index(last);
  993|  12.5k|        auto node   = pos.node();
  994|  12.5k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [True: 12.5k, Folded]
  |  Branch (994:35): [True: 8.89k, False: 3.62k]
  ------------------
  995|  12.5k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [True: 12.5k, Folded]
  |  Branch (995:25): [True: 7.35k, False: 5.16k]
  ------------------
  996|  7.35k|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 5.29k, False: 2.05k]
  ------------------
  997|  7.35k|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|  7.35k|            if (Mutating)
  ------------------
  |  Branch (998:17): [True: 7.35k, Folded]
  ------------------
  999|  7.35k|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|  7.35k|            return res;
 1001|  7.35k|        } else {
 1002|  5.16k|            using std::get;
 1003|  5.16k|            auto subs =
 1004|  5.16k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 3.60k, False: 1.56k]
  ------------------
 1005|  5.16k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  5.16k|            auto next = get<1>(subs);
 1007|  5.16k|            auto ts   = get<2>(subs);
 1008|  5.16k|            auto tail = get<3>(subs);
 1009|  5.16k|            IMMER_TRY {
  ------------------
  |  |   49|  5.16k|#define IMMER_TRY try
  ------------------
 1010|  5.16k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 1.03k, False: 4.13k]
  ------------------
 1011|  1.03k|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 753, False: 278]
  ------------------
 1012|    753|                        node->inner()[idx] = next;
 1013|    753|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|    753|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|    753|                    } else {
 1016|    278|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    278|                        newn->inner()[idx] = next;
 1018|    278|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [True: 278, Folded]
  ------------------
 1019|    278|                            pos.visit(dec_visitor{});
 1020|    278|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    278|                    }
 1022|  4.13k|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 0, False: 4.13k]
  ------------------
 1023|      0|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [True: 0, Folded]
  ------------------
 1024|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|      0|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|  4.13k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [True: 4.13k, Folded]
  |  Branch (1026:40): [True: 3.56k, False: 575]
  |  Branch (1026:52): [True: 2.31k, False: 1.24k]
  ------------------
 1027|  2.31k|                    auto newn = pos.node()->inner()[0];
 1028|  2.31k|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 754, False: 1.56k]
  ------------------
 1029|    754|                        newn->inc();
 1030|  2.31k|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [True: 2.31k, Folded]
  ------------------
 1031|  2.31k|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|  2.31k|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|  2.31k|                } else {
 1034|  1.82k|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 1.28k, False: 532]
  ------------------
 1035|  1.28k|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|  1.28k|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|  1.28k|                    } else {
 1038|    532|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|    532|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [True: 532, Folded]
  ------------------
 1040|    532|                            pos.visit(dec_visitor{});
 1041|    532|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|    532|                    }
 1043|  1.82k|                }
 1044|  5.16k|            }
 1045|  5.16k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  5.16k|        }
 1055|  12.5k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE10visit_leafIRNS1_13full_leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|  1.64k|    {
 1060|  1.64k|        auto old_tail_size = pos.count();
 1061|  1.64k|        auto new_tail_size = pos.index(last) + 1;
 1062|  1.64k|        auto node          = pos.node();
 1063|  1.64k|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [True: 1.64k, Folded]
  |  Branch (1063:42): [True: 596, False: 1.04k]
  ------------------
 1064|  1.64k|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 721, False: 921]
  ------------------
 1065|    721|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [Folded, False: 721]
  ------------------
 1066|      0|                node->inc();
 1067|    721|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|    921|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 510, False: 411]
  ------------------
 1069|    510|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|    510|                              old_tail_size - new_tail_size);
 1071|    510|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|    510|        } else {
 1073|    411|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|    411|            if (Mutating)
  ------------------
  |  Branch (1074:17): [True: 411, Folded]
  ------------------
 1075|    411|                pos.visit(dec_visitor{});
 1076|    411|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|    411|        }
 1078|  1.64k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
  991|  3.83k|    {
  992|  3.83k|        auto idx    = pos.index(last);
  993|  3.83k|        auto node   = pos.node();
  994|  3.83k|        auto mutate = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (994:23): [True: 3.83k, Folded]
  |  Branch (994:35): [True: 1.76k, False: 2.06k]
  ------------------
  995|  3.83k|        if (Collapse && idx == 0) {
  ------------------
  |  Branch (995:13): [True: 3.83k, Folded]
  |  Branch (995:25): [True: 1.43k, False: 2.39k]
  ------------------
  996|  1.43k|            auto res = mutate ? pos.towards_oh(this_t{}, last, idx, e)
  ------------------
  |  Branch (996:24): [True: 819, False: 618]
  ------------------
  997|  1.43k|                              : pos.towards_oh(no_mut_t{}, last, idx, e);
  998|  1.43k|            if (Mutating)
  ------------------
  |  Branch (998:17): [True: 1.43k, Folded]
  ------------------
  999|  1.43k|                pos.visit(dec_right_visitor{}, count_t{1});
 1000|  1.43k|            return res;
 1001|  2.39k|        } else {
 1002|  2.39k|            using std::get;
 1003|  2.39k|            auto subs =
 1004|  2.39k|                mutate ? pos.towards_oh(no_collapse_t{}, last, idx, e)
  ------------------
  |  Branch (1004:17): [True: 944, False: 1.45k]
  ------------------
 1005|  2.39k|                       : pos.towards_oh(no_collapse_no_mut_t{}, last, idx, e);
 1006|  2.39k|            auto next = get<1>(subs);
 1007|  2.39k|            auto ts   = get<2>(subs);
 1008|  2.39k|            auto tail = get<3>(subs);
 1009|  2.39k|            IMMER_TRY {
  ------------------
  |  |   49|  2.39k|#define IMMER_TRY try
  ------------------
 1010|  2.39k|                if (next) {
  ------------------
  |  Branch (1010:21): [True: 665, False: 1.73k]
  ------------------
 1011|    665|                    if (mutate) {
  ------------------
  |  Branch (1011:25): [True: 469, False: 196]
  ------------------
 1012|    469|                        node->inner()[idx] = next;
 1013|    469|                        pos.each_right(dec_visitor{}, idx + 1);
 1014|    469|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1015|    469|                    } else {
 1016|    196|                        auto newn          = node_t::copy_inner_e(e, node, idx);
 1017|    196|                        newn->inner()[idx] = next;
 1018|    196|                        if (Mutating)
  ------------------
  |  Branch (1018:29): [True: 196, Folded]
  ------------------
 1019|    196|                            pos.visit(dec_visitor{});
 1020|    196|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1021|    196|                    }
 1022|  1.73k|                } else if (idx == 0) {
  ------------------
  |  Branch (1022:28): [True: 0, False: 1.73k]
  ------------------
 1023|      0|                    if (Mutating)
  ------------------
  |  Branch (1023:25): [True: 0, Folded]
  ------------------
 1024|      0|                        pos.visit(dec_right_visitor{}, count_t{1});
 1025|      0|                    return std::make_tuple(pos.shift(), nullptr, ts, tail);
 1026|  1.73k|                } else if (Collapse && idx == 1 && pos.shift() > BL) {
  ------------------
  |  Branch (1026:28): [True: 1.73k, Folded]
  |  Branch (1026:40): [True: 1.23k, False: 498]
  |  Branch (1026:52): [True: 443, False: 789]
  ------------------
 1027|    443|                    auto newn = pos.node()->inner()[0];
 1028|    443|                    if (!mutate)
  ------------------
  |  Branch (1028:25): [True: 198, False: 245]
  ------------------
 1029|    198|                        newn->inc();
 1030|    443|                    if (Mutating)
  ------------------
  |  Branch (1030:25): [True: 443, Folded]
  ------------------
 1031|    443|                        pos.visit(dec_right_visitor{}, count_t{2});
 1032|    443|                    return std::make_tuple(pos.shift() - B, newn, ts, tail);
 1033|  1.28k|                } else {
 1034|  1.28k|                    if (mutate) {
  ------------------
  |  Branch (1034:25): [True: 230, False: 1.05k]
  ------------------
 1035|    230|                        pos.each_right(dec_visitor{}, idx + 1);
 1036|    230|                        return std::make_tuple(pos.shift(), node, ts, tail);
 1037|  1.05k|                    } else {
 1038|  1.05k|                        auto newn = node_t::copy_inner_e(e, node, idx);
 1039|  1.05k|                        if (Mutating)
  ------------------
  |  Branch (1039:29): [True: 1.05k, Folded]
  ------------------
 1040|  1.05k|                            pos.visit(dec_visitor{});
 1041|  1.05k|                        return std::make_tuple(pos.shift(), newn, ts, tail);
 1042|  1.05k|                    }
 1043|  1.28k|                }
 1044|  2.39k|            }
 1045|  2.39k|            IMMER_CATCH (...) {
 1046|      0|                assert(!mutate);
  ------------------
  |  Branch (1046:17): [True: 0, False: 0]
  ------------------
 1047|      0|                assert(!next || pos.shift() > BL);
  ------------------
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  |  Branch (1047:17): [True: 0, False: 0]
  ------------------
 1048|      0|                assert(tail);
  ------------------
  |  Branch (1048:17): [True: 0, False: 0]
  ------------------
 1049|      0|                if (next)
  ------------------
  |  Branch (1049:21): [True: 0, False: 0]
  ------------------
 1050|      0|                    dec_regular(next, pos.shift() - B, last + 1 - ts);
 1051|      0|                dec_leaf(tail, ts);
 1052|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1053|      0|            }
 1054|  2.39k|        }
 1055|  3.83k|    }
_ZN5immer6detail4rbts23slice_right_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE10visit_leafIRNS1_8leaf_posISC_EEEENSt3__15tupleIJjPSC_jSK_EEEOT_mNSA_5applyIS7_E4type4editE:
 1059|    636|    {
 1060|    636|        auto old_tail_size = pos.count();
 1061|    636|        auto new_tail_size = pos.index(last) + 1;
 1062|    636|        auto node          = pos.node();
 1063|    636|        auto mutate        = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1063:30): [True: 636, Folded]
  |  Branch (1063:42): [True: 198, False: 438]
  ------------------
 1064|    636|        if (new_tail_size == old_tail_size) {
  ------------------
  |  Branch (1064:13): [True: 229, False: 407]
  ------------------
 1065|    229|            if (!Mutating)
  ------------------
  |  Branch (1065:17): [Folded, False: 229]
  ------------------
 1066|      0|                node->inc();
 1067|    229|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1068|    407|        } else if (mutate) {
  ------------------
  |  Branch (1068:20): [True: 194, False: 213]
  ------------------
 1069|    194|            detail::destroy_n(node->leaf() + new_tail_size,
 1070|    194|                              old_tail_size - new_tail_size);
 1071|    194|            return std::make_tuple(0, nullptr, new_tail_size, node);
 1072|    213|        } else {
 1073|    213|            auto new_tail = node_t::copy_leaf_e(e, node, new_tail_size);
 1074|    213|            if (Mutating)
  ------------------
  |  Branch (1074:17): [True: 213, Folded]
  ------------------
 1075|    213|                pos.visit(dec_visitor{});
 1076|    213|            return std::make_tuple(0, nullptr, new_tail_size, new_tail);
 1077|    213|        }
 1078|    636|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1377|    708|    {
 1378|    708|        auto node   = pos.node();
 1379|    708|        auto idx    = pos.index(first);
 1380|    708|        auto count  = pos.count();
 1381|    708|        auto mutate = Mutating &&
  ------------------
  |  Branch (1381:23): [True: 0, Folded]
  ------------------
 1382|      0|                      std::is_nothrow_move_constructible<value_t>::value &&
  ------------------
  |  Branch (1382:23): [True: 0, Folded]
  ------------------
 1383|    708|                      node->can_mutate(e);
  ------------------
  |  Branch (1383:23): [True: 458, False: 250]
  ------------------
 1384|    708|        if (mutate) {
  ------------------
  |  Branch (1384:13): [True: 458, False: 250]
  ------------------
 1385|    458|            auto data     = node->leaf();
 1386|    458|            auto newcount = count - idx;
 1387|    458|            std::move(data + idx, data + count, data);
 1388|    458|            detail::destroy_n(data + newcount, idx);
 1389|    458|            return std::make_tuple(0, node);
 1390|    458|        } else {
 1391|    250|            auto newn = node_t::copy_leaf_e(e, node, idx, count);
 1392|    250|            if (Mutating)
  ------------------
  |  Branch (1392:17): [True: 250, Folded]
  ------------------
 1393|    250|                pos.visit(dec_visitor{});
 1394|    250|            return std::make_tuple(0, newn);
 1395|    250|        }
 1396|    708|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1246|  33.9k|    {
 1247|  33.9k|        auto idx                = pos.subindex(first);
 1248|  33.9k|        auto count              = pos.count();
 1249|  33.9k|        auto node               = pos.node();
 1250|  33.9k|        auto mutate             = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1250:35): [True: 33.9k, Folded]
  |  Branch (1250:47): [True: 24.4k, False: 9.46k]
  ------------------
 1251|  33.9k|        auto left_size          = pos.size_before(idx);
 1252|  33.9k|        auto child_size         = pos.size_sbh(idx, left_size);
 1253|  33.9k|        auto dropped_size       = first;
 1254|  33.9k|        auto child_dropped_size = dropped_size - left_size;
 1255|  33.9k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1255:13): [True: 33.9k, Folded]
  |  Branch (1255:25): [True: 32.4k, False: 1.48k]
  |  Branch (1255:45): [True: 9.13k, False: 23.3k]
  ------------------
 1256|  9.13k|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1256:22): [True: 5.72k, False: 3.41k]
  ------------------
 1257|  9.13k|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1258|  9.13k|            if (mutate)
  ------------------
  |  Branch (1258:17): [True: 5.72k, False: 3.41k]
  ------------------
 1259|  5.72k|                pos.visit(dec_left_visitor{}, idx);
 1260|  3.41k|            else if (Mutating)
  ------------------
  |  Branch (1260:22): [True: 3.41k, Folded]
  ------------------
 1261|  3.41k|                pos.visit(dec_visitor{});
 1262|  9.13k|            return r;
 1263|  24.8k|        } else {
 1264|  24.8k|            using std::get;
 1265|  24.8k|            auto newn     = mutate ? (node->ensure_mutable_relaxed(e), node)
  ------------------
  |  Branch (1265:29): [True: 18.7k, False: 6.04k]
  ------------------
 1266|  24.8k|                                   : node_t::make_inner_r_e(e);
 1267|  24.8k|            auto newr     = newn->relaxed();
 1268|  24.8k|            auto newcount = count - idx;
 1269|  24.8k|            auto new_child_size = child_size - child_dropped_size;
 1270|  24.8k|            IMMER_TRY {
  ------------------
  |  |   49|  24.8k|#define IMMER_TRY try
  ------------------
 1271|  24.8k|                auto subs =
 1272|  24.8k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1272:21): [True: 18.7k, False: 6.04k]
  ------------------
 1273|  24.8k|                           : pos.towards_sub_oh(
 1274|  6.04k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1275|  24.8k|                if (mutate)
  ------------------
  |  Branch (1275:21): [True: 18.7k, False: 6.04k]
  ------------------
 1276|  18.7k|                    pos.each_left(dec_visitor{}, idx);
 1277|  24.8k|                pos.copy_sizes(
 1278|  24.8k|                    idx + 1, newcount - 1, new_child_size, newr->d.sizes + 1);
 1279|  24.8k|                std::copy(node->inner() + idx + 1,
 1280|  24.8k|                          node->inner() + count,
 1281|  24.8k|                          newn->inner() + 1);
 1282|  24.8k|                newn->inner()[0] = get<1>(subs);
 1283|  24.8k|                newr->d.sizes[0] = new_child_size;
 1284|  24.8k|                newr->d.count    = newcount;
 1285|  24.8k|                assert(new_child_size);
  ------------------
  |  Branch (1285:17): [True: 24.8k, False: 0]
  ------------------
 1286|  24.8k|                if (!mutate) {
  ------------------
  |  Branch (1286:21): [True: 6.04k, False: 18.7k]
  ------------------
 1287|  6.04k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1288|  6.04k|                    if (Mutating)
  ------------------
  |  Branch (1288:25): [True: 6.04k, Folded]
  ------------------
 1289|  6.04k|                        pos.visit(dec_visitor{});
 1290|  6.04k|                }
 1291|  24.8k|                return std::make_tuple(pos.shift(), newn);
 1292|  24.8k|            }
 1293|  24.8k|            IMMER_CATCH (...) {
 1294|      0|                if (!mutate)
  ------------------
  |  Branch (1294:21): [True: 0, False: 0]
  ------------------
 1295|      0|                    node_t::delete_inner_r_e(newn);
 1296|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1297|      0|            }
 1298|  24.8k|        }
 1299|  33.9k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb0EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1246|  2.72k|    {
 1247|  2.72k|        auto idx                = pos.subindex(first);
 1248|  2.72k|        auto count              = pos.count();
 1249|  2.72k|        auto node               = pos.node();
 1250|  2.72k|        auto mutate             = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1250:35): [Folded, False: 2.72k]
  |  Branch (1250:47): [True: 0, False: 0]
  ------------------
 1251|  2.72k|        auto left_size          = pos.size_before(idx);
 1252|  2.72k|        auto child_size         = pos.size_sbh(idx, left_size);
 1253|  2.72k|        auto dropped_size       = first;
 1254|  2.72k|        auto child_dropped_size = dropped_size - left_size;
 1255|  2.72k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1255:13): [True: 2.72k, Folded]
  |  Branch (1255:25): [True: 1.45k, False: 1.26k]
  |  Branch (1255:45): [True: 1.02k, False: 432]
  ------------------
 1256|  1.02k|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1256:22): [True: 0, False: 1.02k]
  ------------------
 1257|  1.02k|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1258|  1.02k|            if (mutate)
  ------------------
  |  Branch (1258:17): [True: 0, False: 1.02k]
  ------------------
 1259|      0|                pos.visit(dec_left_visitor{}, idx);
 1260|  1.02k|            else if (Mutating)
  ------------------
  |  Branch (1260:22): [Folded, False: 1.02k]
  ------------------
 1261|      0|                pos.visit(dec_visitor{});
 1262|  1.02k|            return r;
 1263|  1.69k|        } else {
 1264|  1.69k|            using std::get;
 1265|  1.69k|            auto newn     = mutate ? (node->ensure_mutable_relaxed(e), node)
  ------------------
  |  Branch (1265:29): [True: 0, False: 1.69k]
  ------------------
 1266|  1.69k|                                   : node_t::make_inner_r_e(e);
 1267|  1.69k|            auto newr     = newn->relaxed();
 1268|  1.69k|            auto newcount = count - idx;
 1269|  1.69k|            auto new_child_size = child_size - child_dropped_size;
 1270|  1.69k|            IMMER_TRY {
  ------------------
  |  |   49|  1.69k|#define IMMER_TRY try
  ------------------
 1271|  1.69k|                auto subs =
 1272|  1.69k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1272:21): [True: 0, False: 1.69k]
  ------------------
 1273|  1.69k|                           : pos.towards_sub_oh(
 1274|  1.69k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1275|  1.69k|                if (mutate)
  ------------------
  |  Branch (1275:21): [True: 0, False: 1.69k]
  ------------------
 1276|      0|                    pos.each_left(dec_visitor{}, idx);
 1277|  1.69k|                pos.copy_sizes(
 1278|  1.69k|                    idx + 1, newcount - 1, new_child_size, newr->d.sizes + 1);
 1279|  1.69k|                std::copy(node->inner() + idx + 1,
 1280|  1.69k|                          node->inner() + count,
 1281|  1.69k|                          newn->inner() + 1);
 1282|  1.69k|                newn->inner()[0] = get<1>(subs);
 1283|  1.69k|                newr->d.sizes[0] = new_child_size;
 1284|  1.69k|                newr->d.count    = newcount;
 1285|  1.69k|                assert(new_child_size);
  ------------------
  |  Branch (1285:17): [True: 1.69k, False: 0]
  ------------------
 1286|  1.69k|                if (!mutate) {
  ------------------
  |  Branch (1286:21): [True: 1.69k, False: 0]
  ------------------
 1287|  1.69k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1288|  1.69k|                    if (Mutating)
  ------------------
  |  Branch (1288:25): [Folded, False: 1.69k]
  ------------------
 1289|      0|                        pos.visit(dec_visitor{});
 1290|  1.69k|                }
 1291|  1.69k|                return std::make_tuple(pos.shift(), newn);
 1292|  1.69k|            }
 1293|  1.69k|            IMMER_CATCH (...) {
 1294|      0|                if (!mutate)
  ------------------
  |  Branch (1294:21): [True: 0, False: 0]
  ------------------
 1295|      0|                    node_t::delete_inner_r_e(newn);
 1296|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1297|      0|            }
 1298|  1.69k|        }
 1299|  2.72k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb0EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1303|  2.79k|    {
 1304|  2.79k|        auto idx    = pos.subindex(first);
 1305|  2.79k|        auto count  = pos.count();
 1306|  2.79k|        auto node   = pos.node();
 1307|  2.79k|        auto mutate = Mutating
  ------------------
  |  Branch (1307:23): [Folded, False: 2.79k]
  ------------------
 1308|       |                      // this is more restrictive than actually needed because
 1309|       |                      // it causes the algorithm to also avoid mutating the leaf
 1310|       |                      // in place
 1311|      0|                      && !node_t::embed_relaxed && node->can_mutate(e);
  ------------------
  |  Branch (1311:26): [True: 0, Folded]
  |  Branch (1311:52): [True: 0, False: 0]
  ------------------
 1312|  2.79k|        auto left_size          = pos.size_before(idx);
 1313|  2.79k|        auto child_size         = pos.size_sbh(idx, left_size);
 1314|  2.79k|        auto dropped_size       = first;
 1315|  2.79k|        auto child_dropped_size = dropped_size - left_size;
 1316|  2.79k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1316:13): [True: 2.79k, Folded]
  |  Branch (1316:25): [True: 1.61k, False: 1.18k]
  |  Branch (1316:45): [True: 1.19k, False: 413]
  ------------------
 1317|  1.19k|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1317:22): [True: 0, False: 1.19k]
  ------------------
 1318|  1.19k|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1319|  1.19k|            if (mutate)
  ------------------
  |  Branch (1319:17): [True: 0, False: 1.19k]
  ------------------
 1320|      0|                pos.visit(dec_left_visitor{}, idx);
 1321|  1.19k|            else if (Mutating)
  ------------------
  |  Branch (1321:22): [Folded, False: 1.19k]
  ------------------
 1322|      0|                pos.visit(dec_visitor{});
 1323|  1.19k|            return r;
 1324|  1.59k|        } else {
 1325|  1.59k|            using std::get;
 1326|       |            // if possible, we convert the node to a relaxed one simply by
 1327|       |            // allocating a `relaxed_t` size table for it... maybe some of this
 1328|       |            // magic should be moved as a `node<...>` static method...
 1329|  1.59k|            auto newcount = count - idx;
 1330|  1.59k|            auto newn =
 1331|  1.59k|                mutate ? (node->impl.d.data.inner.relaxed = new (
  ------------------
  |  Branch (1331:17): [True: 0, False: 1.59k]
  ------------------
 1332|      0|                              node_t::heap::allocate(node_t::max_sizeof_relaxed,
 1333|      0|                                                     norefs_tag{})) relaxed_t,
 1334|      0|                          node)
 1335|  1.59k|                       : node_t::make_inner_r_e(e);
 1336|  1.59k|            auto newr = newn->relaxed();
 1337|  1.59k|            IMMER_TRY {
  ------------------
  |  |   49|  1.59k|#define IMMER_TRY try
  ------------------
 1338|  1.59k|                auto subs =
 1339|  1.59k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1339:21): [True: 0, False: 1.59k]
  ------------------
 1340|  1.59k|                           : pos.towards_sub_oh(
 1341|  1.59k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1342|  1.59k|                if (mutate)
  ------------------
  |  Branch (1342:21): [True: 0, False: 1.59k]
  ------------------
 1343|      0|                    pos.each_left(dec_visitor{}, idx);
 1344|  1.59k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1345|  1.59k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1345:17): [True: 1.59k, False: 0]
  ------------------
 1346|  1.59k|                pos.copy_sizes(
 1347|  1.59k|                    idx + 1, newcount - 1, newr->d.sizes[0], newr->d.sizes + 1);
 1348|  1.59k|                newr->d.count    = newcount;
 1349|  1.59k|                newn->inner()[0] = get<1>(subs);
 1350|  1.59k|                std::copy(node->inner() + idx + 1,
 1351|  1.59k|                          node->inner() + count,
 1352|  1.59k|                          newn->inner() + 1);
 1353|  1.59k|                if (!mutate) {
  ------------------
  |  Branch (1353:21): [True: 1.59k, False: 0]
  ------------------
 1354|  1.59k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1355|  1.59k|                    if (Mutating)
  ------------------
  |  Branch (1355:25): [Folded, False: 1.59k]
  ------------------
 1356|      0|                        pos.visit(dec_visitor{});
 1357|  1.59k|                }
 1358|  1.59k|                return std::make_tuple(pos.shift(), newn);
 1359|  1.59k|            }
 1360|  1.59k|            IMMER_CATCH (...) {
 1361|      0|                if (!mutate)
  ------------------
  |  Branch (1361:21): [True: 0, False: 0]
  ------------------
 1362|      0|                    node_t::delete_inner_r_e(newn);
 1363|      0|                else {
 1364|       |                    // restore the regular node that we were
 1365|       |                    // attempting to relax...
 1366|      0|                    node_t::heap::deallocate(node_t::max_sizeof_relaxed,
 1367|      0|                                             node->impl.d.data.inner.relaxed);
 1368|      0|                    node->impl.d.data.inner.relaxed = nullptr;
 1369|      0|                }
 1370|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1371|      0|            }
 1372|  1.59k|        }
 1373|  2.79k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb0EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1303|  3.17k|    {
 1304|  3.17k|        auto idx    = pos.subindex(first);
 1305|  3.17k|        auto count  = pos.count();
 1306|  3.17k|        auto node   = pos.node();
 1307|  3.17k|        auto mutate = Mutating
  ------------------
  |  Branch (1307:23): [Folded, False: 3.17k]
  ------------------
 1308|       |                      // this is more restrictive than actually needed because
 1309|       |                      // it causes the algorithm to also avoid mutating the leaf
 1310|       |                      // in place
 1311|      0|                      && !node_t::embed_relaxed && node->can_mutate(e);
  ------------------
  |  Branch (1311:26): [True: 0, Folded]
  |  Branch (1311:52): [True: 0, False: 0]
  ------------------
 1312|  3.17k|        auto left_size          = pos.size_before(idx);
 1313|  3.17k|        auto child_size         = pos.size_sbh(idx, left_size);
 1314|  3.17k|        auto dropped_size       = first;
 1315|  3.17k|        auto child_dropped_size = dropped_size - left_size;
 1316|  3.17k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1316:13): [True: 3.17k, Folded]
  |  Branch (1316:25): [True: 533, False: 2.64k]
  |  Branch (1316:45): [True: 318, False: 215]
  ------------------
 1317|    318|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1317:22): [True: 0, False: 318]
  ------------------
 1318|    318|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1319|    318|            if (mutate)
  ------------------
  |  Branch (1319:17): [True: 0, False: 318]
  ------------------
 1320|      0|                pos.visit(dec_left_visitor{}, idx);
 1321|    318|            else if (Mutating)
  ------------------
  |  Branch (1321:22): [Folded, False: 318]
  ------------------
 1322|      0|                pos.visit(dec_visitor{});
 1323|    318|            return r;
 1324|  2.85k|        } else {
 1325|  2.85k|            using std::get;
 1326|       |            // if possible, we convert the node to a relaxed one simply by
 1327|       |            // allocating a `relaxed_t` size table for it... maybe some of this
 1328|       |            // magic should be moved as a `node<...>` static method...
 1329|  2.85k|            auto newcount = count - idx;
 1330|  2.85k|            auto newn =
 1331|  2.85k|                mutate ? (node->impl.d.data.inner.relaxed = new (
  ------------------
  |  Branch (1331:17): [True: 0, False: 2.85k]
  ------------------
 1332|      0|                              node_t::heap::allocate(node_t::max_sizeof_relaxed,
 1333|      0|                                                     norefs_tag{})) relaxed_t,
 1334|      0|                          node)
 1335|  2.85k|                       : node_t::make_inner_r_e(e);
 1336|  2.85k|            auto newr = newn->relaxed();
 1337|  2.85k|            IMMER_TRY {
  ------------------
  |  |   49|  2.85k|#define IMMER_TRY try
  ------------------
 1338|  2.85k|                auto subs =
 1339|  2.85k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1339:21): [True: 0, False: 2.85k]
  ------------------
 1340|  2.85k|                           : pos.towards_sub_oh(
 1341|  2.85k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1342|  2.85k|                if (mutate)
  ------------------
  |  Branch (1342:21): [True: 0, False: 2.85k]
  ------------------
 1343|      0|                    pos.each_left(dec_visitor{}, idx);
 1344|  2.85k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1345|  2.85k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1345:17): [True: 2.85k, False: 0]
  ------------------
 1346|  2.85k|                pos.copy_sizes(
 1347|  2.85k|                    idx + 1, newcount - 1, newr->d.sizes[0], newr->d.sizes + 1);
 1348|  2.85k|                newr->d.count    = newcount;
 1349|  2.85k|                newn->inner()[0] = get<1>(subs);
 1350|  2.85k|                std::copy(node->inner() + idx + 1,
 1351|  2.85k|                          node->inner() + count,
 1352|  2.85k|                          newn->inner() + 1);
 1353|  2.85k|                if (!mutate) {
  ------------------
  |  Branch (1353:21): [True: 2.85k, False: 0]
  ------------------
 1354|  2.85k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1355|  2.85k|                    if (Mutating)
  ------------------
  |  Branch (1355:25): [Folded, False: 2.85k]
  ------------------
 1356|      0|                        pos.visit(dec_visitor{});
 1357|  2.85k|                }
 1358|  2.85k|                return std::make_tuple(pos.shift(), newn);
 1359|  2.85k|            }
 1360|  2.85k|            IMMER_CATCH (...) {
 1361|      0|                if (!mutate)
  ------------------
  |  Branch (1361:21): [True: 0, False: 0]
  ------------------
 1362|      0|                    node_t::delete_inner_r_e(newn);
 1363|      0|                else {
 1364|       |                    // restore the regular node that we were
 1365|       |                    // attempting to relax...
 1366|      0|                    node_t::heap::deallocate(node_t::max_sizeof_relaxed,
 1367|      0|                                             node->impl.d.data.inner.relaxed);
 1368|      0|                    node->impl.d.data.inner.relaxed = nullptr;
 1369|      0|                }
 1370|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1371|      0|            }
 1372|  2.85k|        }
 1373|  3.17k|    }
_ZN5immer6detail4rbts16dec_left_visitor13visit_regularIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_j:
 1209|    310|    {
 1210|    310|        using node_t = node_type<Pos>;
 1211|    310|        auto node    = p.node();
 1212|    310|        if (node->dec()) {
  ------------------
  |  Branch (1212:13): [True: 310, False: 0]
  ------------------
 1213|    310|            p.each_left(dec_t{}, idx);
 1214|    310|            node_t::delete_inner(node, p.count());
 1215|    310|        }
 1216|    310|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE10visit_leafIRNS1_13full_leaf_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1377|  3.20k|    {
 1378|  3.20k|        auto node   = pos.node();
 1379|  3.20k|        auto idx    = pos.index(first);
 1380|  3.20k|        auto count  = pos.count();
 1381|  3.20k|        auto mutate = Mutating &&
  ------------------
  |  Branch (1381:23): [True: 0, Folded]
  ------------------
 1382|      0|                      std::is_nothrow_move_constructible<value_t>::value &&
  ------------------
  |  Branch (1382:23): [True: 0, Folded]
  ------------------
 1383|  3.20k|                      node->can_mutate(e);
  ------------------
  |  Branch (1383:23): [True: 606, False: 2.60k]
  ------------------
 1384|  3.20k|        if (mutate) {
  ------------------
  |  Branch (1384:13): [True: 606, False: 2.60k]
  ------------------
 1385|    606|            auto data     = node->leaf();
 1386|    606|            auto newcount = count - idx;
 1387|    606|            std::move(data + idx, data + count, data);
 1388|    606|            detail::destroy_n(data + newcount, idx);
 1389|    606|            return std::make_tuple(0, node);
 1390|  2.60k|        } else {
 1391|  2.60k|            auto newn = node_t::copy_leaf_e(e, node, idx, count);
 1392|  2.60k|            if (Mutating)
  ------------------
  |  Branch (1392:17): [True: 2.60k, Folded]
  ------------------
 1393|  2.60k|                pos.visit(dec_visitor{});
 1394|  2.60k|            return std::make_tuple(0, newn);
 1395|  2.60k|        }
 1396|  3.20k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1303|  2.05k|    {
 1304|  2.05k|        auto idx    = pos.subindex(first);
 1305|  2.05k|        auto count  = pos.count();
 1306|  2.05k|        auto node   = pos.node();
 1307|  2.05k|        auto mutate = Mutating
  ------------------
  |  Branch (1307:23): [True: 0, Folded]
  ------------------
 1308|       |                      // this is more restrictive than actually needed because
 1309|       |                      // it causes the algorithm to also avoid mutating the leaf
 1310|       |                      // in place
 1311|  2.05k|                      && !node_t::embed_relaxed && node->can_mutate(e);
  ------------------
  |  Branch (1311:26): [True: 0, Folded]
  |  Branch (1311:52): [True: 802, False: 1.25k]
  ------------------
 1312|  2.05k|        auto left_size          = pos.size_before(idx);
 1313|  2.05k|        auto child_size         = pos.size_sbh(idx, left_size);
 1314|  2.05k|        auto dropped_size       = first;
 1315|  2.05k|        auto child_dropped_size = dropped_size - left_size;
 1316|  2.05k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1316:13): [Folded, False: 2.05k]
  |  Branch (1316:25): [True: 0, False: 0]
  |  Branch (1316:45): [True: 0, False: 0]
  ------------------
 1317|      0|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1317:22): [True: 0, False: 0]
  ------------------
 1318|      0|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1319|      0|            if (mutate)
  ------------------
  |  Branch (1319:17): [True: 0, False: 0]
  ------------------
 1320|      0|                pos.visit(dec_left_visitor{}, idx);
 1321|      0|            else if (Mutating)
  ------------------
  |  Branch (1321:22): [True: 0, Folded]
  ------------------
 1322|      0|                pos.visit(dec_visitor{});
 1323|      0|            return r;
 1324|  2.05k|        } else {
 1325|  2.05k|            using std::get;
 1326|       |            // if possible, we convert the node to a relaxed one simply by
 1327|       |            // allocating a `relaxed_t` size table for it... maybe some of this
 1328|       |            // magic should be moved as a `node<...>` static method...
 1329|  2.05k|            auto newcount = count - idx;
 1330|  2.05k|            auto newn =
 1331|  2.05k|                mutate ? (node->impl.d.data.inner.relaxed = new (
  ------------------
  |  Branch (1331:17): [True: 802, False: 1.25k]
  ------------------
 1332|    802|                              node_t::heap::allocate(node_t::max_sizeof_relaxed,
 1333|    802|                                                     norefs_tag{})) relaxed_t,
 1334|    802|                          node)
 1335|  2.05k|                       : node_t::make_inner_r_e(e);
 1336|  2.05k|            auto newr = newn->relaxed();
 1337|  2.05k|            IMMER_TRY {
  ------------------
  |  |   49|  2.05k|#define IMMER_TRY try
  ------------------
 1338|  2.05k|                auto subs =
 1339|  2.05k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1339:21): [True: 802, False: 1.25k]
  ------------------
 1340|  2.05k|                           : pos.towards_sub_oh(
 1341|  1.25k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1342|  2.05k|                if (mutate)
  ------------------
  |  Branch (1342:21): [True: 802, False: 1.25k]
  ------------------
 1343|    802|                    pos.each_left(dec_visitor{}, idx);
 1344|  2.05k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1345|  2.05k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1345:17): [True: 2.05k, False: 0]
  ------------------
 1346|  2.05k|                pos.copy_sizes(
 1347|  2.05k|                    idx + 1, newcount - 1, newr->d.sizes[0], newr->d.sizes + 1);
 1348|  2.05k|                newr->d.count    = newcount;
 1349|  2.05k|                newn->inner()[0] = get<1>(subs);
 1350|  2.05k|                std::copy(node->inner() + idx + 1,
 1351|  2.05k|                          node->inner() + count,
 1352|  2.05k|                          newn->inner() + 1);
 1353|  2.05k|                if (!mutate) {
  ------------------
  |  Branch (1353:21): [True: 1.25k, False: 802]
  ------------------
 1354|  1.25k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1355|  1.25k|                    if (Mutating)
  ------------------
  |  Branch (1355:25): [True: 1.25k, Folded]
  ------------------
 1356|  1.25k|                        pos.visit(dec_visitor{});
 1357|  1.25k|                }
 1358|  2.05k|                return std::make_tuple(pos.shift(), newn);
 1359|  2.05k|            }
 1360|  2.05k|            IMMER_CATCH (...) {
 1361|      0|                if (!mutate)
  ------------------
  |  Branch (1361:21): [True: 0, False: 0]
  ------------------
 1362|      0|                    node_t::delete_inner_r_e(newn);
 1363|      0|                else {
 1364|       |                    // restore the regular node that we were
 1365|       |                    // attempting to relax...
 1366|      0|                    node_t::heap::deallocate(node_t::max_sizeof_relaxed,
 1367|      0|                                             node->impl.d.data.inner.relaxed);
 1368|      0|                    node->impl.d.data.inner.relaxed = nullptr;
 1369|      0|                }
 1370|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1371|      0|            }
 1372|  2.05k|        }
 1373|  2.05k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE10visit_leafIRNS1_13full_leaf_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1377|  10.4k|    {
 1378|  10.4k|        auto node   = pos.node();
 1379|  10.4k|        auto idx    = pos.index(first);
 1380|  10.4k|        auto count  = pos.count();
 1381|  10.4k|        auto mutate = Mutating &&
  ------------------
  |  Branch (1381:23): [Folded, False: 10.4k]
  ------------------
 1382|      0|                      std::is_nothrow_move_constructible<value_t>::value &&
  ------------------
  |  Branch (1382:23): [True: 0, Folded]
  ------------------
 1383|      0|                      node->can_mutate(e);
  ------------------
  |  Branch (1383:23): [True: 0, False: 0]
  ------------------
 1384|  10.4k|        if (mutate) {
  ------------------
  |  Branch (1384:13): [True: 0, False: 10.4k]
  ------------------
 1385|      0|            auto data     = node->leaf();
 1386|      0|            auto newcount = count - idx;
 1387|      0|            std::move(data + idx, data + count, data);
 1388|      0|            detail::destroy_n(data + newcount, idx);
 1389|      0|            return std::make_tuple(0, node);
 1390|  10.4k|        } else {
 1391|  10.4k|            auto newn = node_t::copy_leaf_e(e, node, idx, count);
 1392|  10.4k|            if (Mutating)
  ------------------
  |  Branch (1392:17): [Folded, False: 10.4k]
  ------------------
 1393|      0|                pos.visit(dec_visitor{});
 1394|  10.4k|            return std::make_tuple(0, newn);
 1395|  10.4k|        }
 1396|  10.4k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1303|  3.28k|    {
 1304|  3.28k|        auto idx    = pos.subindex(first);
 1305|  3.28k|        auto count  = pos.count();
 1306|  3.28k|        auto node   = pos.node();
 1307|  3.28k|        auto mutate = Mutating
  ------------------
  |  Branch (1307:23): [Folded, False: 3.28k]
  ------------------
 1308|       |                      // this is more restrictive than actually needed because
 1309|       |                      // it causes the algorithm to also avoid mutating the leaf
 1310|       |                      // in place
 1311|      0|                      && !node_t::embed_relaxed && node->can_mutate(e);
  ------------------
  |  Branch (1311:26): [True: 0, Folded]
  |  Branch (1311:52): [True: 0, False: 0]
  ------------------
 1312|  3.28k|        auto left_size          = pos.size_before(idx);
 1313|  3.28k|        auto child_size         = pos.size_sbh(idx, left_size);
 1314|  3.28k|        auto dropped_size       = first;
 1315|  3.28k|        auto child_dropped_size = dropped_size - left_size;
 1316|  3.28k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1316:13): [Folded, False: 3.28k]
  |  Branch (1316:25): [True: 0, False: 0]
  |  Branch (1316:45): [True: 0, False: 0]
  ------------------
 1317|      0|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1317:22): [True: 0, False: 0]
  ------------------
 1318|      0|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1319|      0|            if (mutate)
  ------------------
  |  Branch (1319:17): [True: 0, False: 0]
  ------------------
 1320|      0|                pos.visit(dec_left_visitor{}, idx);
 1321|      0|            else if (Mutating)
  ------------------
  |  Branch (1321:22): [Folded, False: 0]
  ------------------
 1322|      0|                pos.visit(dec_visitor{});
 1323|      0|            return r;
 1324|  3.28k|        } else {
 1325|  3.28k|            using std::get;
 1326|       |            // if possible, we convert the node to a relaxed one simply by
 1327|       |            // allocating a `relaxed_t` size table for it... maybe some of this
 1328|       |            // magic should be moved as a `node<...>` static method...
 1329|  3.28k|            auto newcount = count - idx;
 1330|  3.28k|            auto newn =
 1331|  3.28k|                mutate ? (node->impl.d.data.inner.relaxed = new (
  ------------------
  |  Branch (1331:17): [True: 0, False: 3.28k]
  ------------------
 1332|      0|                              node_t::heap::allocate(node_t::max_sizeof_relaxed,
 1333|      0|                                                     norefs_tag{})) relaxed_t,
 1334|      0|                          node)
 1335|  3.28k|                       : node_t::make_inner_r_e(e);
 1336|  3.28k|            auto newr = newn->relaxed();
 1337|  3.28k|            IMMER_TRY {
  ------------------
  |  |   49|  3.28k|#define IMMER_TRY try
  ------------------
 1338|  3.28k|                auto subs =
 1339|  3.28k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1339:21): [True: 0, False: 3.28k]
  ------------------
 1340|  3.28k|                           : pos.towards_sub_oh(
 1341|  3.28k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1342|  3.28k|                if (mutate)
  ------------------
  |  Branch (1342:21): [True: 0, False: 3.28k]
  ------------------
 1343|      0|                    pos.each_left(dec_visitor{}, idx);
 1344|  3.28k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1345|  3.28k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1345:17): [True: 3.28k, False: 0]
  ------------------
 1346|  3.28k|                pos.copy_sizes(
 1347|  3.28k|                    idx + 1, newcount - 1, newr->d.sizes[0], newr->d.sizes + 1);
 1348|  3.28k|                newr->d.count    = newcount;
 1349|  3.28k|                newn->inner()[0] = get<1>(subs);
 1350|  3.28k|                std::copy(node->inner() + idx + 1,
 1351|  3.28k|                          node->inner() + count,
 1352|  3.28k|                          newn->inner() + 1);
 1353|  3.28k|                if (!mutate) {
  ------------------
  |  Branch (1353:21): [True: 3.28k, False: 0]
  ------------------
 1354|  3.28k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1355|  3.28k|                    if (Mutating)
  ------------------
  |  Branch (1355:25): [Folded, False: 3.28k]
  ------------------
 1356|      0|                        pos.visit(dec_visitor{});
 1357|  3.28k|                }
 1358|  3.28k|                return std::make_tuple(pos.shift(), newn);
 1359|  3.28k|            }
 1360|  3.28k|            IMMER_CATCH (...) {
 1361|      0|                if (!mutate)
  ------------------
  |  Branch (1361:21): [True: 0, False: 0]
  ------------------
 1362|      0|                    node_t::delete_inner_r_e(newn);
 1363|      0|                else {
 1364|       |                    // restore the regular node that we were
 1365|       |                    // attempting to relax...
 1366|      0|                    node_t::heap::deallocate(node_t::max_sizeof_relaxed,
 1367|      0|                                             node->impl.d.data.inner.relaxed);
 1368|      0|                    node->impl.d.data.inner.relaxed = nullptr;
 1369|      0|                }
 1370|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1371|      0|            }
 1372|  3.28k|        }
 1373|  3.28k|    }
_ZN5immer6detail4rbts16dec_left_visitor13visit_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_j:
 1209|  4.41k|    {
 1210|  4.41k|        using node_t = node_type<Pos>;
 1211|  4.41k|        auto node    = p.node();
 1212|  4.41k|        if (node->dec()) {
  ------------------
  |  Branch (1212:13): [True: 4.41k, False: 0]
  ------------------
 1213|  4.41k|            p.each_left(dec_t{}, idx);
 1214|  4.41k|            node_t::delete_inner(node, p.count());
 1215|  4.41k|        }
 1216|  4.41k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1377|  10.5k|    {
 1378|  10.5k|        auto node   = pos.node();
 1379|  10.5k|        auto idx    = pos.index(first);
 1380|  10.5k|        auto count  = pos.count();
 1381|  10.5k|        auto mutate = Mutating &&
  ------------------
  |  Branch (1381:23): [True: 0, Folded]
  ------------------
 1382|      0|                      std::is_nothrow_move_constructible<value_t>::value &&
  ------------------
  |  Branch (1382:23): [True: 0, Folded]
  ------------------
 1383|  10.5k|                      node->can_mutate(e);
  ------------------
  |  Branch (1383:23): [True: 7.11k, False: 3.45k]
  ------------------
 1384|  10.5k|        if (mutate) {
  ------------------
  |  Branch (1384:13): [True: 7.11k, False: 3.45k]
  ------------------
 1385|  7.11k|            auto data     = node->leaf();
 1386|  7.11k|            auto newcount = count - idx;
 1387|  7.11k|            std::move(data + idx, data + count, data);
 1388|  7.11k|            detail::destroy_n(data + newcount, idx);
 1389|  7.11k|            return std::make_tuple(0, node);
 1390|  7.11k|        } else {
 1391|  3.45k|            auto newn = node_t::copy_leaf_e(e, node, idx, count);
 1392|  3.45k|            if (Mutating)
  ------------------
  |  Branch (1392:17): [True: 3.45k, Folded]
  ------------------
 1393|  3.45k|                pos.visit(dec_visitor{});
 1394|  3.45k|            return std::make_tuple(0, newn);
 1395|  3.45k|        }
 1396|  10.5k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1303|  1.36k|    {
 1304|  1.36k|        auto idx    = pos.subindex(first);
 1305|  1.36k|        auto count  = pos.count();
 1306|  1.36k|        auto node   = pos.node();
 1307|  1.36k|        auto mutate = Mutating
  ------------------
  |  Branch (1307:23): [True: 0, Folded]
  ------------------
 1308|       |                      // this is more restrictive than actually needed because
 1309|       |                      // it causes the algorithm to also avoid mutating the leaf
 1310|       |                      // in place
 1311|  1.36k|                      && !node_t::embed_relaxed && node->can_mutate(e);
  ------------------
  |  Branch (1311:26): [True: 0, Folded]
  |  Branch (1311:52): [True: 413, False: 954]
  ------------------
 1312|  1.36k|        auto left_size          = pos.size_before(idx);
 1313|  1.36k|        auto child_size         = pos.size_sbh(idx, left_size);
 1314|  1.36k|        auto dropped_size       = first;
 1315|  1.36k|        auto child_dropped_size = dropped_size - left_size;
 1316|  1.36k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1316:13): [Folded, False: 1.36k]
  |  Branch (1316:25): [True: 0, False: 0]
  |  Branch (1316:45): [True: 0, False: 0]
  ------------------
 1317|      0|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1317:22): [True: 0, False: 0]
  ------------------
 1318|      0|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1319|      0|            if (mutate)
  ------------------
  |  Branch (1319:17): [True: 0, False: 0]
  ------------------
 1320|      0|                pos.visit(dec_left_visitor{}, idx);
 1321|      0|            else if (Mutating)
  ------------------
  |  Branch (1321:22): [True: 0, Folded]
  ------------------
 1322|      0|                pos.visit(dec_visitor{});
 1323|      0|            return r;
 1324|  1.36k|        } else {
 1325|  1.36k|            using std::get;
 1326|       |            // if possible, we convert the node to a relaxed one simply by
 1327|       |            // allocating a `relaxed_t` size table for it... maybe some of this
 1328|       |            // magic should be moved as a `node<...>` static method...
 1329|  1.36k|            auto newcount = count - idx;
 1330|  1.36k|            auto newn =
 1331|  1.36k|                mutate ? (node->impl.d.data.inner.relaxed = new (
  ------------------
  |  Branch (1331:17): [True: 413, False: 954]
  ------------------
 1332|    413|                              node_t::heap::allocate(node_t::max_sizeof_relaxed,
 1333|    413|                                                     norefs_tag{})) relaxed_t,
 1334|    413|                          node)
 1335|  1.36k|                       : node_t::make_inner_r_e(e);
 1336|  1.36k|            auto newr = newn->relaxed();
 1337|  1.36k|            IMMER_TRY {
  ------------------
  |  |   49|  1.36k|#define IMMER_TRY try
  ------------------
 1338|  1.36k|                auto subs =
 1339|  1.36k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1339:21): [True: 413, False: 954]
  ------------------
 1340|  1.36k|                           : pos.towards_sub_oh(
 1341|    954|                                 no_collapse_no_mut_t{}, first, idx, e);
 1342|  1.36k|                if (mutate)
  ------------------
  |  Branch (1342:21): [True: 413, False: 954]
  ------------------
 1343|    413|                    pos.each_left(dec_visitor{}, idx);
 1344|  1.36k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1345|  1.36k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1345:17): [True: 1.36k, False: 0]
  ------------------
 1346|  1.36k|                pos.copy_sizes(
 1347|  1.36k|                    idx + 1, newcount - 1, newr->d.sizes[0], newr->d.sizes + 1);
 1348|  1.36k|                newr->d.count    = newcount;
 1349|  1.36k|                newn->inner()[0] = get<1>(subs);
 1350|  1.36k|                std::copy(node->inner() + idx + 1,
 1351|  1.36k|                          node->inner() + count,
 1352|  1.36k|                          newn->inner() + 1);
 1353|  1.36k|                if (!mutate) {
  ------------------
  |  Branch (1353:21): [True: 954, False: 413]
  ------------------
 1354|    954|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1355|    954|                    if (Mutating)
  ------------------
  |  Branch (1355:25): [True: 954, Folded]
  ------------------
 1356|    954|                        pos.visit(dec_visitor{});
 1357|    954|                }
 1358|  1.36k|                return std::make_tuple(pos.shift(), newn);
 1359|  1.36k|            }
 1360|  1.36k|            IMMER_CATCH (...) {
 1361|      0|                if (!mutate)
  ------------------
  |  Branch (1361:21): [True: 0, False: 0]
  ------------------
 1362|      0|                    node_t::delete_inner_r_e(newn);
 1363|      0|                else {
 1364|       |                    // restore the regular node that we were
 1365|       |                    // attempting to relax...
 1366|      0|                    node_t::heap::deallocate(node_t::max_sizeof_relaxed,
 1367|      0|                                             node->impl.d.data.inner.relaxed);
 1368|      0|                    node->impl.d.data.inner.relaxed = nullptr;
 1369|      0|                }
 1370|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1371|      0|            }
 1372|  1.36k|        }
 1373|  1.36k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE10visit_leafIRNS1_12leaf_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1377|  12.5k|    {
 1378|  12.5k|        auto node   = pos.node();
 1379|  12.5k|        auto idx    = pos.index(first);
 1380|  12.5k|        auto count  = pos.count();
 1381|  12.5k|        auto mutate = Mutating &&
  ------------------
  |  Branch (1381:23): [Folded, False: 12.5k]
  ------------------
 1382|      0|                      std::is_nothrow_move_constructible<value_t>::value &&
  ------------------
  |  Branch (1382:23): [True: 0, Folded]
  ------------------
 1383|      0|                      node->can_mutate(e);
  ------------------
  |  Branch (1383:23): [True: 0, False: 0]
  ------------------
 1384|  12.5k|        if (mutate) {
  ------------------
  |  Branch (1384:13): [True: 0, False: 12.5k]
  ------------------
 1385|      0|            auto data     = node->leaf();
 1386|      0|            auto newcount = count - idx;
 1387|      0|            std::move(data + idx, data + count, data);
 1388|      0|            detail::destroy_n(data + newcount, idx);
 1389|      0|            return std::make_tuple(0, node);
 1390|  12.5k|        } else {
 1391|  12.5k|            auto newn = node_t::copy_leaf_e(e, node, idx, count);
 1392|  12.5k|            if (Mutating)
  ------------------
  |  Branch (1392:17): [Folded, False: 12.5k]
  ------------------
 1393|      0|                pos.visit(dec_visitor{});
 1394|  12.5k|            return std::make_tuple(0, newn);
 1395|  12.5k|        }
 1396|  12.5k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1303|  1.99k|    {
 1304|  1.99k|        auto idx    = pos.subindex(first);
 1305|  1.99k|        auto count  = pos.count();
 1306|  1.99k|        auto node   = pos.node();
 1307|  1.99k|        auto mutate = Mutating
  ------------------
  |  Branch (1307:23): [Folded, False: 1.99k]
  ------------------
 1308|       |                      // this is more restrictive than actually needed because
 1309|       |                      // it causes the algorithm to also avoid mutating the leaf
 1310|       |                      // in place
 1311|      0|                      && !node_t::embed_relaxed && node->can_mutate(e);
  ------------------
  |  Branch (1311:26): [True: 0, Folded]
  |  Branch (1311:52): [True: 0, False: 0]
  ------------------
 1312|  1.99k|        auto left_size          = pos.size_before(idx);
 1313|  1.99k|        auto child_size         = pos.size_sbh(idx, left_size);
 1314|  1.99k|        auto dropped_size       = first;
 1315|  1.99k|        auto child_dropped_size = dropped_size - left_size;
 1316|  1.99k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1316:13): [Folded, False: 1.99k]
  |  Branch (1316:25): [True: 0, False: 0]
  |  Branch (1316:45): [True: 0, False: 0]
  ------------------
 1317|      0|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1317:22): [True: 0, False: 0]
  ------------------
 1318|      0|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1319|      0|            if (mutate)
  ------------------
  |  Branch (1319:17): [True: 0, False: 0]
  ------------------
 1320|      0|                pos.visit(dec_left_visitor{}, idx);
 1321|      0|            else if (Mutating)
  ------------------
  |  Branch (1321:22): [Folded, False: 0]
  ------------------
 1322|      0|                pos.visit(dec_visitor{});
 1323|      0|            return r;
 1324|  1.99k|        } else {
 1325|  1.99k|            using std::get;
 1326|       |            // if possible, we convert the node to a relaxed one simply by
 1327|       |            // allocating a `relaxed_t` size table for it... maybe some of this
 1328|       |            // magic should be moved as a `node<...>` static method...
 1329|  1.99k|            auto newcount = count - idx;
 1330|  1.99k|            auto newn =
 1331|  1.99k|                mutate ? (node->impl.d.data.inner.relaxed = new (
  ------------------
  |  Branch (1331:17): [True: 0, False: 1.99k]
  ------------------
 1332|      0|                              node_t::heap::allocate(node_t::max_sizeof_relaxed,
 1333|      0|                                                     norefs_tag{})) relaxed_t,
 1334|      0|                          node)
 1335|  1.99k|                       : node_t::make_inner_r_e(e);
 1336|  1.99k|            auto newr = newn->relaxed();
 1337|  1.99k|            IMMER_TRY {
  ------------------
  |  |   49|  1.99k|#define IMMER_TRY try
  ------------------
 1338|  1.99k|                auto subs =
 1339|  1.99k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1339:21): [True: 0, False: 1.99k]
  ------------------
 1340|  1.99k|                           : pos.towards_sub_oh(
 1341|  1.99k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1342|  1.99k|                if (mutate)
  ------------------
  |  Branch (1342:21): [True: 0, False: 1.99k]
  ------------------
 1343|      0|                    pos.each_left(dec_visitor{}, idx);
 1344|  1.99k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1345|  1.99k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1345:17): [True: 1.99k, False: 0]
  ------------------
 1346|  1.99k|                pos.copy_sizes(
 1347|  1.99k|                    idx + 1, newcount - 1, newr->d.sizes[0], newr->d.sizes + 1);
 1348|  1.99k|                newr->d.count    = newcount;
 1349|  1.99k|                newn->inner()[0] = get<1>(subs);
 1350|  1.99k|                std::copy(node->inner() + idx + 1,
 1351|  1.99k|                          node->inner() + count,
 1352|  1.99k|                          newn->inner() + 1);
 1353|  1.99k|                if (!mutate) {
  ------------------
  |  Branch (1353:21): [True: 1.99k, False: 0]
  ------------------
 1354|  1.99k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1355|  1.99k|                    if (Mutating)
  ------------------
  |  Branch (1355:25): [Folded, False: 1.99k]
  ------------------
 1356|      0|                        pos.visit(dec_visitor{});
 1357|  1.99k|                }
 1358|  1.99k|                return std::make_tuple(pos.shift(), newn);
 1359|  1.99k|            }
 1360|  1.99k|            IMMER_CATCH (...) {
 1361|      0|                if (!mutate)
  ------------------
  |  Branch (1361:21): [True: 0, False: 0]
  ------------------
 1362|      0|                    node_t::delete_inner_r_e(newn);
 1363|      0|                else {
 1364|       |                    // restore the regular node that we were
 1365|       |                    // attempting to relax...
 1366|      0|                    node_t::heap::deallocate(node_t::max_sizeof_relaxed,
 1367|      0|                                             node->impl.d.data.inner.relaxed);
 1368|      0|                    node->impl.d.data.inner.relaxed = nullptr;
 1369|      0|                }
 1370|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1371|      0|            }
 1372|  1.99k|        }
 1373|  1.99k|    }
_ZN5immer6detail4rbts16dec_left_visitor13visit_relaxedIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEvOT_j:
 1198|  5.72k|    {
 1199|  5.72k|        using node_t = node_type<Pos>;
 1200|  5.72k|        auto node    = p.node();
 1201|  5.72k|        if (node->dec()) {
  ------------------
  |  Branch (1201:13): [True: 5.72k, False: 0]
  ------------------
 1202|  5.72k|            p.each_left(dec_t{}, idx);
 1203|  5.72k|            node_t::delete_inner_r(node, p.count());
 1204|  5.72k|        }
 1205|  5.72k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb1EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1246|   155k|    {
 1247|   155k|        auto idx                = pos.subindex(first);
 1248|   155k|        auto count              = pos.count();
 1249|   155k|        auto node               = pos.node();
 1250|   155k|        auto mutate             = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1250:35): [True: 155k, Folded]
  |  Branch (1250:47): [True: 148k, False: 6.83k]
  ------------------
 1251|   155k|        auto left_size          = pos.size_before(idx);
 1252|   155k|        auto child_size         = pos.size_sbh(idx, left_size);
 1253|   155k|        auto dropped_size       = first;
 1254|   155k|        auto child_dropped_size = dropped_size - left_size;
 1255|   155k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1255:13): [Folded, False: 155k]
  |  Branch (1255:25): [True: 0, False: 0]
  |  Branch (1255:45): [True: 0, False: 0]
  ------------------
 1256|      0|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1256:22): [True: 0, False: 0]
  ------------------
 1257|      0|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1258|      0|            if (mutate)
  ------------------
  |  Branch (1258:17): [True: 0, False: 0]
  ------------------
 1259|      0|                pos.visit(dec_left_visitor{}, idx);
 1260|      0|            else if (Mutating)
  ------------------
  |  Branch (1260:22): [True: 0, Folded]
  ------------------
 1261|      0|                pos.visit(dec_visitor{});
 1262|      0|            return r;
 1263|   155k|        } else {
 1264|   155k|            using std::get;
 1265|   155k|            auto newn     = mutate ? (node->ensure_mutable_relaxed(e), node)
  ------------------
  |  Branch (1265:29): [True: 148k, False: 6.83k]
  ------------------
 1266|   155k|                                   : node_t::make_inner_r_e(e);
 1267|   155k|            auto newr     = newn->relaxed();
 1268|   155k|            auto newcount = count - idx;
 1269|   155k|            auto new_child_size = child_size - child_dropped_size;
 1270|   155k|            IMMER_TRY {
  ------------------
  |  |   49|   155k|#define IMMER_TRY try
  ------------------
 1271|   155k|                auto subs =
 1272|   155k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1272:21): [True: 148k, False: 6.83k]
  ------------------
 1273|   155k|                           : pos.towards_sub_oh(
 1274|  6.83k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1275|   155k|                if (mutate)
  ------------------
  |  Branch (1275:21): [True: 148k, False: 6.83k]
  ------------------
 1276|   148k|                    pos.each_left(dec_visitor{}, idx);
 1277|   155k|                pos.copy_sizes(
 1278|   155k|                    idx + 1, newcount - 1, new_child_size, newr->d.sizes + 1);
 1279|   155k|                std::copy(node->inner() + idx + 1,
 1280|   155k|                          node->inner() + count,
 1281|   155k|                          newn->inner() + 1);
 1282|   155k|                newn->inner()[0] = get<1>(subs);
 1283|   155k|                newr->d.sizes[0] = new_child_size;
 1284|   155k|                newr->d.count    = newcount;
 1285|   155k|                assert(new_child_size);
  ------------------
  |  Branch (1285:17): [True: 155k, False: 0]
  ------------------
 1286|   155k|                if (!mutate) {
  ------------------
  |  Branch (1286:21): [True: 6.83k, False: 148k]
  ------------------
 1287|  6.83k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1288|  6.83k|                    if (Mutating)
  ------------------
  |  Branch (1288:25): [True: 6.83k, Folded]
  ------------------
 1289|  6.83k|                        pos.visit(dec_visitor{});
 1290|  6.83k|                }
 1291|   155k|                return std::make_tuple(pos.shift(), newn);
 1292|   155k|            }
 1293|   155k|            IMMER_CATCH (...) {
 1294|      0|                if (!mutate)
  ------------------
  |  Branch (1294:21): [True: 0, False: 0]
  ------------------
 1295|      0|                    node_t::delete_inner_r_e(newn);
 1296|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1297|      0|            }
 1298|   155k|        }
 1299|   155k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0ELb0EE13visit_relaxedIRNS1_11relaxed_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1246|  48.3k|    {
 1247|  48.3k|        auto idx                = pos.subindex(first);
 1248|  48.3k|        auto count              = pos.count();
 1249|  48.3k|        auto node               = pos.node();
 1250|  48.3k|        auto mutate             = Mutating && node->can_mutate(e);
  ------------------
  |  Branch (1250:35): [Folded, False: 48.3k]
  |  Branch (1250:47): [True: 0, False: 0]
  ------------------
 1251|  48.3k|        auto left_size          = pos.size_before(idx);
 1252|  48.3k|        auto child_size         = pos.size_sbh(idx, left_size);
 1253|  48.3k|        auto dropped_size       = first;
 1254|  48.3k|        auto child_dropped_size = dropped_size - left_size;
 1255|  48.3k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1255:13): [Folded, False: 48.3k]
  |  Branch (1255:25): [True: 0, False: 0]
  |  Branch (1255:45): [True: 0, False: 0]
  ------------------
 1256|      0|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1256:22): [True: 0, False: 0]
  ------------------
 1257|      0|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1258|      0|            if (mutate)
  ------------------
  |  Branch (1258:17): [True: 0, False: 0]
  ------------------
 1259|      0|                pos.visit(dec_left_visitor{}, idx);
 1260|      0|            else if (Mutating)
  ------------------
  |  Branch (1260:22): [Folded, False: 0]
  ------------------
 1261|      0|                pos.visit(dec_visitor{});
 1262|      0|            return r;
 1263|  48.3k|        } else {
 1264|  48.3k|            using std::get;
 1265|  48.3k|            auto newn     = mutate ? (node->ensure_mutable_relaxed(e), node)
  ------------------
  |  Branch (1265:29): [True: 0, False: 48.3k]
  ------------------
 1266|  48.3k|                                   : node_t::make_inner_r_e(e);
 1267|  48.3k|            auto newr     = newn->relaxed();
 1268|  48.3k|            auto newcount = count - idx;
 1269|  48.3k|            auto new_child_size = child_size - child_dropped_size;
 1270|  48.3k|            IMMER_TRY {
  ------------------
  |  |   49|  48.3k|#define IMMER_TRY try
  ------------------
 1271|  48.3k|                auto subs =
 1272|  48.3k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1272:21): [True: 0, False: 48.3k]
  ------------------
 1273|  48.3k|                           : pos.towards_sub_oh(
 1274|  48.3k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1275|  48.3k|                if (mutate)
  ------------------
  |  Branch (1275:21): [True: 0, False: 48.3k]
  ------------------
 1276|      0|                    pos.each_left(dec_visitor{}, idx);
 1277|  48.3k|                pos.copy_sizes(
 1278|  48.3k|                    idx + 1, newcount - 1, new_child_size, newr->d.sizes + 1);
 1279|  48.3k|                std::copy(node->inner() + idx + 1,
 1280|  48.3k|                          node->inner() + count,
 1281|  48.3k|                          newn->inner() + 1);
 1282|  48.3k|                newn->inner()[0] = get<1>(subs);
 1283|  48.3k|                newr->d.sizes[0] = new_child_size;
 1284|  48.3k|                newr->d.count    = newcount;
 1285|  48.3k|                assert(new_child_size);
  ------------------
  |  Branch (1285:17): [True: 48.3k, False: 0]
  ------------------
 1286|  48.3k|                if (!mutate) {
  ------------------
  |  Branch (1286:21): [True: 48.3k, False: 0]
  ------------------
 1287|  48.3k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1288|  48.3k|                    if (Mutating)
  ------------------
  |  Branch (1288:25): [Folded, False: 48.3k]
  ------------------
 1289|      0|                        pos.visit(dec_visitor{});
 1290|  48.3k|                }
 1291|  48.3k|                return std::make_tuple(pos.shift(), newn);
 1292|  48.3k|            }
 1293|  48.3k|            IMMER_CATCH (...) {
 1294|      0|                if (!mutate)
  ------------------
  |  Branch (1294:21): [True: 0, False: 0]
  ------------------
 1295|      0|                    node_t::delete_inner_r_e(newn);
 1296|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1297|      0|            }
 1298|  48.3k|        }
 1299|  48.3k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE13visit_regularIRNS1_15regular_sub_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1303|  9.64k|    {
 1304|  9.64k|        auto idx    = pos.subindex(first);
 1305|  9.64k|        auto count  = pos.count();
 1306|  9.64k|        auto node   = pos.node();
 1307|  9.64k|        auto mutate = Mutating
  ------------------
  |  Branch (1307:23): [True: 0, Folded]
  ------------------
 1308|       |                      // this is more restrictive than actually needed because
 1309|       |                      // it causes the algorithm to also avoid mutating the leaf
 1310|       |                      // in place
 1311|  9.64k|                      && !node_t::embed_relaxed && node->can_mutate(e);
  ------------------
  |  Branch (1311:26): [True: 0, Folded]
  |  Branch (1311:52): [True: 7.34k, False: 2.29k]
  ------------------
 1312|  9.64k|        auto left_size          = pos.size_before(idx);
 1313|  9.64k|        auto child_size         = pos.size_sbh(idx, left_size);
 1314|  9.64k|        auto dropped_size       = first;
 1315|  9.64k|        auto child_dropped_size = dropped_size - left_size;
 1316|  9.64k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1316:13): [True: 9.64k, Folded]
  |  Branch (1316:25): [True: 7.45k, False: 2.18k]
  |  Branch (1316:45): [True: 5.56k, False: 1.89k]
  ------------------
 1317|  5.56k|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1317:22): [True: 4.41k, False: 1.15k]
  ------------------
 1318|  5.56k|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1319|  5.56k|            if (mutate)
  ------------------
  |  Branch (1319:17): [True: 4.41k, False: 1.15k]
  ------------------
 1320|  4.41k|                pos.visit(dec_left_visitor{}, idx);
 1321|  1.15k|            else if (Mutating)
  ------------------
  |  Branch (1321:22): [True: 1.15k, Folded]
  ------------------
 1322|  1.15k|                pos.visit(dec_visitor{});
 1323|  5.56k|            return r;
 1324|  5.56k|        } else {
 1325|  4.07k|            using std::get;
 1326|       |            // if possible, we convert the node to a relaxed one simply by
 1327|       |            // allocating a `relaxed_t` size table for it... maybe some of this
 1328|       |            // magic should be moved as a `node<...>` static method...
 1329|  4.07k|            auto newcount = count - idx;
 1330|  4.07k|            auto newn =
 1331|  4.07k|                mutate ? (node->impl.d.data.inner.relaxed = new (
  ------------------
  |  Branch (1331:17): [True: 2.93k, False: 1.14k]
  ------------------
 1332|  2.93k|                              node_t::heap::allocate(node_t::max_sizeof_relaxed,
 1333|  2.93k|                                                     norefs_tag{})) relaxed_t,
 1334|  2.93k|                          node)
 1335|  4.07k|                       : node_t::make_inner_r_e(e);
 1336|  4.07k|            auto newr = newn->relaxed();
 1337|  4.07k|            IMMER_TRY {
  ------------------
  |  |   49|  4.07k|#define IMMER_TRY try
  ------------------
 1338|  4.07k|                auto subs =
 1339|  4.07k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1339:21): [True: 2.93k, False: 1.14k]
  ------------------
 1340|  4.07k|                           : pos.towards_sub_oh(
 1341|  1.14k|                                 no_collapse_no_mut_t{}, first, idx, e);
 1342|  4.07k|                if (mutate)
  ------------------
  |  Branch (1342:21): [True: 2.93k, False: 1.14k]
  ------------------
 1343|  2.93k|                    pos.each_left(dec_visitor{}, idx);
 1344|  4.07k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1345|  4.07k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1345:17): [True: 4.07k, False: 0]
  ------------------
 1346|  4.07k|                pos.copy_sizes(
 1347|  4.07k|                    idx + 1, newcount - 1, newr->d.sizes[0], newr->d.sizes + 1);
 1348|  4.07k|                newr->d.count    = newcount;
 1349|  4.07k|                newn->inner()[0] = get<1>(subs);
 1350|  4.07k|                std::copy(node->inner() + idx + 1,
 1351|  4.07k|                          node->inner() + count,
 1352|  4.07k|                          newn->inner() + 1);
 1353|  4.07k|                if (!mutate) {
  ------------------
  |  Branch (1353:21): [True: 1.14k, False: 2.93k]
  ------------------
 1354|  1.14k|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1355|  1.14k|                    if (Mutating)
  ------------------
  |  Branch (1355:25): [True: 1.14k, Folded]
  ------------------
 1356|  1.14k|                        pos.visit(dec_visitor{});
 1357|  1.14k|                }
 1358|  4.07k|                return std::make_tuple(pos.shift(), newn);
 1359|  4.07k|            }
 1360|  4.07k|            IMMER_CATCH (...) {
 1361|      0|                if (!mutate)
  ------------------
  |  Branch (1361:21): [True: 0, False: 0]
  ------------------
 1362|      0|                    node_t::delete_inner_r_e(newn);
 1363|      0|                else {
 1364|       |                    // restore the regular node that we were
 1365|       |                    // attempting to relax...
 1366|      0|                    node_t::heap::deallocate(node_t::max_sizeof_relaxed,
 1367|      0|                                             node->impl.d.data.inner.relaxed);
 1368|      0|                    node->impl.d.data.inner.relaxed = nullptr;
 1369|      0|                }
 1370|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1371|      0|            }
 1372|  4.07k|        }
 1373|  9.64k|    }
_ZN5immer6detail4rbts22slice_left_mut_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1ELb1EE13visit_regularIRNS1_8full_posISC_EEEENSt3__15tupleIJjPSC_EEEOT_mNSA_5applyIS7_E4type4editE:
 1303|  3.62k|    {
 1304|  3.62k|        auto idx    = pos.subindex(first);
 1305|  3.62k|        auto count  = pos.count();
 1306|  3.62k|        auto node   = pos.node();
 1307|  3.62k|        auto mutate = Mutating
  ------------------
  |  Branch (1307:23): [True: 0, Folded]
  ------------------
 1308|       |                      // this is more restrictive than actually needed because
 1309|       |                      // it causes the algorithm to also avoid mutating the leaf
 1310|       |                      // in place
 1311|  3.62k|                      && !node_t::embed_relaxed && node->can_mutate(e);
  ------------------
  |  Branch (1311:26): [True: 0, Folded]
  |  Branch (1311:52): [True: 1.42k, False: 2.19k]
  ------------------
 1312|  3.62k|        auto left_size          = pos.size_before(idx);
 1313|  3.62k|        auto child_size         = pos.size_sbh(idx, left_size);
 1314|  3.62k|        auto dropped_size       = first;
 1315|  3.62k|        auto child_dropped_size = dropped_size - left_size;
 1316|  3.62k|        if (Collapse && pos.shift() > BL && idx == pos.count() - 1) {
  ------------------
  |  Branch (1316:13): [True: 3.62k, Folded]
  |  Branch (1316:25): [True: 2.14k, False: 1.48k]
  |  Branch (1316:45): [True: 1.89k, False: 251]
  ------------------
 1317|  1.89k|            auto r = mutate ? pos.towards_sub_oh(this_t{}, first, idx, e)
  ------------------
  |  Branch (1317:22): [True: 310, False: 1.58k]
  ------------------
 1318|  1.89k|                            : pos.towards_sub_oh(no_mut_t{}, first, idx, e);
 1319|  1.89k|            if (mutate)
  ------------------
  |  Branch (1319:17): [True: 310, False: 1.58k]
  ------------------
 1320|    310|                pos.visit(dec_left_visitor{}, idx);
 1321|  1.58k|            else if (Mutating)
  ------------------
  |  Branch (1321:22): [True: 1.58k, Folded]
  ------------------
 1322|  1.58k|                pos.visit(dec_visitor{});
 1323|  1.89k|            return r;
 1324|  1.89k|        } else {
 1325|  1.73k|            using std::get;
 1326|       |            // if possible, we convert the node to a relaxed one simply by
 1327|       |            // allocating a `relaxed_t` size table for it... maybe some of this
 1328|       |            // magic should be moved as a `node<...>` static method...
 1329|  1.73k|            auto newcount = count - idx;
 1330|  1.73k|            auto newn =
 1331|  1.73k|                mutate ? (node->impl.d.data.inner.relaxed = new (
  ------------------
  |  Branch (1331:17): [True: 1.11k, False: 616]
  ------------------
 1332|  1.11k|                              node_t::heap::allocate(node_t::max_sizeof_relaxed,
 1333|  1.11k|                                                     norefs_tag{})) relaxed_t,
 1334|  1.11k|                          node)
 1335|  1.73k|                       : node_t::make_inner_r_e(e);
 1336|  1.73k|            auto newr = newn->relaxed();
 1337|  1.73k|            IMMER_TRY {
  ------------------
  |  |   49|  1.73k|#define IMMER_TRY try
  ------------------
 1338|  1.73k|                auto subs =
 1339|  1.73k|                    mutate ? pos.towards_sub_oh(no_collapse_t{}, first, idx, e)
  ------------------
  |  Branch (1339:21): [True: 1.11k, False: 616]
  ------------------
 1340|  1.73k|                           : pos.towards_sub_oh(
 1341|    616|                                 no_collapse_no_mut_t{}, first, idx, e);
 1342|  1.73k|                if (mutate)
  ------------------
  |  Branch (1342:21): [True: 1.11k, False: 616]
  ------------------
 1343|  1.11k|                    pos.each_left(dec_visitor{}, idx);
 1344|  1.73k|                newr->d.sizes[0] = child_size - child_dropped_size;
 1345|  1.73k|                assert(newr->d.sizes[0]);
  ------------------
  |  Branch (1345:17): [True: 1.73k, False: 0]
  ------------------
 1346|  1.73k|                pos.copy_sizes(
 1347|  1.73k|                    idx + 1, newcount - 1, newr->d.sizes[0], newr->d.sizes + 1);
 1348|  1.73k|                newr->d.count    = newcount;
 1349|  1.73k|                newn->inner()[0] = get<1>(subs);
 1350|  1.73k|                std::copy(node->inner() + idx + 1,
 1351|  1.73k|                          node->inner() + count,
 1352|  1.73k|                          newn->inner() + 1);
 1353|  1.73k|                if (!mutate) {
  ------------------
  |  Branch (1353:21): [True: 616, False: 1.11k]
  ------------------
 1354|    616|                    node_t::inc_nodes(newn->inner() + 1, newcount - 1);
 1355|    616|                    if (Mutating)
  ------------------
  |  Branch (1355:25): [True: 616, Folded]
  ------------------
 1356|    616|                        pos.visit(dec_visitor{});
 1357|    616|                }
 1358|  1.73k|                return std::make_tuple(pos.shift(), newn);
 1359|  1.73k|            }
 1360|  1.73k|            IMMER_CATCH (...) {
 1361|      0|                if (!mutate)
  ------------------
  |  Branch (1361:21): [True: 0, False: 0]
  ------------------
 1362|      0|                    node_t::delete_inner_r_e(newn);
 1363|      0|                else {
 1364|       |                    // restore the regular node that we were
 1365|       |                    // attempting to relax...
 1366|      0|                    node_t::heap::deallocate(node_t::max_sizeof_relaxed,
 1367|      0|                                             node->impl.d.data.inner.relaxed);
 1368|      0|                    node->impl.d.data.inner.relaxed = nullptr;
 1369|      0|                }
 1370|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1371|      0|            }
 1372|  1.73k|        }
 1373|  3.62k|    }
_ZN5immer6detail4rbts14equals_visitor3rrb10visit_nodeIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_16rrbtree_iteratorIiSE_Lj2ELj2EEESF_EEbOT_OT0_PT1_jm:
  349|  12.2k|        {
  350|  12.2k|            assert(shiftl <= posr.shift());
  ------------------
  |  Branch (350:13): [True: 12.2k, False: 0]
  ------------------
  351|  12.2k|            return shiftl == posr.shift()
  ------------------
  |  Branch (351:20): [True: 11.1k, False: 1.07k]
  ------------------
  352|  12.2k|                       ? visit_maybe_relaxed_sub(rootl,
  353|  11.1k|                                                 shiftl,
  354|  11.1k|                                                 sizel,
  355|  11.1k|                                                 this_t{},
  356|  11.1k|                                                 posr,
  357|  11.1k|                                                 first,
  358|  11.1k|                                                 size_t{})
  359|  12.2k|                       : posr.first_sub_inner(
  360|  1.07k|                             rrb{}, first, rootl, shiftl, sizel);
  361|  12.2k|        }
_ZN5immer6detail4rbts14equals_visitor13visit_relaxedIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESG_RNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEbOT_OT0_OT1_m:
  382|  29.3k|    {
  383|  29.3k|        auto nl = posl.node();
  384|  29.3k|        auto nr = posr.node();
  385|  29.3k|        if (nl == nr)
  ------------------
  |  Branch (385:13): [True: 8.88k, False: 20.4k]
  ------------------
  386|  8.88k|            return true;
  387|  20.4k|        auto cl = posl.count();
  388|  20.4k|        auto cr = posr.count();
  389|  20.4k|        assert(cr > 0);
  ------------------
  |  Branch (389:9): [True: 20.4k, False: 0]
  ------------------
  390|  20.4k|        auto sbr = size_t{};
  391|  20.4k|        auto i   = count_t{};
  392|  20.4k|        auto j   = count_t{};
  393|  63.4k|        for (; i < cl; ++i) {
  ------------------
  |  Branch (393:16): [True: 52.4k, False: 11.0k]
  ------------------
  394|  52.4k|            auto sbl = posl.size_before(i);
  395|  82.8k|            for (; j + 1 < cr && (sbr = posr.size_before(j)) < sbl; ++j)
  ------------------
  |  Branch (395:20): [True: 66.7k, False: 16.0k]
  |  Branch (395:34): [True: 30.4k, False: 36.3k]
  ------------------
  396|  30.4k|                ;
  397|  52.4k|            auto res =
  398|  52.4k|                sbl == sbr
  ------------------
  |  Branch (398:17): [True: 33.2k, False: 19.1k]
  ------------------
  399|  52.4k|                    ? posr.nth_sub(j, this_aux_t{}, i, posl, first, idx + sbl)
  400|  52.4k|                    : posl.nth_sub(i,
  401|  19.1k|                                   for_each_chunk_p_visitor{},
  402|  19.1k|                                   this_t::equal_chunk_p(first + (idx + sbl)));
  403|  52.4k|            if (!res)
  ------------------
  |  Branch (403:17): [True: 9.41k, False: 42.9k]
  ------------------
  404|  9.41k|                return false;
  405|  52.4k|        }
  406|  11.0k|        return true;
  407|  20.4k|    }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISF_EERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  336|  9.62k|        {
  337|  9.62k|            return posl.nth_sub_leaf(i, this_t{}, posr, first, idx);
  338|  9.62k|        }
_ZN5immer6detail4rbts14equals_visitor10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESG_RNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEbOT_OT0_OT1_m:
  427|  10.3k|    {
  428|  10.3k|        if (posl.node() == posr.node())
  ------------------
  |  Branch (428:13): [True: 5.19k, False: 5.11k]
  ------------------
  429|  5.19k|            return true;
  430|  5.11k|        auto cl = posl.count();
  431|  5.11k|        auto cr = posr.count();
  432|  5.11k|        auto mp = std::min(cl, cr);
  433|  5.11k|        return std::equal(posl.node()->leaf(),
  ------------------
  |  Branch (433:16): [True: 3.51k, False: 1.59k]
  ------------------
  434|  5.11k|                          posl.node()->leaf() + mp,
  435|  5.11k|                          posr.node()->leaf()) &&
  436|  3.51k|               std::equal(posl.node()->leaf() + mp,
  ------------------
  |  Branch (436:16): [True: 3.10k, False: 412]
  ------------------
  437|  3.51k|                          posl.node()->leaf() + posl.count(),
  438|  3.51k|                          first + (idx + mp));
  439|  10.3k|    }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t11visit_innerIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESH_RNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  329|  21.3k|        {
  330|  21.3k|            return posl.nth_sub(i, this_t{}, posr, first, idx);
  331|  21.3k|        }
_ZN5immer6detail4rbts14equals_visitor13visit_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEENSt3__19enable_ifIX12is_relaxed_vIT0_EEbE4typeEOT_OSP_OT1_m:
  412|  4.61k|    {
  413|  4.61k|        return this_t::visit_relaxed(posl, posr, first, idx);
  414|  4.61k|    }
_ZN5immer6detail4rbts14equals_visitor13visit_relaxedIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEbOT_OT0_OT1_m:
  382|  4.61k|    {
  383|  4.61k|        auto nl = posl.node();
  384|  4.61k|        auto nr = posr.node();
  385|  4.61k|        if (nl == nr)
  ------------------
  |  Branch (385:13): [True: 0, False: 4.61k]
  ------------------
  386|      0|            return true;
  387|  4.61k|        auto cl = posl.count();
  388|  4.61k|        auto cr = posr.count();
  389|  4.61k|        assert(cr > 0);
  ------------------
  |  Branch (389:9): [True: 4.61k, False: 0]
  ------------------
  390|  4.61k|        auto sbr = size_t{};
  391|  4.61k|        auto i   = count_t{};
  392|  4.61k|        auto j   = count_t{};
  393|  13.0k|        for (; i < cl; ++i) {
  ------------------
  |  Branch (393:16): [True: 10.9k, False: 2.12k]
  ------------------
  394|  10.9k|            auto sbl = posl.size_before(i);
  395|  16.9k|            for (; j + 1 < cr && (sbr = posr.size_before(j)) < sbl; ++j)
  ------------------
  |  Branch (395:20): [True: 12.6k, False: 4.37k]
  |  Branch (395:34): [True: 6.04k, False: 6.55k]
  ------------------
  396|  6.04k|                ;
  397|  10.9k|            auto res =
  398|  10.9k|                sbl == sbr
  ------------------
  |  Branch (398:17): [True: 6.71k, False: 4.22k]
  ------------------
  399|  10.9k|                    ? posr.nth_sub(j, this_aux_t{}, i, posl, first, idx + sbl)
  400|  10.9k|                    : posl.nth_sub(i,
  401|  4.22k|                                   for_each_chunk_p_visitor{},
  402|  4.22k|                                   this_t::equal_chunk_p(first + (idx + sbl)));
  403|  10.9k|            if (!res)
  ------------------
  |  Branch (403:17): [True: 2.48k, False: 8.45k]
  ------------------
  404|  2.48k|                return false;
  405|  10.9k|        }
  406|  2.12k|        return true;
  407|  4.61k|    }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_15regular_sub_posISF_EERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  336|  3.72k|        {
  337|  3.72k|            return posl.nth_sub_leaf(i, this_t{}, posr, first, idx);
  338|  3.72k|        }
_ZN5immer6detail4rbts14equals_visitor10visit_leafIRNS1_13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_12leaf_sub_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEbOT_OT0_OT1_m:
  427|  6.75k|    {
  428|  6.75k|        if (posl.node() == posr.node())
  ------------------
  |  Branch (428:13): [True: 3.91k, False: 2.83k]
  ------------------
  429|  3.91k|            return true;
  430|  2.83k|        auto cl = posl.count();
  431|  2.83k|        auto cr = posr.count();
  432|  2.83k|        auto mp = std::min(cl, cr);
  433|  2.83k|        return std::equal(posl.node()->leaf(),
  ------------------
  |  Branch (433:16): [True: 2.60k, False: 230]
  ------------------
  434|  2.83k|                          posl.node()->leaf() + mp,
  435|  2.83k|                          posr.node()->leaf()) &&
  436|  2.60k|               std::equal(posl.node()->leaf() + mp,
  ------------------
  |  Branch (436:16): [True: 2.36k, False: 244]
  ------------------
  437|  2.60k|                          posl.node()->leaf() + posl.count(),
  438|  2.60k|                          first + (idx + mp));
  439|  6.75k|    }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t11visit_innerIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_15regular_sub_posISF_EERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  329|  2.23k|        {
  330|  2.23k|            return posl.nth_sub(i, this_t{}, posr, first, idx);
  331|  2.23k|        }
_ZN5immer6detail4rbts14equals_visitor13visit_regularIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEENSt3__19enable_ifIX12is_relaxed_vIT0_EEbE4typeEOT_OSP_OT1_m:
  412|  2.72k|    {
  413|  2.72k|        return this_t::visit_relaxed(posl, posr, first, idx);
  414|  2.72k|    }
_ZN5immer6detail4rbts14equals_visitor13visit_relaxedIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEbOT_OT0_OT1_m:
  382|  2.72k|    {
  383|  2.72k|        auto nl = posl.node();
  384|  2.72k|        auto nr = posr.node();
  385|  2.72k|        if (nl == nr)
  ------------------
  |  Branch (385:13): [True: 0, False: 2.72k]
  ------------------
  386|      0|            return true;
  387|  2.72k|        auto cl = posl.count();
  388|  2.72k|        auto cr = posr.count();
  389|  2.72k|        assert(cr > 0);
  ------------------
  |  Branch (389:9): [True: 2.72k, False: 0]
  ------------------
  390|  2.72k|        auto sbr = size_t{};
  391|  2.72k|        auto i   = count_t{};
  392|  2.72k|        auto j   = count_t{};
  393|  12.7k|        for (; i < cl; ++i) {
  ------------------
  |  Branch (393:16): [True: 10.3k, False: 2.39k]
  ------------------
  394|  10.3k|            auto sbl = posl.size_before(i);
  395|  17.6k|            for (; j + 1 < cr && (sbr = posr.size_before(j)) < sbl; ++j)
  ------------------
  |  Branch (395:20): [True: 13.6k, False: 4.07k]
  |  Branch (395:34): [True: 7.34k, False: 6.27k]
  ------------------
  396|  7.34k|                ;
  397|  10.3k|            auto res =
  398|  10.3k|                sbl == sbr
  ------------------
  |  Branch (398:17): [True: 5.72k, False: 4.61k]
  ------------------
  399|  10.3k|                    ? posr.nth_sub(j, this_aux_t{}, i, posl, first, idx + sbl)
  400|  10.3k|                    : posl.nth_sub(i,
  401|  4.61k|                                   for_each_chunk_p_visitor{},
  402|  4.61k|                                   this_t::equal_chunk_p(first + (idx + sbl)));
  403|  10.3k|            if (!res)
  ------------------
  |  Branch (403:17): [True: 331, False: 10.0k]
  ------------------
  404|    331|                return false;
  405|  10.3k|        }
  406|  2.39k|        return true;
  407|  2.72k|    }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_8full_posISF_EERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  336|  3.70k|        {
  337|  3.70k|            return posl.nth_sub_leaf(i, this_t{}, posr, first, idx);
  338|  3.70k|        }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t11visit_innerIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_8full_posISF_EERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  329|    887|        {
  330|    887|            return posl.nth_sub(i, this_t{}, posr, first, idx);
  331|    887|        }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t11visit_innerIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_8full_posISF_EERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  329|  1.13k|        {
  330|  1.13k|            return posl.nth_sub(i, this_t{}, posr, first, idx);
  331|  1.13k|        }
_ZN5immer6detail4rbts14equals_visitor13visit_regularIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_15regular_sub_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEENSt3__19enable_ifIXnt12is_relaxed_vIT0_EEbE4typeEOT_OSP_OT1_m:
  419|  1.88k|    {
  420|  1.88k|        return posl.count() >= posr.count()
  ------------------
  |  Branch (420:16): [True: 1.88k, False: 0]
  ------------------
  421|  1.88k|                   ? this_t::visit_regular(posl, posr.node())
  422|  1.88k|                   : this_t::visit_regular(posr, posl.node());
  423|  1.88k|    }
_ZN5immer6detail4rbts14equals_visitor13visit_regularIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESE_EEbOT_PT0_:
  443|  11.7k|    {
  444|  11.7k|        auto node = pos.node();
  445|  11.7k|        return node == other || pos.each_pred_zip(this_t{}, other);
  ------------------
  |  Branch (445:16): [True: 6.90k, False: 4.80k]
  |  Branch (445:33): [True: 3.18k, False: 1.62k]
  ------------------
  446|  11.7k|    }
_ZN5immer6detail4rbts14equals_visitor10visit_leafIRNS1_13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESE_EEbOT_PT0_:
  450|  17.7k|    {
  451|  17.7k|        auto node = pos.node();
  452|  17.7k|        return node == other || std::equal(node->leaf(),
  ------------------
  |  Branch (452:16): [True: 8.80k, False: 8.93k]
  |  Branch (452:33): [True: 7.01k, False: 1.92k]
  ------------------
  453|  8.93k|                                           node->leaf() + pos.count(),
  454|  8.93k|                                           other->leaf());
  455|  17.7k|    }
_ZN5immer6detail4rbts14equals_visitor13visit_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESE_EEbOT_PT0_:
  443|  8.07k|    {
  444|  8.07k|        auto node = pos.node();
  445|  8.07k|        return node == other || pos.each_pred_zip(this_t{}, other);
  ------------------
  |  Branch (445:16): [True: 2.81k, False: 5.25k]
  |  Branch (445:33): [True: 2.79k, False: 2.46k]
  ------------------
  446|  8.07k|    }
_ZN5immer6detail4rbts14equals_visitor10visit_leafIRNS1_8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESE_EEbOT_PT0_:
  450|  2.96k|    {
  451|  2.96k|        auto node = pos.node();
  452|  2.96k|        return node == other || std::equal(node->leaf(),
  ------------------
  |  Branch (452:16): [True: 1.51k, False: 1.44k]
  |  Branch (452:33): [True: 686, False: 763]
  ------------------
  453|  1.44k|                                           node->leaf() + pos.count(),
  454|  1.44k|                                           other->leaf());
  455|  2.96k|    }
_ZN5immer6detail4rbts14equals_visitor13visit_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESE_EEbOT_PT0_:
  443|  4.32k|    {
  444|  4.32k|        auto node = pos.node();
  445|  4.32k|        return node == other || pos.each_pred_zip(this_t{}, other);
  ------------------
  |  Branch (445:16): [True: 593, False: 3.73k]
  |  Branch (445:33): [True: 2.43k, False: 1.29k]
  ------------------
  446|  4.32k|    }
_ZN5immer6detail4rbts24for_each_chunk_p_visitor10visit_leafIRNS1_13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEDaOT_EUlSL_T0_E_EEbSM_OSN_:
  112|   389k|    {
  113|   389k|        auto data = as_const(pos.node()->leaf());
  114|   389k|        return fn(data, data + pos.count());
  115|   389k|    }
_ZZN5immer6detail4rbts14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaOT_ENUlSE_T0_E_clIPKiSK_EEDaSE_SG_:
  367|  1.41M|        return [iter](auto f, auto e) mutable {
  368|  1.41M|            if (f == &*iter) {
  ------------------
  |  Branch (368:17): [True: 194k, False: 1.22M]
  ------------------
  369|   194k|                iter += e - f;
  370|   194k|                return true;
  371|   194k|            }
  372|  5.62M|            for (; f != e; ++f, ++iter)
  ------------------
  |  Branch (372:20): [True: 4.40M, False: 1.22M]
  ------------------
  373|  4.40M|                if (*f != *iter)
  ------------------
  |  Branch (373:21): [True: 3.53k, False: 4.40M]
  ------------------
  374|  3.53k|                    return false;
  375|  1.22M|            return true;
  376|  1.22M|        };
_ZN5immer6detail4rbts18region_for_visitorIiE11visit_innerIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEENSt3__15tupleIJPimmEEEOT_m:
   53|  9.73M|    {
   54|  9.73M|        return pos.towards(this_t{}, idx);
   55|  9.73M|    }
_ZN5immer6detail4rbts18region_for_visitorIiE10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEENSt3__15tupleIJPimmEEEOT_m:
   59|  1.02M|    {
   60|  1.02M|        return std::make_tuple(pos.node()->leaf(), pos.index(idx), pos.count());
   61|  1.02M|    }
_ZN5immer6detail4rbts18region_for_visitorIiE11visit_innerIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEENSt3__15tupleIJPimmEEEOT_m:
   53|   417k|    {
   54|   417k|        return pos.towards(this_t{}, idx);
   55|   417k|    }
_ZN5immer6detail4rbts18region_for_visitorIiE10visit_leafIRNS1_13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEENSt3__15tupleIJPimmEEEOT_m:
   59|   391k|    {
   60|   391k|        return std::make_tuple(pos.node()->leaf(), pos.index(idx), pos.count());
   61|   391k|    }
_ZN5immer6detail4rbts18region_for_visitorIiE11visit_innerIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEENSt3__15tupleIJPimmEEEOT_m:
   53|  1.14M|    {
   54|  1.14M|        return pos.towards(this_t{}, idx);
   55|  1.14M|    }
_ZN5immer6detail4rbts18region_for_visitorIiE10visit_leafIRNS1_8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEENSt3__15tupleIJPimmEEEOT_m:
   59|  26.2k|    {
   60|  26.2k|        return std::make_tuple(pos.node()->leaf(), pos.index(idx), pos.count());
   61|  26.2k|    }
_ZN5immer6detail4rbts18region_for_visitorIiE11visit_innerIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEENSt3__15tupleIJPimmEEEOT_m:
   53|   125k|    {
   54|   125k|        return pos.towards(this_t{}, idx);
   55|   125k|    }
_ZN5immer6detail4rbts24for_each_chunk_p_visitor11visit_innerIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEDaOT_EUlSL_T0_E_EEbSM_OSN_:
  106|   105k|    {
  107|   105k|        return pos.each_pred(this_t{}, fn);
  108|   105k|    }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t11visit_innerIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESH_RNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  329|    749|        {
  330|    749|            return posl.nth_sub(i, this_t{}, posr, first, idx);
  331|    749|        }
_ZN5immer6detail4rbts14equals_visitor13visit_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESG_RNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEENSt3__19enable_ifIXnt12is_relaxed_vIT0_EEbE4typeEOT_OSM_OT1_m:
  419|  6.91k|    {
  420|  6.91k|        return posl.count() >= posr.count()
  ------------------
  |  Branch (420:16): [True: 6.91k, False: 0]
  ------------------
  421|  6.91k|                   ? this_t::visit_regular(posl, posr.node())
  422|  6.91k|                   : this_t::visit_regular(posr, posl.node());
  423|  6.91k|    }
_ZN5immer6detail4rbts24for_each_chunk_p_visitor10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEDaOT_EUlSL_T0_E_EEbSM_OSN_:
  112|  1.00M|    {
  113|  1.00M|        auto data = as_const(pos.node()->leaf());
  114|  1.00M|        return fn(data, data + pos.count());
  115|  1.00M|    }
_ZN5immer6detail4rbts24for_each_chunk_p_visitor11visit_innerIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEDaOT_EUlSL_T0_E_EEbSM_OSN_:
  106|  22.8k|    {
  107|  22.8k|        return pos.each_pred(this_t{}, fn);
  108|  22.8k|    }
_ZN5immer6detail4rbts24for_each_chunk_p_visitor10visit_leafIRNS1_8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEDaOT_EUlSL_T0_E_EEbSM_OSN_:
  112|  21.5k|    {
  113|  21.5k|        auto data = as_const(pos.node()->leaf());
  114|  21.5k|        return fn(data, data + pos.count());
  115|  21.5k|    }
_ZN5immer6detail4rbts24for_each_chunk_p_visitor11visit_innerIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEDaOT_EUlSL_T0_E_EEbSM_OSN_:
  106|  6.70k|    {
  107|  6.70k|        return pos.each_pred(this_t{}, fn);
  108|  6.70k|    }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t11visit_innerIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISF_EERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  329|  2.61k|        {
  330|  2.61k|            return posl.nth_sub(i, this_t{}, posr, first, idx);
  331|  2.61k|        }
_ZN5immer6detail4rbts14equals_visitor13visit_relaxedIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_15regular_sub_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEbOT_OT0_OT1_m:
  382|  2.36k|    {
  383|  2.36k|        auto nl = posl.node();
  384|  2.36k|        auto nr = posr.node();
  385|  2.36k|        if (nl == nr)
  ------------------
  |  Branch (385:13): [True: 0, False: 2.36k]
  ------------------
  386|      0|            return true;
  387|  2.36k|        auto cl = posl.count();
  388|  2.36k|        auto cr = posr.count();
  389|  2.36k|        assert(cr > 0);
  ------------------
  |  Branch (389:9): [True: 2.36k, False: 0]
  ------------------
  390|  2.36k|        auto sbr = size_t{};
  391|  2.36k|        auto i   = count_t{};
  392|  2.36k|        auto j   = count_t{};
  393|  7.99k|        for (; i < cl; ++i) {
  ------------------
  |  Branch (393:16): [True: 6.37k, False: 1.62k]
  ------------------
  394|  6.37k|            auto sbl = posl.size_before(i);
  395|  9.92k|            for (; j + 1 < cr && (sbr = posr.size_before(j)) < sbl; ++j)
  ------------------
  |  Branch (395:20): [True: 7.89k, False: 2.03k]
  |  Branch (395:34): [True: 3.55k, False: 4.34k]
  ------------------
  396|  3.55k|                ;
  397|  6.37k|            auto res =
  398|  6.37k|                sbl == sbr
  ------------------
  |  Branch (398:17): [True: 4.05k, False: 2.31k]
  ------------------
  399|  6.37k|                    ? posr.nth_sub(j, this_aux_t{}, i, posl, first, idx + sbl)
  400|  6.37k|                    : posl.nth_sub(i,
  401|  2.31k|                                   for_each_chunk_p_visitor{},
  402|  2.31k|                                   this_t::equal_chunk_p(first + (idx + sbl)));
  403|  6.37k|            if (!res)
  ------------------
  |  Branch (403:17): [True: 744, False: 5.62k]
  ------------------
  404|    744|                return false;
  405|  6.37k|        }
  406|  1.62k|        return true;
  407|  2.36k|    }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t10visit_leafIRNS1_13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISF_EERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  336|  5.44k|        {
  337|  5.44k|            return posl.nth_sub_leaf(i, this_t{}, posr, first, idx);
  338|  5.44k|        }
_ZN5immer6detail4rbts14equals_visitor10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_13full_leaf_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEbOT_OT0_OT1_m:
  427|  5.44k|    {
  428|  5.44k|        if (posl.node() == posr.node())
  ------------------
  |  Branch (428:13): [True: 2.81k, False: 2.62k]
  ------------------
  429|  2.81k|            return true;
  430|  2.62k|        auto cl = posl.count();
  431|  2.62k|        auto cr = posr.count();
  432|  2.62k|        auto mp = std::min(cl, cr);
  433|  2.62k|        return std::equal(posl.node()->leaf(),
  ------------------
  |  Branch (433:16): [True: 2.23k, False: 391]
  ------------------
  434|  2.62k|                          posl.node()->leaf() + mp,
  435|  2.62k|                          posr.node()->leaf()) &&
  436|  2.23k|               std::equal(posl.node()->leaf() + mp,
  ------------------
  |  Branch (436:16): [True: 2.23k, False: 0]
  ------------------
  437|  2.23k|                          posl.node()->leaf() + posl.count(),
  438|  2.23k|                          first + (idx + mp));
  439|  5.44k|    }
_ZN5immer6detail4rbts14equals_visitor10this_aux_t11visit_innerIRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_11relaxed_posISF_EERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEEEEbOT_jOT0_OT1_m:
  329|  3.18k|        {
  330|  3.18k|            return posl.nth_sub(i, this_t{}, posr, first, idx);
  331|  3.18k|        }
_ZN5immer6detail4rbts14equals_visitor13visit_relaxedIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_8full_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEbOT_OT0_OT1_m:
  382|  2.02k|    {
  383|  2.02k|        auto nl = posl.node();
  384|  2.02k|        auto nr = posr.node();
  385|  2.02k|        if (nl == nr)
  ------------------
  |  Branch (385:13): [True: 0, False: 2.02k]
  ------------------
  386|      0|            return true;
  387|  2.02k|        auto cl = posl.count();
  388|  2.02k|        auto cr = posr.count();
  389|  2.02k|        assert(cr > 0);
  ------------------
  |  Branch (389:9): [True: 2.02k, False: 0]
  ------------------
  390|  2.02k|        auto sbr = size_t{};
  391|  2.02k|        auto i   = count_t{};
  392|  2.02k|        auto j   = count_t{};
  393|  9.14k|        for (; i < cl; ++i) {
  ------------------
  |  Branch (393:16): [True: 7.51k, False: 1.62k]
  ------------------
  394|  7.51k|            auto sbl = posl.size_before(i);
  395|  12.9k|            for (; j + 1 < cr && (sbr = posr.size_before(j)) < sbl; ++j)
  ------------------
  |  Branch (395:20): [True: 11.3k, False: 1.58k]
  |  Branch (395:34): [True: 5.41k, False: 5.93k]
  ------------------
  396|  5.41k|                ;
  397|  7.51k|            auto res =
  398|  7.51k|                sbl == sbr
  ------------------
  |  Branch (398:17): [True: 4.88k, False: 2.63k]
  ------------------
  399|  7.51k|                    ? posr.nth_sub(j, this_aux_t{}, i, posl, first, idx + sbl)
  400|  7.51k|                    : posl.nth_sub(i,
  401|  2.63k|                                   for_each_chunk_p_visitor{},
  402|  2.63k|                                   this_t::equal_chunk_p(first + (idx + sbl)));
  403|  7.51k|            if (!res)
  ------------------
  |  Branch (403:17): [True: 399, False: 7.11k]
  ------------------
  404|    399|                return false;
  405|  7.51k|        }
  406|  1.62k|        return true;
  407|  2.02k|    }
_ZN5immer6detail4rbts14equals_visitor13visit_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_8full_posISE_EERNS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEENSt3__19enable_ifIXnt12is_relaxed_vIT0_EEbE4typeEOT_OSP_OT1_m:
  419|  1.15k|    {
  420|  1.15k|        return posl.count() >= posr.count()
  ------------------
  |  Branch (420:16): [True: 1.15k, False: 0]
  ------------------
  421|  1.15k|                   ? this_t::visit_regular(posl, posr.node())
  422|  1.15k|                   : this_t::visit_regular(posr, posl.node());
  423|  1.15k|    }
_ZN5immer6detail4rbts24for_each_chunk_p_visitor11visit_innerIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSD_Lj2ELj2EEEEEDaOT_EUlSL_T0_E_EEbSM_OSN_:
  106|   628k|    {
  107|   628k|        return pos.each_pred(this_t{}, fn);
  108|   628k|    }
_ZN5immer6detail4rbts14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaOT_:
  366|  32.9k|    {
  367|  32.9k|        return [iter](auto f, auto e) mutable {
  368|  32.9k|            if (f == &*iter) {
  369|  32.9k|                iter += e - f;
  370|  32.9k|                return true;
  371|  32.9k|            }
  372|  32.9k|            for (; f != e; ++f, ++iter)
  373|  32.9k|                if (*f != *iter)
  374|  32.9k|                    return false;
  375|  32.9k|            return true;
  376|  32.9k|        };
  377|  32.9k|    }
_ZN5immer6detail4rbts14equals_visitor3rrb10visit_nodeIRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_16rrbtree_iteratorIiSE_Lj2ELj2EEESF_EEbOT_OT0_PT1_jm:
  349|  1.40k|        {
  350|  1.40k|            assert(shiftl <= posr.shift());
  ------------------
  |  Branch (350:13): [True: 1.40k, False: 0]
  ------------------
  351|  1.40k|            return shiftl == posr.shift()
  ------------------
  |  Branch (351:20): [True: 1.07k, False: 330]
  ------------------
  352|  1.40k|                       ? visit_maybe_relaxed_sub(rootl,
  353|  1.07k|                                                 shiftl,
  354|  1.07k|                                                 sizel,
  355|  1.07k|                                                 this_t{},
  356|  1.07k|                                                 posr,
  357|  1.07k|                                                 first,
  358|  1.07k|                                                 size_t{})
  359|  1.40k|                       : posr.first_sub_inner(
  360|    330|                             rrb{}, first, rootl, shiftl, sizel);
  361|  1.40k|        }
_ZN5immer6detail4rbts14equals_visitor3rrb10visit_nodeIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_16rrbtree_iteratorIiSE_Lj2ELj2EEESF_EEbOT_OT0_PT1_jm:
  349|  6.67k|        {
  350|  6.67k|            assert(shiftl <= posr.shift());
  ------------------
  |  Branch (350:13): [True: 6.67k, False: 0]
  ------------------
  351|  6.67k|            return shiftl == posr.shift()
  ------------------
  |  Branch (351:20): [True: 6.67k, False: 0]
  ------------------
  352|  6.67k|                       ? visit_maybe_relaxed_sub(rootl,
  353|  6.67k|                                                 shiftl,
  354|  6.67k|                                                 sizel,
  355|  6.67k|                                                 this_t{},
  356|  6.67k|                                                 posr,
  357|  6.67k|                                                 first,
  358|  6.67k|                                                 size_t{})
  359|  6.67k|                       : posr.first_sub_inner(
  360|      0|                             rrb{}, first, rootl, shiftl, sizel);
  361|  6.67k|        }
_ZN5immer6detail4rbts14equals_visitor10visit_leafIRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEESE_EEbOT_PT0_:
  450|  6.95k|    {
  451|  6.95k|        auto node = pos.node();
  452|  6.95k|        return node == other || std::equal(node->leaf(),
  ------------------
  |  Branch (452:16): [True: 4.12k, False: 2.83k]
  |  Branch (452:33): [True: 1.09k, False: 1.73k]
  ------------------
  453|  2.83k|                                           node->leaf() + pos.count(),
  454|  2.83k|                                           other->leaf());
  455|  6.95k|    }

_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_11dec_visitorEJEEEDcPT_jmT0_DpOT1_:
 1838|  31.4M|{
 1839|  31.4M|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 31.4M, False: 0]
  ------------------
 1840|  31.4M|    auto relaxed = node->relaxed();
 1841|  31.4M|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 28.8M, False: 2.63M]
  ------------------
 1842|  28.8M|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 28.8M, False: 0]
  ------------------
 1843|  28.8M|        return make_relaxed_pos(node, shift, relaxed)
 1844|  28.8M|            .visit(v, std::forward<Args>(args)...);
 1845|  28.8M|    } else {
 1846|  2.63M|        return make_regular_sub_pos(node, shift, size)
 1847|  2.63M|            .visit(v, std::forward<Args>(args)...);
 1848|  2.63M|    }
 1849|  31.4M|}
_ZN5immer6detail4rbts16make_relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_11relaxed_posIT_EEPSE_jPNSE_9relaxed_tE:
 1828|  98.7M|{
 1829|  98.7M|    assert(node);
  ------------------
  |  Branch (1829:5): [True: 98.7M, False: 0]
  ------------------
 1830|  98.7M|    assert(relaxed);
  ------------------
  |  Branch (1830:5): [True: 98.7M, False: 0]
  ------------------
 1831|  98.7M|    assert(shift >= NodeT::bits_leaf);
  ------------------
  |  Branch (1831:5): [True: 98.7M, False: 0]
  ------------------
 1832|  98.7M|    return {node, shift, relaxed};
 1833|  98.7M|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_11dec_visitorEJEEEDcT_DpOT0_:
 1813|  36.9M|    {
 1814|  36.9M|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  36.9M|    }
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4nodeEv:
 1431|  60.1M|    node_t* node() const { return node_; }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4eachINS1_11dec_visitorEJEEEvT_DpOT0_:
 1476|  12.1M|    {
 1477|  12.1M|        each_left(v, relaxed_->d.count, args...);
 1478|  12.1M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_leftINS1_11dec_visitorEJEEEvT_jDpOT0_:
 1623|  12.3M|    {
 1624|  12.3M|        auto p = node_->inner();
 1625|  12.3M|        auto s = size_t{};
 1626|  12.3M|        if (shift_ == BL) {
  ------------------
  |  Branch (1626:13): [True: 2.24M, False: 10.0M]
  ------------------
 1627|  9.81M|            for (auto i = count_t{0}; i < n; ++i) {
  ------------------
  |  Branch (1627:39): [True: 7.57M, False: 2.24M]
  ------------------
 1628|  7.57M|                IMMER_PREFETCH(p + i + 1);
 1629|  7.57M|                make_leaf_sub_pos(p[i], relaxed_->d.sizes[i] - s)
 1630|  7.57M|                    .visit(v, args...);
 1631|  7.57M|                s = relaxed_->d.sizes[i];
 1632|  7.57M|                assert(s);
  ------------------
  |  Branch (1632:17): [True: 7.57M, False: 0]
  ------------------
 1633|  7.57M|            }
 1634|  10.0M|        } else {
 1635|  10.0M|            auto ss = shift_ - B;
 1636|  39.9M|            for (auto i = count_t{0}; i < n; ++i) {
  ------------------
  |  Branch (1636:39): [True: 29.8M, False: 10.0M]
  ------------------
 1637|  29.8M|                visit_maybe_relaxed_sub(
 1638|  29.8M|                    p[i], ss, relaxed_->d.sizes[i] - s, v, args...);
 1639|  29.8M|                s = relaxed_->d.sizes[i];
 1640|       |                assert(s);
  ------------------
  |  Branch (1640:17): [True: 29.8M, False: 0]
  ------------------
 1641|  29.8M|            }
 1642|  10.0M|        }
 1643|  12.3M|    }
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5countEv:
 1430|  57.1M|    count_t count() const { return relaxed_->d.count; }
_ZN5immer6detail4rbts20make_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_15regular_sub_posIT_EEPSE_jm:
 1044|  6.55M|{
 1045|  6.55M|    assert(node);
  ------------------
  |  Branch (1045:5): [True: 6.55M, False: 0]
  ------------------
 1046|  6.55M|    assert(shift >= NodeT::bits_leaf);
  ------------------
  |  Branch (1046:5): [True: 6.55M, False: 0]
  ------------------
 1047|  6.55M|    assert(size > 0);
  ------------------
  |  Branch (1047:5): [True: 6.55M, False: 0]
  ------------------
 1048|  6.55M|    assert(size <= (branches<NodeT::bits, size_t> << shift));
  ------------------
  |  Branch (1048:5): [True: 6.55M, False: 0]
  ------------------
 1049|  6.55M|    return {node, shift, size};
 1050|  6.55M|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_11dec_visitorEJEEEDcT_DpOT0_:
 1036|  2.63M|    {
 1037|  2.63M|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  2.63M|    }
_ZNK5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4nodeEv:
  785|  8.74M|    node_t* node() const { return node_; }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4eachINS1_11dec_visitorEJEEEvT_DpOT0_:
  825|   623k|    {
  826|   623k|        return each_regular(*this, v, args...);
  827|   623k|    }
_ZN5immer6detail4rbts12each_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_11dec_visitorEJEEEvOT_T0_DpOT1_:
  343|   623k|{
  344|   623k|    constexpr auto B  = bits<Pos>;
  345|   623k|    constexpr auto BL = bits_leaf<Pos>;
  346|   623k|    auto n            = p.node()->inner();
  347|   623k|    auto last         = p.count() - 1;
  348|   623k|    auto e            = n + last;
  349|   623k|    if (p.shift() == BL) {
  ------------------
  |  Branch (349:9): [True: 52.1k, False: 570k]
  ------------------
  350|   106k|        for (; n != e; ++n) {
  ------------------
  |  Branch (350:16): [True: 54.3k, False: 52.1k]
  ------------------
  351|  54.3k|            IMMER_PREFETCH(n + 1);
  352|  54.3k|            make_full_leaf_pos(*n).visit(v, args...);
  353|  54.3k|        }
  354|  52.1k|        make_leaf_pos(*n, p.size()).visit(v, args...);
  355|   570k|    } else {
  356|   570k|        auto ss = p.shift() - B;
  357|  1.33M|        for (; n != e; ++n)
  ------------------
  |  Branch (357:16): [True: 766k, False: 570k]
  ------------------
  358|   766k|            make_full_pos(*n, ss).visit(v, args...);
  359|   570k|        make_regular_pos(*n, ss, p.size()).visit(v, args...);
  360|   570k|    }
  361|   623k|}
_ZNK5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
  787|  8.25M|    shift_t shift() const { return shift_; }
_ZN5immer6detail4rbts18make_full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_13full_leaf_posIT_EEPSE_:
  214|  4.64M|{
  215|  4.64M|    assert(node);
  ------------------
  |  Branch (215:5): [True: 4.64M, False: 0]
  ------------------
  216|  4.64M|    return {node};
  217|  4.64M|}
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_11dec_visitorEJEEEDcT_DpOT0_:
  207|  1.27M|    {
  208|  1.27M|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  1.27M|    }
_ZNK5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4nodeEv:
  199|  3.51M|    node_t* node() const { return node_; }
_ZNK5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5countEv:
  198|  3.93M|    count_t count() const { return branches<BL>; }
_ZN5immer6detail4rbts13make_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_8leaf_posIT_EEPSE_m:
  119|  1.08M|{
  120|  1.08M|    assert(node);
  ------------------
  |  Branch (120:5): [True: 1.08M, False: 0]
  ------------------
  121|  1.08M|    assert(size > 0);
  ------------------
  |  Branch (121:5): [True: 1.08M, False: 0]
  ------------------
  122|  1.08M|    return {node, size};
  123|  1.08M|}
_ZNK5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4sizeEv:
  786|  4.61M|    size_t size() const { return size_; }
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_11dec_visitorEJEEEDcT_DpOT0_:
  112|   496k|    {
  113|   496k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|   496k|    }
_ZNK5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4nodeEv:
  104|  1.09M|    node_t* node() const { return node_; }
_ZNK5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5countEv:
  103|  1.14M|    count_t count() const { return index(size_ - 1) + 1; }
_ZNK5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5indexEm:
  107|  1.18M|    count_t index(size_t idx) const { return idx & mask<BL>; }
_ZN5immer6detail4rbts13make_full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_8full_posIT_EEPSE_j:
 1412|  6.56M|{
 1413|  6.56M|    assert(node);
  ------------------
  |  Branch (1413:5): [True: 6.56M, False: 0]
  ------------------
 1414|  6.56M|    assert(shift >= NodeT::bits_leaf);
  ------------------
  |  Branch (1414:5): [True: 6.56M, False: 0]
  ------------------
 1415|  6.56M|    return {node, shift};
 1416|  6.56M|}
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_11dec_visitorEJEEEDcT_DpOT0_:
 1405|  3.63M|    {
 1406|  3.63M|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  3.63M|    }
_ZNK5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4nodeEv:
 1159|  4.45M|    node_t* node() const { return node_; }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4eachINS1_11dec_visitorEJEEEvT_DpOT0_:
 1185|   247k|    {
 1186|   247k|        auto p = node_->inner();
 1187|   247k|        auto e = p + branches<B>;
 1188|   247k|        if (shift_ == BL) {
  ------------------
  |  Branch (1188:13): [True: 189k, False: 57.4k]
  ------------------
 1189|   949k|            for (; p != e; ++p) {
  ------------------
  |  Branch (1189:20): [True: 759k, False: 189k]
  ------------------
 1190|   759k|                IMMER_PREFETCH(p + 1);
 1191|   759k|                make_full_leaf_pos(*p).visit(v, args...);
 1192|   759k|            }
 1193|   189k|        } else {
 1194|  57.4k|            auto ss = shift_ - B;
 1195|   287k|            for (; p != e; ++p)
  ------------------
  |  Branch (1195:20): [True: 229k, False: 57.4k]
  ------------------
 1196|   229k|                make_full_pos(*p, ss).visit(v, args...);
 1197|  57.4k|        }
 1198|   247k|    }
_ZNK5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5countEv:
 1158|  1.80M|    count_t count() const { return branches<B>; }
_ZN5immer6detail4rbts16make_regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_11regular_posIT_EEPSE_jm:
  690|  5.90M|{
  691|  5.90M|    assert(node);
  ------------------
  |  Branch (691:5): [True: 5.90M, False: 0]
  ------------------
  692|  5.90M|    assert(shift >= NodeT::bits_leaf);
  ------------------
  |  Branch (692:5): [True: 5.90M, False: 0]
  ------------------
  693|  5.90M|    assert(size > 0);
  ------------------
  |  Branch (693:5): [True: 5.90M, False: 0]
  ------------------
  694|  5.90M|    return {node, shift, size};
  695|  5.90M|}
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_11dec_visitorEJEEEDcT_DpOT0_:
  336|  2.47M|    {
  337|  2.47M|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  2.47M|    }
_ZNK5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4nodeEv:
  231|  10.8M|    node_t* node() const { return node_; }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4eachINS1_11dec_visitorEJEEEvT_DpOT0_:
  243|  2.32M|    {
  244|  2.32M|        return each_regular(*this, v, args...);
  245|  2.32M|    }
_ZN5immer6detail4rbts12each_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_11dec_visitorEJEEEvOT_T0_DpOT1_:
  343|  2.32M|{
  344|  2.32M|    constexpr auto B  = bits<Pos>;
  345|  2.32M|    constexpr auto BL = bits_leaf<Pos>;
  346|  2.32M|    auto n            = p.node()->inner();
  347|  2.32M|    auto last         = p.count() - 1;
  348|  2.32M|    auto e            = n + last;
  349|  2.32M|    if (p.shift() == BL) {
  ------------------
  |  Branch (349:9): [True: 436k, False: 1.89M]
  ------------------
  350|   878k|        for (; n != e; ++n) {
  ------------------
  |  Branch (350:16): [True: 442k, False: 436k]
  ------------------
  351|   442k|            IMMER_PREFETCH(n + 1);
  352|   442k|            make_full_leaf_pos(*n).visit(v, args...);
  353|   442k|        }
  354|   436k|        make_leaf_pos(*n, p.size()).visit(v, args...);
  355|  1.89M|    } else {
  356|  1.89M|        auto ss = p.shift() - B;
  357|  4.50M|        for (; n != e; ++n)
  ------------------
  |  Branch (357:16): [True: 2.61M, False: 1.89M]
  ------------------
  358|  2.61M|            make_full_pos(*n, ss).visit(v, args...);
  359|  1.89M|        make_regular_pos(*n, ss, p.size()).visit(v, args...);
  360|  1.89M|    }
  361|  2.32M|}
_ZNK5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
  233|  10.3M|    shift_t shift() const { return shift_; }
_ZNK5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4sizeEv:
  232|  14.7M|    size_t size() const { return size_; }
_ZNK5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5countEv:
  230|  7.50M|    count_t count() const { return index(size_ - 1) + 1; }
_ZNK5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5indexEm:
  234|  14.3M|    count_t index(size_t idx) const { return (idx >> shift_) & mask<B>; }
_ZNK5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5countEv:
  784|  10.0M|    count_t count() const { return subindex(size_ - 1) + 1; }
_ZNK5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8subindexEm:
  789|  10.3M|    count_t subindex(size_t idx) const { return idx >> shift_; }
_ZN5immer6detail4rbts22make_empty_regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_17empty_regular_posIT_EEPSE_:
   64|  1.74M|{
   65|  1.74M|    return {node};
   66|  1.74M|}
_ZN5immer6detail4rbts17empty_regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_11dec_visitorEJEEEDcT_DpOT0_:
   57|  1.74M|    {
   58|  1.74M|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
   59|  1.74M|    }
_ZNK5immer6detail4rbts17empty_regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4nodeEv:
   41|  1.74M|    node_t* node() const { return node_; }
_ZN5immer6detail4rbts17make_leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_12leaf_sub_posIT_EEPSE_j:
  151|  18.9M|{
  152|  18.9M|    assert(node);
  ------------------
  |  Branch (152:5): [True: 18.9M, False: 0]
  ------------------
  153|  18.9M|    assert(count <= branches<NodeT::bits_leaf>);
  ------------------
  |  Branch (153:5): [True: 18.9M, False: 0]
  ------------------
  154|  18.9M|    return {node, count};
  155|  18.9M|}
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_11dec_visitorEJEEEDcT_DpOT0_:
  144|  10.8M|    {
  145|  10.8M|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  10.8M|    }
_ZNK5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4nodeEv:
  136|  16.5M|    node_t* node() const { return node_; }
_ZNK5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5countEv:
  135|  8.93M|    count_t count() const { return count_; }
_ZN5immer6detail4rbts19make_empty_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_14empty_leaf_posIT_EEPSE_:
   88|  1.65M|{
   89|  1.65M|    assert(node);
  ------------------
  |  Branch (89:5): [True: 1.65M, False: 0]
  ------------------
   90|  1.65M|    return {node};
   91|  1.65M|}
_ZN5immer6detail4rbts14empty_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_11dec_visitorEJEEEDcT_DpOT0_:
   81|  1.65M|    {
   82|  1.65M|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
   83|  1.65M|    }
_ZNK5immer6detail4rbts14empty_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4nodeEv:
   75|  1.65M|    node_t* node() const { return node_; }
_ZNK5immer6detail4rbts14empty_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5countEv:
   74|  8.22k|    count_t count() const { return 0; }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_17push_tail_visitorISC_EEJRPSC_RjEEEDcT_DpOT0_:
 1813|   533k|    {
 1814|   533k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|   533k|    }
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
 1433|  11.7M|    shift_t shift() const { return shift_; }
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4sizeEj:
 1443|  5.97M|    {
 1444|  5.97M|        return size_sbh(offset, size_before(offset));
 1445|  5.97M|    }
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8size_sbhEjm:
 1448|  6.27M|    {
 1449|  6.27M|        assert(size_before_hint == size_before(offset));
  ------------------
  |  Branch (1449:9): [True: 6.27M, False: 0]
  ------------------
 1450|  6.27M|        return relaxed_->d.sizes[offset] - size_before_hint;
 1451|  6.27M|    }
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11size_beforeEj:
 1438|  17.7M|    {
 1439|  17.7M|        return offset ? relaxed_->d.sizes[offset - 1] : 0;
  ------------------
  |  Branch (1439:16): [True: 11.2M, False: 6.41M]
  ------------------
 1440|  17.7M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11last_oh_cshINS1_17push_tail_visitorISC_EEJRPSC_RjEEEDcT_jmDpOT0_:
 1737|   519k|    {
 1738|   519k|        assert(offset_hint == count() - 1);
  ------------------
  |  Branch (1738:9): [True: 519k, False: 0]
  ------------------
 1739|   519k|        assert(child_size_hint == size(offset_hint));
  ------------------
  |  Branch (1739:9): [True: 519k, False: 0]
  ------------------
 1740|   519k|        auto child   = node_->inner()[offset_hint];
 1741|   519k|        auto is_leaf = shift_ == BL;
 1742|   519k|        return is_leaf
  ------------------
  |  Branch (1742:16): [True: 0, False: 519k]
  ------------------
 1743|   519k|                   ? make_leaf_sub_pos(child, child_size_hint).visit(v, args...)
 1744|   519k|                   : visit_maybe_relaxed_sub(
 1745|   519k|                         child, shift_ - B, child_size_hint, v, args...);
 1746|   519k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_17push_tail_visitorISC_EEJRPSC_RjEEEDcPT_jmT0_DpOT1_:
 1838|   519k|{
 1839|   519k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 519k, False: 0]
  ------------------
 1840|   519k|    auto relaxed = node->relaxed();
 1841|   519k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 300k, False: 219k]
  ------------------
 1842|   300k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 300k, False: 0]
  ------------------
 1843|   300k|        return make_relaxed_pos(node, shift, relaxed)
 1844|   300k|            .visit(v, std::forward<Args>(args)...);
 1845|   300k|    } else {
 1846|   219k|        return make_regular_sub_pos(node, shift, size)
 1847|   219k|            .visit(v, std::forward<Args>(args)...);
 1848|   219k|    }
 1849|   519k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_17push_tail_visitorISC_EEJRPSC_RjEEEDcT_DpOT0_:
 1036|   219k|    {
 1037|   219k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|   219k|    }
_ZNK5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5indexEm:
  788|  2.56M|    count_t index(size_t idx) const { return (idx >> shift_) & mask<B>; }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7last_ohINS1_17push_tail_visitorISC_EEJRPSC_EEEDcT_jDpOT0_:
  952|   534k|    {
  953|   534k|        return last_oh_regular(*this, v, offset_hint, args...);
  954|   534k|    }
_ZN5immer6detail4rbts15last_oh_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_17push_tail_visitorISD_EEJRPSD_EEEDcOT_T0_jDpOT1_:
  677|   534k|{
  678|   534k|    assert(offset_hint == p.count() - 1);
  ------------------
  |  Branch (678:5): [True: 534k, False: 0]
  ------------------
  679|   534k|    constexpr auto B  = bits<Pos>;
  680|   534k|    constexpr auto BL = bits_leaf<Pos>;
  681|   534k|    auto child        = p.node()->inner()[offset_hint];
  682|   534k|    auto is_leaf      = p.shift() == BL;
  683|   534k|    return is_leaf ? make_leaf_pos(child, p.size()).visit(v, args...)
  ------------------
  |  Branch (683:12): [True: 0, False: 534k]
  ------------------
  684|   534k|                   : make_regular_pos(child, p.shift() - B, p.size())
  685|   534k|                         .visit(v, args...);
  686|   534k|}
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_17push_tail_visitorISC_EEJRPSC_EEEDcT_DpOT0_:
  336|  2.28M|    {
  337|  2.28M|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  2.28M|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7last_ohINS1_17push_tail_visitorISC_EEJRPSC_EEEDcT_jDpOT0_:
  330|  1.75M|    {
  331|  1.75M|        return last_oh_regular(*this, v, offset_hint, args...);
  332|  1.75M|    }
_ZN5immer6detail4rbts15last_oh_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_17push_tail_visitorISD_EEJRPSD_EEEDcOT_T0_jDpOT1_:
  677|  1.75M|{
  678|  1.75M|    assert(offset_hint == p.count() - 1);
  ------------------
  |  Branch (678:5): [True: 1.75M, False: 0]
  ------------------
  679|  1.75M|    constexpr auto B  = bits<Pos>;
  680|  1.75M|    constexpr auto BL = bits_leaf<Pos>;
  681|  1.75M|    auto child        = p.node()->inner()[offset_hint];
  682|  1.75M|    auto is_leaf      = p.shift() == BL;
  683|  1.75M|    return is_leaf ? make_leaf_pos(child, p.size()).visit(v, args...)
  ------------------
  |  Branch (683:12): [True: 0, False: 1.75M]
  ------------------
  684|  1.75M|                   : make_regular_pos(child, p.shift() - B, p.size())
  685|  1.75M|                         .visit(v, args...);
  686|  1.75M|}
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4sizeEv:
 1432|  21.8M|    size_t size() const { return relaxed_->d.sizes[relaxed_->d.count - 1]; }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_17push_tail_visitorISC_EEJRPSC_EEEDcT_DpOT0_:
 1036|   339k|    {
 1037|   339k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|   339k|    }
flex-vector.cpp:_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14update_visitorISC_EEJmRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSK_E_EEEDcSK_DpOT0_:
  144|  39.8k|    {
  145|  39.8k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  39.8k|    }
_ZNK5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5indexEm:
  139|  1.19M|    count_t index(size_t idx) const { return idx & mask<BL>; }
flex-vector.cpp:_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14update_visitorISC_EEJRmRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSJ_E_EEEDcPSJ_jmT0_DpOT1_:
 1838|   339k|{
 1839|   339k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 339k, False: 0]
  ------------------
 1840|   339k|    auto relaxed = node->relaxed();
 1841|   339k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 313k, False: 26.5k]
  ------------------
 1842|   313k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 313k, False: 0]
  ------------------
 1843|   313k|        return make_relaxed_pos(node, shift, relaxed)
 1844|   313k|            .visit(v, std::forward<Args>(args)...);
 1845|   313k|    } else {
 1846|  26.5k|        return make_regular_sub_pos(node, shift, size)
 1847|  26.5k|            .visit(v, std::forward<Args>(args)...);
 1848|  26.5k|    }
 1849|   339k|}
flex-vector.cpp:_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14update_visitorISC_EEJRmRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEEDcSL_DpOT0_:
 1813|   313k|    {
 1814|   313k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|   313k|    }
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5indexEm:
 1454|  31.7M|    {
 1455|  31.7M|        auto offset = idx >> shift_;
 1456|  42.9M|        while (relaxed_->d.sizes[offset] <= idx)
  ------------------
  |  Branch (1456:16): [True: 11.2M, False: 31.7M]
  ------------------
 1457|  11.2M|            ++offset;
 1458|  31.7M|        return offset;
 1459|  31.7M|    }
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7relaxedEv:
 1435|   313k|    relaxed_t* relaxed() const { return relaxed_; }
flex-vector.cpp:_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_14update_visitorISC_EEJRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSK_E_EEEDcSK_mjDpOT0_:
 1686|   313k|    {
 1687|   313k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1687:9): [True: 313k, False: 0]
  ------------------
 1688|   313k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1688:26): [True: 60.9k, False: 252k]
  ------------------
 1689|   313k|        return towards_oh_sbh(v, idx, offset_hint, left_size, args...);
 1690|   313k|    }
flex-vector.cpp:_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_oh_sbhINS1_14update_visitorISC_EEJRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSK_E_EEEDcSK_mjmDpOT0_:
 1698|   313k|    {
 1699|   313k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size_hint, args...);
 1700|   313k|    }
flex-vector.cpp:_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_14update_visitorISC_EEJRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSK_E_EEEDcSK_mjmDpOT0_:
 1717|   313k|    {
 1718|   313k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 313k, False: 0]
  ------------------
 1719|   313k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 60.9k, False: 252k]
  |  Branch (1719:9): [True: 313k, False: 0]
  ------------------
 1720|   313k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|   313k|        auto child     = node_->inner()[offset_hint];
 1722|   313k|        auto is_leaf   = shift_ == BL;
 1723|   313k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|   313k|        auto next_idx  = idx - left_size_hint;
 1725|   313k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 48.6k, False: 264k]
  ------------------
 1726|   313k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  48.6k|                         .visit(v, next_idx, args...)
 1728|   313k|                   : visit_maybe_relaxed_sub(
 1729|   264k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|   313k|    }
flex-vector.cpp:_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14update_visitorISC_EEJRmRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEEDcSL_DpOT0_:
  144|  48.6k|    {
  145|  48.6k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  48.6k|    }
flex-vector.cpp:_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14update_visitorISC_EEJRmRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEEDcSL_DpOT0_:
 1036|  26.5k|    {
 1037|  26.5k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  26.5k|    }
flex-vector.cpp:_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13towards_oh_chINS1_14update_visitorISC_EEJRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSK_E_EEEDcSK_mjjDpOT0_:
  938|  26.5k|    {
  939|  26.5k|        return towards_oh_ch_regular(
  940|  26.5k|            *this, v, idx, offset_hint, count(), args...);
  941|  26.5k|    }
flex-vector.cpp:_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_14update_visitorISD_EEJRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEEDcOSL_T0_mjjDpOT1_:
  632|  26.5k|{
  633|  26.5k|    constexpr auto B  = bits<Pos>;
  634|  26.5k|    constexpr auto BL = bits_leaf<Pos>;
  635|  26.5k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 26.5k, False: 0]
  ------------------
  636|  26.5k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 26.5k, False: 0]
  ------------------
  637|  26.5k|    auto is_leaf = p.shift() == BL;
  638|  26.5k|    auto child   = p.node()->inner()[offset_hint];
  639|  26.5k|    auto is_full = offset_hint + 1 != count_hint;
  640|  26.5k|    return is_full
  ------------------
  |  Branch (640:12): [True: 19.8k, False: 6.74k]
  ------------------
  641|  26.5k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 9.39k, False: 10.4k]
  ------------------
  642|  19.8k|                          : make_full_pos(child, p.shift() - B)
  643|  10.4k|                                .visit(v, idx, args...))
  644|  26.5k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 2.29k, False: 4.44k]
  ------------------
  645|  6.74k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  6.74k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|  4.44k|                            .visit(v, idx, args...));
  648|  26.5k|}
flex-vector.cpp:_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14update_visitorISC_EEJRmRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEEDcSL_DpOT0_:
  207|  23.5k|    {
  208|  23.5k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  23.5k|    }
_ZNK5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5indexEm:
  202|   472k|    count_t index(size_t idx) const { return idx & mask<BL>; }
flex-vector.cpp:_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14update_visitorISC_EEJRmRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEEDcSL_DpOT0_:
 1405|  16.3k|    {
 1406|  16.3k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  16.3k|    }
_ZNK5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5indexEm:
 1162|  2.39M|    count_t index(size_t idx) const { return (idx >> shift_) & mask<B>; }
flex-vector.cpp:_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13towards_oh_chINS1_14update_visitorISC_EEJRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSK_E_EEEDcSK_mjjDpOT0_:
 1329|  16.3k|    {
 1330|  16.3k|        return towards_oh(v, idx, offset_hint, args...);
 1331|  16.3k|    }
flex-vector.cpp:_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_14update_visitorISC_EEJRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSK_E_EEEDcSK_mjDpOT0_:
 1336|  16.3k|    {
 1337|  16.3k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1337:9): [True: 16.3k, False: 0]
  ------------------
 1338|  16.3k|        auto is_leaf = shift_ == BL;
 1339|  16.3k|        auto child   = node_->inner()[offset_hint];
 1340|  16.3k|        return is_leaf
  ------------------
  |  Branch (1340:16): [True: 11.2k, False: 5.10k]
  ------------------
 1341|  16.3k|                   ? make_full_leaf_pos(child).visit(v, idx, args...)
 1342|  16.3k|                   : make_full_pos(child, shift_ - B).visit(v, idx, args...);
 1343|  16.3k|    }
flex-vector.cpp:_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14update_visitorISC_EEJRmRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEEDcSL_DpOT0_:
  112|  3.02k|    {
  113|  3.02k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|  3.02k|    }
flex-vector.cpp:_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14update_visitorISC_EEJRmRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEEDcSL_DpOT0_:
  336|  4.85k|    {
  337|  4.85k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  4.85k|    }
flex-vector.cpp:_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13towards_oh_chINS1_14update_visitorISC_EEJRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSK_E_EEEDcSK_mjjDpOT0_:
  316|  4.85k|    {
  317|  4.85k|        return towards_oh_ch_regular(
  318|  4.85k|            *this, v, idx, offset_hint, count(), args...);
  319|  4.85k|    }
flex-vector.cpp:_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_14update_visitorISD_EEJRZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSL_E_EEEDcOSL_T0_mjjDpOT1_:
  632|  4.85k|{
  633|  4.85k|    constexpr auto B  = bits<Pos>;
  634|  4.85k|    constexpr auto BL = bits_leaf<Pos>;
  635|  4.85k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 4.85k, False: 0]
  ------------------
  636|  4.85k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 4.85k, False: 0]
  ------------------
  637|  4.85k|    auto is_leaf = p.shift() == BL;
  638|  4.85k|    auto child   = p.node()->inner()[offset_hint];
  639|  4.85k|    auto is_full = offset_hint + 1 != count_hint;
  640|  4.85k|    return is_full
  ------------------
  |  Branch (640:12): [True: 3.71k, False: 1.14k]
  ------------------
  641|  4.85k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 2.86k, False: 847]
  ------------------
  642|  3.71k|                          : make_full_pos(child, p.shift() - B)
  643|    847|                                .visit(v, idx, args...))
  644|  4.85k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 735, False: 409]
  ------------------
  645|  1.14k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  1.14k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|    409|                            .visit(v, idx, args...));
  648|  4.85k|}
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_19slice_right_visitorISC_Lb1EEEJRmEEEDcPT_jmT0_DpOT1_:
 1838|  43.2k|{
 1839|  43.2k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 43.2k, False: 0]
  ------------------
 1840|  43.2k|    auto relaxed = node->relaxed();
 1841|  43.2k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 36.3k, False: 6.93k]
  ------------------
 1842|  36.3k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 36.3k, False: 0]
  ------------------
 1843|  36.3k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  36.3k|            .visit(v, std::forward<Args>(args)...);
 1845|  36.3k|    } else {
 1846|  6.93k|        return make_regular_sub_pos(node, shift, size)
 1847|  6.93k|            .visit(v, std::forward<Args>(args)...);
 1848|  6.93k|    }
 1849|  43.2k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb1EEEJRmEEEDcT_DpOT0_:
 1813|  36.3k|    {
 1814|  36.3k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  36.3k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_19slice_right_visitorISC_Lb1EEEJEEEDcT_mjDpOT0_:
 1686|  26.9k|    {
 1687|  26.9k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1687:9): [True: 26.9k, False: 0]
  ------------------
 1688|  26.9k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1688:26): [True: 0, False: 26.9k]
  ------------------
 1689|  26.9k|        return towards_oh_sbh(v, idx, offset_hint, left_size, args...);
 1690|  26.9k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_oh_sbhINS1_19slice_right_visitorISC_Lb1EEEJEEEDcT_mjmDpOT0_:
 1698|  26.9k|    {
 1699|  26.9k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size_hint, args...);
 1700|  26.9k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_19slice_right_visitorISC_Lb1EEEJEEEDcT_mjmDpOT0_:
 1717|  26.9k|    {
 1718|  26.9k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 26.9k, False: 0]
  ------------------
 1719|  26.9k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 0, False: 26.9k]
  |  Branch (1719:9): [True: 26.9k, False: 0]
  ------------------
 1720|  26.9k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  26.9k|        auto child     = node_->inner()[offset_hint];
 1722|  26.9k|        auto is_leaf   = shift_ == BL;
 1723|  26.9k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  26.9k|        auto next_idx  = idx - left_size_hint;
 1725|  26.9k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 2.14k, False: 24.7k]
  ------------------
 1726|  26.9k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  2.14k|                         .visit(v, next_idx, args...)
 1728|  26.9k|                   : visit_maybe_relaxed_sub(
 1729|  24.7k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  26.9k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb1EEEJRmEEEDcT_DpOT0_:
  144|  2.14k|    {
  145|  2.14k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  2.14k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_19slice_right_visitorISC_Lb0EEEJEEEDcT_mjDpOT0_:
 1686|  21.5k|    {
 1687|  21.5k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1687:9): [True: 21.5k, False: 0]
  ------------------
 1688|  21.5k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1688:26): [True: 14.2k, False: 7.26k]
  ------------------
 1689|  21.5k|        return towards_oh_sbh(v, idx, offset_hint, left_size, args...);
 1690|  21.5k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_oh_sbhINS1_19slice_right_visitorISC_Lb0EEEJEEEDcT_mjmDpOT0_:
 1698|  21.5k|    {
 1699|  21.5k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size_hint, args...);
 1700|  21.5k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_19slice_right_visitorISC_Lb0EEEJEEEDcT_mjmDpOT0_:
 1717|  21.5k|    {
 1718|  21.5k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 21.5k, False: 0]
  ------------------
 1719|  21.5k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 14.2k, False: 7.26k]
  |  Branch (1719:9): [True: 21.5k, False: 0]
  ------------------
 1720|  21.5k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  21.5k|        auto child     = node_->inner()[offset_hint];
 1722|  21.5k|        auto is_leaf   = shift_ == BL;
 1723|  21.5k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  21.5k|        auto next_idx  = idx - left_size_hint;
 1725|  21.5k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 5.41k, False: 16.1k]
  ------------------
 1726|  21.5k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  5.41k|                         .visit(v, next_idx, args...)
 1728|  21.5k|                   : visit_maybe_relaxed_sub(
 1729|  16.1k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  21.5k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
  144|  5.41k|    {
  145|  5.41k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  5.41k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_19slice_right_visitorISC_Lb0EEEJRmEEEDcPT_jmT0_DpOT1_:
 1838|  16.1k|{
 1839|  16.1k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 16.1k, False: 0]
  ------------------
 1840|  16.1k|    auto relaxed = node->relaxed();
 1841|  16.1k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 12.1k, False: 3.99k]
  ------------------
 1842|  12.1k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 12.1k, False: 0]
  ------------------
 1843|  12.1k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  12.1k|            .visit(v, std::forward<Args>(args)...);
 1845|  12.1k|    } else {
 1846|  3.99k|        return make_regular_sub_pos(node, shift, size)
 1847|  3.99k|            .visit(v, std::forward<Args>(args)...);
 1848|  3.99k|    }
 1849|  16.1k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
 1813|  12.1k|    {
 1814|  12.1k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  12.1k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
 1036|  3.99k|    {
 1037|  3.99k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  3.99k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_19slice_right_visitorISC_Lb0EEEJEEEDcT_mjDpOT0_:
  927|  7.43k|    {
  928|  7.43k|        return towards_oh_ch_regular(
  929|  7.43k|            *this, v, idx, offset_hint, count(), args...);
  930|  7.43k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_19slice_right_visitorISD_Lb0EEEJEEEDcOT_T0_mjjDpOT1_:
  632|  7.43k|{
  633|  7.43k|    constexpr auto B  = bits<Pos>;
  634|  7.43k|    constexpr auto BL = bits_leaf<Pos>;
  635|  7.43k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 7.43k, False: 0]
  ------------------
  636|  7.43k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 7.43k, False: 0]
  ------------------
  637|  7.43k|    auto is_leaf = p.shift() == BL;
  638|  7.43k|    auto child   = p.node()->inner()[offset_hint];
  639|  7.43k|    auto is_full = offset_hint + 1 != count_hint;
  640|  7.43k|    return is_full
  ------------------
  |  Branch (640:12): [True: 2.87k, False: 4.56k]
  ------------------
  641|  7.43k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 1.90k, False: 971]
  ------------------
  642|  2.87k|                          : make_full_pos(child, p.shift() - B)
  643|    971|                                .visit(v, idx, args...))
  644|  7.43k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 1.06k, False: 3.49k]
  ------------------
  645|  4.56k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  4.56k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|  3.49k|                            .visit(v, idx, args...));
  648|  7.43k|}
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
  207|  6.31k|    {
  208|  6.31k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  6.31k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
 1405|  2.53k|    {
 1406|  2.53k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  2.53k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_19slice_right_visitorISC_Lb0EEEJEEEDcT_mjDpOT0_:
 1336|  3.90k|    {
 1337|  3.90k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1337:9): [True: 3.90k, False: 0]
  ------------------
 1338|  3.90k|        auto is_leaf = shift_ == BL;
 1339|  3.90k|        auto child   = node_->inner()[offset_hint];
 1340|  3.90k|        return is_leaf
  ------------------
  |  Branch (1340:16): [True: 2.76k, False: 1.14k]
  ------------------
 1341|  3.90k|                   ? make_full_leaf_pos(child).visit(v, idx, args...)
 1342|  3.90k|                   : make_full_pos(child, shift_ - B).visit(v, idx, args...);
 1343|  3.90k|    }
_ZNK5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
 1161|   169k|    shift_t shift() const { return shift_; }
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
  112|  2.49k|    {
  113|  2.49k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|  2.49k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
  336|  4.89k|    {
  337|  4.89k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  4.89k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_19slice_right_visitorISC_Lb0EEEJEEEDcT_mjDpOT0_:
  305|  4.89k|    {
  306|  4.89k|        return towards_oh_ch_regular(
  307|  4.89k|            *this, v, idx, offset_hint, count(), args...);
  308|  4.89k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_19slice_right_visitorISD_Lb0EEEJEEEDcOT_T0_mjjDpOT1_:
  632|  4.89k|{
  633|  4.89k|    constexpr auto B  = bits<Pos>;
  634|  4.89k|    constexpr auto BL = bits_leaf<Pos>;
  635|  4.89k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 4.89k, False: 0]
  ------------------
  636|  4.89k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 4.89k, False: 0]
  ------------------
  637|  4.89k|    auto is_leaf = p.shift() == BL;
  638|  4.89k|    auto child   = p.node()->inner()[offset_hint];
  639|  4.89k|    auto is_full = offset_hint + 1 != count_hint;
  640|  4.89k|    return is_full
  ------------------
  |  Branch (640:12): [True: 2.06k, False: 2.82k]
  ------------------
  641|  4.89k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 1.64k, False: 422]
  ------------------
  642|  2.06k|                          : make_full_pos(child, p.shift() - B)
  643|    422|                                .visit(v, idx, args...))
  644|  4.89k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 1.42k, False: 1.40k]
  ------------------
  645|  2.82k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  2.82k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|  1.40k|                            .visit(v, idx, args...));
  648|  4.89k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb1EEEJRmEEEDcT_DpOT0_:
 1036|  6.93k|    {
 1037|  6.93k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  6.93k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_19slice_right_visitorISC_Lb1EEEJEEEDcT_mjDpOT0_:
  927|  3.48k|    {
  928|  3.48k|        return towards_oh_ch_regular(
  929|  3.48k|            *this, v, idx, offset_hint, count(), args...);
  930|  3.48k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_19slice_right_visitorISD_Lb1EEEJEEEDcOT_T0_mjjDpOT1_:
  632|  3.48k|{
  633|  3.48k|    constexpr auto B  = bits<Pos>;
  634|  3.48k|    constexpr auto BL = bits_leaf<Pos>;
  635|  3.48k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 3.48k, False: 0]
  ------------------
  636|  3.48k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 3.48k, False: 0]
  ------------------
  637|  3.48k|    auto is_leaf = p.shift() == BL;
  638|  3.48k|    auto child   = p.node()->inner()[offset_hint];
  639|  3.48k|    auto is_full = offset_hint + 1 != count_hint;
  640|  3.48k|    return is_full
  ------------------
  |  Branch (640:12): [True: 2.81k, False: 671]
  ------------------
  641|  3.48k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 853, False: 1.96k]
  ------------------
  642|  2.81k|                          : make_full_pos(child, p.shift() - B)
  643|  1.96k|                                .visit(v, idx, args...))
  644|  3.48k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 671, False: 0]
  ------------------
  645|    671|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|    671|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|      0|                            .visit(v, idx, args...));
  648|  3.48k|}
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb1EEEJRmEEEDcT_DpOT0_:
  207|  1.44k|    {
  208|  1.44k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  1.44k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb1EEEJRmEEEDcT_DpOT0_:
 1405|  2.54k|    {
 1406|  2.54k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  2.54k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_19slice_right_visitorISC_Lb1EEEJEEEDcT_mjDpOT0_:
 1336|  1.17k|    {
 1337|  1.17k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1337:9): [True: 1.17k, False: 0]
  ------------------
 1338|  1.17k|        auto is_leaf = shift_ == BL;
 1339|  1.17k|        auto child   = node_->inner()[offset_hint];
 1340|  1.17k|        return is_leaf
  ------------------
  |  Branch (1340:16): [True: 595, False: 577]
  ------------------
 1341|  1.17k|                   ? make_full_leaf_pos(child).visit(v, idx, args...)
 1342|  1.17k|                   : make_full_pos(child, shift_ - B).visit(v, idx, args...);
 1343|  1.17k|    }
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19slice_right_visitorISC_Lb1EEEJRmEEEDcT_DpOT0_:
  112|    671|    {
  113|    671|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|    671|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_18slice_left_visitorISC_Lb1EEEJRmEEEDcPT_jmT0_DpOT1_:
 1838|  23.0k|{
 1839|  23.0k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 23.0k, False: 0]
  ------------------
 1840|  23.0k|    auto relaxed = node->relaxed();
 1841|  23.0k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 15.5k, False: 7.47k]
  ------------------
 1842|  15.5k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 15.5k, False: 0]
  ------------------
 1843|  15.5k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  15.5k|            .visit(v, std::forward<Args>(args)...);
 1845|  15.5k|    } else {
 1846|  7.47k|        return make_regular_sub_pos(node, shift, size)
 1847|  7.47k|            .visit(v, std::forward<Args>(args)...);
 1848|  7.47k|    }
 1849|  23.0k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18slice_left_visitorISC_Lb1EEEJRmEEEDcT_DpOT0_:
 1813|  15.5k|    {
 1814|  15.5k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  15.5k|    }
_ZNK5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8subindexEm:
 1434|  10.0M|    count_t subindex(size_t idx) const { return index(idx); }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_18slice_left_visitorISC_Lb1EEEJEEEDcT_mjDpOT0_:
 1705|  4.61k|    {
 1706|  4.61k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1706:9): [True: 4.61k, False: 0]
  ------------------
 1707|  4.61k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1707:26): [True: 3.97k, False: 642]
  ------------------
 1708|  4.61k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size, args...);
 1709|  4.61k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_18slice_left_visitorISC_Lb1EEEJEEEDcT_mjmDpOT0_:
 1717|  4.61k|    {
 1718|  4.61k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 4.61k, False: 0]
  ------------------
 1719|  4.61k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 3.97k, False: 642]
  |  Branch (1719:9): [True: 4.61k, False: 0]
  ------------------
 1720|  4.61k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  4.61k|        auto child     = node_->inner()[offset_hint];
 1722|  4.61k|        auto is_leaf   = shift_ == BL;
 1723|  4.61k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  4.61k|        auto next_idx  = idx - left_size_hint;
 1725|  4.61k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 0, False: 4.61k]
  ------------------
 1726|  4.61k|                   ? make_leaf_sub_pos(child, next_size)
 1727|      0|                         .visit(v, next_idx, args...)
 1728|  4.61k|                   : visit_maybe_relaxed_sub(
 1729|  4.61k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  4.61k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_18slice_left_visitorISC_Lb0EEEJEEEDcT_mjDpOT0_:
 1705|  55.6k|    {
 1706|  55.6k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1706:9): [True: 55.6k, False: 0]
  ------------------
 1707|  55.6k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1707:26): [True: 15.8k, False: 39.8k]
  ------------------
 1708|  55.6k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size, args...);
 1709|  55.6k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_18slice_left_visitorISC_Lb0EEEJEEEDcT_mjmDpOT0_:
 1717|  55.6k|    {
 1718|  55.6k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 55.6k, False: 0]
  ------------------
 1719|  55.6k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 15.8k, False: 39.8k]
  |  Branch (1719:9): [True: 55.6k, False: 0]
  ------------------
 1720|  55.6k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  55.6k|        auto child     = node_->inner()[offset_hint];
 1722|  55.6k|        auto is_leaf   = shift_ == BL;
 1723|  55.6k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  55.6k|        auto next_idx  = idx - left_size_hint;
 1725|  55.6k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 8.72k, False: 46.9k]
  ------------------
 1726|  55.6k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  8.72k|                         .visit(v, next_idx, args...)
 1728|  55.6k|                   : visit_maybe_relaxed_sub(
 1729|  46.9k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  55.6k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18slice_left_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
  144|  8.72k|    {
  145|  8.72k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  8.72k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_18slice_left_visitorISC_Lb0EEEJRmEEEDcPT_jmT0_DpOT1_:
 1838|  46.9k|{
 1839|  46.9k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 46.9k, False: 0]
  ------------------
 1840|  46.9k|    auto relaxed = node->relaxed();
 1841|  46.9k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 44.7k, False: 2.19k]
  ------------------
 1842|  44.7k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 44.7k, False: 0]
  ------------------
 1843|  44.7k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  44.7k|            .visit(v, std::forward<Args>(args)...);
 1845|  44.7k|    } else {
 1846|  2.19k|        return make_regular_sub_pos(node, shift, size)
 1847|  2.19k|            .visit(v, std::forward<Args>(args)...);
 1848|  2.19k|    }
 1849|  46.9k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18slice_left_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
 1813|  44.7k|    {
 1814|  44.7k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  44.7k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18slice_left_visitorISC_Lb0EEEJRmEEEDcT_DpOT0_:
 1036|  2.19k|    {
 1037|  2.19k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  2.19k|    }
_ZNK5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11size_beforeEj:
  791|   224k|    {
  792|   224k|        return size_t{offset} << shift_;
  793|   224k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8size_sbhEjm:
  803|  27.8k|    {
  804|  27.8k|        assert(size_before_hint == size_before(offset));
  ------------------
  |  Branch (804:9): [True: 27.8k, False: 0]
  ------------------
  805|  27.8k|        return offset == subindex(size_ - 1) ? size_ - size_before_hint
  ------------------
  |  Branch (805:16): [True: 15.8k, False: 11.9k]
  ------------------
  806|  27.8k|                                             : size_t{1} << shift_;
  807|  27.8k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_18slice_left_visitorISC_Lb0EEEJEEEDcT_mjDpOT0_:
  946|  8.31k|    {
  947|  8.31k|        return towards_sub_oh_regular(*this, v, idx, offset_hint, args...);
  948|  8.31k|    }
_ZN5immer6detail4rbts22towards_sub_oh_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_18slice_left_visitorISD_Lb0EEEJEEEDcOT_T0_mjDpOT1_:
  653|  8.31k|{
  654|  8.31k|    constexpr auto B  = bits<Pos>;
  655|  8.31k|    constexpr auto BL = bits_leaf<Pos>;
  656|  8.31k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (656:5): [True: 8.31k, False: 0]
  ------------------
  657|  8.31k|    auto is_leaf = p.shift() == BL;
  658|  8.31k|    auto child   = p.node()->inner()[offset_hint];
  659|  8.31k|    auto lsize   = offset_hint << p.shift();
  660|  8.31k|    auto size    = p.this_size();
  661|  8.31k|    auto is_full = (size - lsize) >= (size_t{1} << p.shift());
  662|  8.31k|    return is_full
  ------------------
  |  Branch (662:12): [True: 8.31k, False: 0]
  ------------------
  663|  8.31k|               ? (is_leaf
  ------------------
  |  Branch (663:19): [True: 4.81k, False: 3.49k]
  ------------------
  664|  8.31k|                      ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
  665|  8.31k|                      : make_full_pos(child, p.shift() - B)
  666|  3.49k|                            .visit(v, idx - lsize, args...))
  667|  8.31k|               : (is_leaf
  ------------------
  |  Branch (667:19): [True: 0, False: 0]
  ------------------
  668|      0|                      ? make_leaf_sub_pos(child, size - lsize)
  669|      0|                            .visit(v, idx - lsize, args...)
  670|      0|                      : make_regular_sub_pos(child, p.shift() - B, size - lsize)
  671|      0|                            .visit(v, idx - lsize, args...));
  672|  8.31k|}
_ZNK5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9this_sizeEv:
  794|  27.8k|    size_t this_size() const { return size_; }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18slice_left_visitorISC_Lb0EEEJmEEEDcT_DpOT0_:
  207|  9.67k|    {
  208|  9.67k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  9.67k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18slice_left_visitorISC_Lb0EEEJmEEEDcT_DpOT0_:
 1405|  5.62k|    {
 1406|  5.62k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  5.62k|    }
_ZNK5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8subindexEm:
 1163|  19.4k|    count_t subindex(size_t idx) const { return idx >> shift_; }
_ZNK5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11size_beforeEj:
 1170|  41.1k|    {
 1171|  41.1k|        return size_t{offset} << shift_;
 1172|  41.1k|    }
_ZNK5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8size_sbhEjm:
 1166|  19.4k|    {
 1167|  19.4k|        return size_t{1} << shift_;
 1168|  19.4k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_18slice_left_visitorISC_Lb0EEEJEEEDcT_mjDpOT0_:
 1348|  6.98k|    {
 1349|  6.98k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1349:9): [True: 6.98k, False: 0]
  ------------------
 1350|  6.98k|        auto is_leaf = shift_ == BL;
 1351|  6.98k|        auto child   = node_->inner()[offset_hint];
 1352|  6.98k|        auto lsize   = size_t{offset_hint} << shift_;
 1353|  6.98k|        return is_leaf
  ------------------
  |  Branch (1353:16): [True: 4.85k, False: 2.13k]
  ------------------
 1354|  6.98k|                   ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
 1355|  6.98k|                   : make_full_pos(child, shift_ - B)
 1356|  2.13k|                         .visit(v, idx - lsize, args...);
 1357|  6.98k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10copy_sizesEjjmPm:
 1175|  16.9k|    {
 1176|  16.9k|        auto e = sizes + n;
 1177|  41.1k|        for (; sizes != e; ++sizes) {
  ------------------
  |  Branch (1177:16): [True: 24.2k, False: 16.9k]
  ------------------
 1178|  24.2k|            init = *sizes = init + (size_t{1} << shift_);
 1179|       |            assert(init);
  ------------------
  |  Branch (1179:13): [True: 24.2k, False: 0]
  ------------------
 1180|  24.2k|        }
 1181|  16.9k|    }
_ZNK5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4sizeEv:
 1160|   750k|    size_t size() const { return branches<B, size_t> << shift_; }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10copy_sizesEjjmPm:
  810|   284k|    {
  811|   284k|        if (n) {
  ------------------
  |  Branch (811:13): [True: 279k, False: 5.40k]
  ------------------
  812|   279k|            auto last = offset + n - 1;
  813|   279k|            auto e    = sizes + n - 1;
  814|   556k|            for (; sizes != e; ++sizes) {
  ------------------
  |  Branch (814:20): [True: 276k, False: 279k]
  ------------------
  815|   276k|                init = *sizes = init + (size_t{1} << shift_);
  816|   276k|                assert(init);
  ------------------
  |  Branch (816:17): [True: 276k, False: 0]
  ------------------
  817|   276k|            }
  818|   279k|            *sizes = init + size(last);
  819|       |            assert(*sizes);
  ------------------
  |  Branch (819:13): [True: 279k, False: 0]
  ------------------
  820|   279k|        }
  821|   284k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4sizeEj:
  797|   294k|    {
  798|   294k|        return offset == subindex(size_ - 1) ? size_ - size_before(offset)
  ------------------
  |  Branch (798:16): [True: 149k, False: 144k]
  ------------------
  799|   294k|                                             : size_t{1} << shift_;
  800|   294k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10copy_sizesEjjmPm:
 1462|  5.00M|    {
 1463|  5.00M|        auto e     = sizes + n;
 1464|  5.00M|        auto prev  = size_before(offset);
 1465|  5.00M|        auto these = relaxed_->d.sizes + offset;
 1466|  14.3M|        for (; sizes != e; ++sizes, ++these) {
  ------------------
  |  Branch (1466:16): [True: 9.29M, False: 5.00M]
  ------------------
 1467|  9.29M|            auto this_size = *these;
 1468|  9.29M|            init = *sizes = init + (this_size - prev);
 1469|  9.29M|            assert(init);
  ------------------
  |  Branch (1469:13): [True: 9.29M, False: 0]
  ------------------
 1470|  9.29M|            prev = this_size;
 1471|  9.29M|        }
 1472|  5.00M|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18slice_left_visitorISC_Lb1EEEJRmEEEDcT_DpOT0_:
 1036|  7.47k|    {
 1037|  7.47k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  7.47k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_18slice_left_visitorISC_Lb1EEEJEEEDcT_mjDpOT0_:
  946|  3.71k|    {
  947|  3.71k|        return towards_sub_oh_regular(*this, v, idx, offset_hint, args...);
  948|  3.71k|    }
_ZN5immer6detail4rbts22towards_sub_oh_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_18slice_left_visitorISD_Lb1EEEJEEEDcOT_T0_mjDpOT1_:
  653|  3.71k|{
  654|  3.71k|    constexpr auto B  = bits<Pos>;
  655|  3.71k|    constexpr auto BL = bits_leaf<Pos>;
  656|  3.71k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (656:5): [True: 3.71k, False: 0]
  ------------------
  657|  3.71k|    auto is_leaf = p.shift() == BL;
  658|  3.71k|    auto child   = p.node()->inner()[offset_hint];
  659|  3.71k|    auto lsize   = offset_hint << p.shift();
  660|  3.71k|    auto size    = p.this_size();
  661|  3.71k|    auto is_full = (size - lsize) >= (size_t{1} << p.shift());
  662|  3.71k|    return is_full
  ------------------
  |  Branch (662:12): [True: 1.36k, False: 2.35k]
  ------------------
  663|  3.71k|               ? (is_leaf
  ------------------
  |  Branch (663:19): [True: 0, False: 1.36k]
  ------------------
  664|  1.36k|                      ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
  665|  1.36k|                      : make_full_pos(child, p.shift() - B)
  666|  1.36k|                            .visit(v, idx - lsize, args...))
  667|  3.71k|               : (is_leaf
  ------------------
  |  Branch (667:19): [True: 0, False: 2.35k]
  ------------------
  668|  2.35k|                      ? make_leaf_sub_pos(child, size - lsize)
  669|      0|                            .visit(v, idx - lsize, args...)
  670|  2.35k|                      : make_regular_sub_pos(child, p.shift() - B, size - lsize)
  671|  2.35k|                            .visit(v, idx - lsize, args...));
  672|  3.71k|}
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18slice_left_visitorISC_Lb1EEEJmEEEDcT_DpOT0_:
 1405|  1.63k|    {
 1406|  1.63k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  1.63k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_18slice_left_visitorISC_Lb1EEEJEEEDcT_mjDpOT0_:
 1348|    277|    {
 1349|    277|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1349:9): [True: 277, False: 0]
  ------------------
 1350|    277|        auto is_leaf = shift_ == BL;
 1351|    277|        auto child   = node_->inner()[offset_hint];
 1352|    277|        auto lsize   = size_t{offset_hint} << shift_;
 1353|    277|        return is_leaf
  ------------------
  |  Branch (1353:16): [True: 0, False: 277]
  ------------------
 1354|    277|                   ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
 1355|    277|                   : make_full_pos(child, shift_ - B)
 1356|    277|                         .visit(v, idx - lsize, args...);
 1357|    277|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18slice_left_visitorISC_Lb1EEEJmEEEDcT_DpOT0_:
 1036|  2.35k|    {
 1037|  2.35k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  2.35k|    }
_ZN5immer6detail4rbts30make_singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEDaPT_j:
  766|  8.22k|{
  767|  8.22k|    assert(leaf);
  ------------------
  |  Branch (767:5): [True: 8.22k, False: 0]
  ------------------
  768|  8.22k|    IMMER_ASSERT_TAGGED(leaf->kind() == NodeT::kind_t::leaf);
  ------------------
  |  |   68|  8.22k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (768:5): [True: 8.22k, False: 0]
  ------------------
  769|  8.22k|    assert(count > 0);
  ------------------
  |  Branch (769:5): [True: 8.22k, False: 0]
  ------------------
  770|  8.22k|    return singleton_regular_sub_pos<NodeT>{leaf, count};
  771|  8.22k|}
_ZN5immer6detail4rbts25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_25concat_trees_left_visitorISC_EEJNS1_14empty_leaf_posISC_EERPSC_RjRmEEEDcT_DpOT0_:
  759|  8.22k|    {
  760|  8.22k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  761|  8.22k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_26concat_trees_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|  8.22k|{
 1839|  8.22k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 8.22k, False: 0]
  ------------------
 1840|  8.22k|    auto relaxed = node->relaxed();
 1841|  8.22k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 5.87k, False: 2.35k]
  ------------------
 1842|  5.87k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 5.87k, False: 0]
  ------------------
 1843|  5.87k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  5.87k|            .visit(v, std::forward<Args>(args)...);
 1845|  5.87k|    } else {
 1846|  2.35k|        return make_regular_sub_pos(node, shift, size)
 1847|  2.35k|            .visit(v, std::forward<Args>(args)...);
 1848|  2.35k|    }
 1849|  8.22k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_26concat_trees_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
 1813|  5.87k|    {
 1814|  5.87k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  5.87k|    }
_ZNK5immer6detail4rbts25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
  735|  27.3k|    shift_t shift() const { return BL; }
_ZN5immer6detail4rbts25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13each_left_subINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_DpOT0_:
  744|  8.22k|    {
  745|  8.22k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEDcT_DpOT0_:
  144|  2.44M|    {
  145|  2.44M|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  2.44M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEDcT_DpOT0_:
 1813|  21.1M|    {
 1814|  21.1M|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  21.1M|    }
_ZN5immer6detail4rbts12null_sub_pos14each_right_subINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_DpOT0_:
  707|  2.44M|    {
  708|  2.44M|    }
_ZN5immer6detail4rbts25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13each_left_subINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_DpOT0_:
  744|  8.22k|    {
  745|  8.22k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEDcT_DpOT0_:
  144|  2.44M|    {
  145|  2.44M|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  2.44M|    }
_ZNK5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4sizeEv:
  137|  2.44M|    size_t size() const { return count_; }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEDcT_DpOT0_:
 1813|  21.1M|    {
 1814|  21.1M|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  21.1M|    }
_ZN5immer6detail4rbts12null_sub_pos14each_right_subINS1_21concat_merger_visitorEJRNS1_13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEEvT_DpOT0_:
  707|  2.44M|    {
  708|  2.44M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9first_subINS1_20concat_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
 1762|  18.0k|    {
 1763|  18.0k|        auto child      = node_->inner()[0];
 1764|  18.0k|        auto child_size = relaxed_->d.sizes[0];
 1765|  18.0k|        auto is_leaf    = shift_ == BL;
 1766|  18.0k|        assert(child_size);
  ------------------
  |  Branch (1766:9): [True: 18.0k, False: 0]
  ------------------
 1767|  18.0k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1767:16): [True: 0, False: 18.0k]
  ------------------
 1768|  18.0k|                       : visit_maybe_relaxed_sub(
 1769|  18.0k|                             child, shift_ - B, child_size, v, args...);
 1770|  18.0k|    }
_ZNK5immer6detail4rbts14empty_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
   76|  8.22k|    shift_t shift() const { return 0; }
_ZNK5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
  138|  2.00M|    shift_t shift() const { return 0; }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_20concat_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|  18.0k|{
 1839|  18.0k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 18.0k, False: 0]
  ------------------
 1840|  18.0k|    auto relaxed = node->relaxed();
 1841|  18.0k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 17.6k, False: 383]
  ------------------
 1842|  17.6k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 17.6k, False: 0]
  ------------------
 1843|  17.6k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  17.6k|            .visit(v, std::forward<Args>(args)...);
 1845|  17.6k|    } else {
 1846|    383|        return make_regular_sub_pos(node, shift, size)
 1847|    383|            .visit(v, std::forward<Args>(args)...);
 1848|    383|    }
 1849|  18.0k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
 1813|  17.6k|    {
 1814|  17.6k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  17.6k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
 1036|    383|    {
 1037|    383|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|    383|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9first_subINS1_20concat_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
  970|    679|    {
  971|    679|        auto is_leaf = shift_ == BL;
  972|    679|        auto child   = node_->inner()[0];
  973|    679|        auto is_full = size_ >= (size_t{1} << shift_);
  974|    679|        return is_full
  ------------------
  |  Branch (974:16): [True: 679, False: 0]
  ------------------
  975|    679|                   ? (is_leaf
  ------------------
  |  Branch (975:23): [True: 0, False: 679]
  ------------------
  976|    679|                          ? make_full_leaf_pos(child).visit(v, args...)
  977|    679|                          : make_full_pos(child, shift_ - B).visit(v, args...))
  978|    679|                   : (is_leaf
  ------------------
  |  Branch (978:23): [True: 0, False: 0]
  ------------------
  979|      0|                          ? make_leaf_sub_pos(child, size_).visit(v, args...)
  980|      0|                          : make_regular_sub_pos(child, shift_ - B, size_)
  981|      0|                                .visit(v, args...));
  982|    679|    }
_ZNK5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
  201|   153k|    shift_t shift() const { return 0; }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
 1405|  1.06k|    {
 1406|  1.06k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  1.06k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9first_subINS1_20concat_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
 1361|    384|    {
 1362|    384|        auto is_leaf = shift_ == BL;
 1363|    384|        auto child   = node_->inner()[0];
 1364|    384|        return is_leaf ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (1364:16): [True: 0, False: 384]
  ------------------
 1365|    384|                       : make_full_pos(child, shift_ - B).visit(v, args...);
 1366|    384|    }
_ZN5immer6detail4rbts12null_sub_pos13each_left_subINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_DpOT0_:
  711|   116k|    {
  712|   116k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14each_right_subINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_DpOT0_:
 1304|   125k|    {
 1305|   125k|        each_i(v, 1, branches<B>, args...);
 1306|   125k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE6each_iINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_jjDpOT0_:
 1263|   125k|    {
 1264|   125k|        auto p = node_->inner() + i;
 1265|   125k|        auto e = node_->inner() + n;
 1266|   125k|        if (shift_ == BL) {
  ------------------
  |  Branch (1266:13): [True: 64.4k, False: 61.1k]
  ------------------
 1267|   257k|            for (; p != e; ++p) {
  ------------------
  |  Branch (1267:20): [True: 193k, False: 64.4k]
  ------------------
 1268|   193k|                IMMER_PREFETCH(p + 1);
 1269|   193k|                make_full_leaf_pos(*p).visit(v, args...);
 1270|   193k|            }
 1271|  64.4k|        } else {
 1272|  61.1k|            auto ss = shift_ - B;
 1273|   244k|            for (; p != e; ++p)
  ------------------
  |  Branch (1273:20): [True: 183k, False: 61.1k]
  ------------------
 1274|   183k|                make_full_pos(*p, ss).visit(v, args...);
 1275|  61.1k|        }
 1276|   125k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEDcT_DpOT0_:
  207|  1.16M|    {
  208|  1.16M|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  1.16M|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEDcT_DpOT0_:
 1405|   743k|    {
 1406|   743k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|   743k|    }
_ZN5immer6detail4rbts12null_sub_pos13each_left_subINS1_21concat_merger_visitorEJRNS1_13concat_mergerINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEEEEvT_DpOT0_:
  711|   116k|    {
  712|   116k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14each_right_subINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_DpOT0_:
 1304|   125k|    {
 1305|   125k|        each_i(v, 1, branches<B>, args...);
 1306|   125k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE6each_iINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_jjDpOT0_:
 1263|   125k|    {
 1264|   125k|        auto p = node_->inner() + i;
 1265|   125k|        auto e = node_->inner() + n;
 1266|   125k|        if (shift_ == BL) {
  ------------------
  |  Branch (1266:13): [True: 64.4k, False: 61.1k]
  ------------------
 1267|   257k|            for (; p != e; ++p) {
  ------------------
  |  Branch (1267:20): [True: 193k, False: 64.4k]
  ------------------
 1268|   193k|                IMMER_PREFETCH(p + 1);
 1269|   193k|                make_full_leaf_pos(*p).visit(v, args...);
 1270|   193k|            }
 1271|  64.4k|        } else {
 1272|  61.1k|            auto ss = shift_ - B;
 1273|   244k|            for (; p != e; ++p)
  ------------------
  |  Branch (1273:20): [True: 183k, False: 61.1k]
  ------------------
 1274|   183k|                make_full_pos(*p, ss).visit(v, args...);
 1275|  61.1k|        }
 1276|   125k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEDcT_DpOT0_:
  207|  1.16M|    {
  208|  1.16M|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  1.16M|    }
_ZNK5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE4sizeEv:
  200|  1.16M|    size_t size() const { return branches<BL>; }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEDcT_DpOT0_:
 1405|   743k|    {
 1406|   743k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|   743k|    }
_ZN5immer6detail4rbts25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_both_visitorISC_EEJRNS1_14empty_leaf_posISC_EERNS1_8full_posISC_EEEEEDcT_DpOT0_:
  753|    679|    {
  754|    679|        return make_leaf_sub_pos(leaf_, count_).visit(v, args...);
  755|    679|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_14empty_leaf_posISC_EERNS1_8full_posISC_EEEEEDcT_DpOT0_:
  144|    679|    {
  145|    679|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|    679|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14first_sub_leafINS1_20concat_right_visitorISC_EEJRNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
 1370|    679|    {
 1371|    679|        assert(shift_ == BL);
  ------------------
  |  Branch (1371:9): [True: 679, False: 0]
  ------------------
 1372|    679|        auto child = node_->inner()[0];
 1373|    679|        return make_full_leaf_pos(child).visit(v, args...);
 1374|    679|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
  207|  2.73k|    {
  208|  2.73k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  2.73k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14each_right_subINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_DpOT0_:
  906|   153k|    {
  907|   153k|        if (count() > 1)
  ------------------
  |  Branch (907:13): [True: 144k, False: 9.85k]
  ------------------
  908|   144k|            each_right_sub_(v, 1, args...);
  909|   153k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE15each_right_sub_INS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_jDpOT0_:
  879|   144k|    {
  880|   144k|        auto last  = count() - 1;
  881|   144k|        auto lsize = size_ - (last << shift_);
  882|   144k|        auto n     = node()->inner() + i;
  883|   144k|        auto e     = node()->inner() + last;
  884|   144k|        if (shift() == BL) {
  ------------------
  |  Branch (884:13): [True: 79.6k, False: 64.4k]
  ------------------
  885|   235k|            for (; n != e; ++n) {
  ------------------
  |  Branch (885:20): [True: 156k, False: 79.6k]
  ------------------
  886|   156k|                IMMER_PREFETCH(n + 1);
  887|   156k|                make_full_leaf_pos(*n).visit(v, args...);
  888|   156k|            }
  889|  79.6k|            make_leaf_sub_pos(*n, lsize).visit(v, args...);
  890|  79.6k|        } else {
  891|  64.4k|            auto ss = shift_ - B;
  892|   170k|            for (; n != e; ++n)
  ------------------
  |  Branch (892:20): [True: 106k, False: 64.4k]
  ------------------
  893|   106k|                make_full_pos(*n, ss).visit(v, args...);
  894|  64.4k|            make_regular_sub_pos(*n, ss, lsize).visit(v, args...);
  895|  64.4k|        }
  896|   144k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEDcT_DpOT0_:
 1036|   732k|    {
 1037|   732k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|   732k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14each_right_subINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_DpOT0_:
  906|   153k|    {
  907|   153k|        if (count() > 1)
  ------------------
  |  Branch (907:13): [True: 144k, False: 9.85k]
  ------------------
  908|   144k|            each_right_sub_(v, 1, args...);
  909|   153k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE15each_right_sub_INS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_jDpOT0_:
  879|   144k|    {
  880|   144k|        auto last  = count() - 1;
  881|   144k|        auto lsize = size_ - (last << shift_);
  882|   144k|        auto n     = node()->inner() + i;
  883|   144k|        auto e     = node()->inner() + last;
  884|   144k|        if (shift() == BL) {
  ------------------
  |  Branch (884:13): [True: 79.6k, False: 64.4k]
  ------------------
  885|   235k|            for (; n != e; ++n) {
  ------------------
  |  Branch (885:20): [True: 156k, False: 79.6k]
  ------------------
  886|   156k|                IMMER_PREFETCH(n + 1);
  887|   156k|                make_full_leaf_pos(*n).visit(v, args...);
  888|   156k|            }
  889|  79.6k|            make_leaf_sub_pos(*n, lsize).visit(v, args...);
  890|  79.6k|        } else {
  891|  64.4k|            auto ss = shift_ - B;
  892|   170k|            for (; n != e; ++n)
  ------------------
  |  Branch (892:20): [True: 106k, False: 64.4k]
  ------------------
  893|   106k|                make_full_pos(*n, ss).visit(v, args...);
  894|  64.4k|            make_regular_sub_pos(*n, ss, lsize).visit(v, args...);
  895|  64.4k|        }
  896|   144k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEDcT_DpOT0_:
 1036|   732k|    {
 1037|   732k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|   732k|    }
_ZN5immer6detail4rbts25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_both_visitorISC_EEJRNS1_14empty_leaf_posISC_EERNS1_15regular_sub_posISC_EEEEEDcT_DpOT0_:
  753|  2.05k|    {
  754|  2.05k|        return make_leaf_sub_pos(leaf_, count_).visit(v, args...);
  755|  2.05k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_14empty_leaf_posISC_EERNS1_15regular_sub_posISC_EEEEEDcT_DpOT0_:
  144|  2.05k|    {
  145|  2.05k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  2.05k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14first_sub_leafINS1_20concat_right_visitorISC_EEJRNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
  986|  2.05k|    {
  987|  2.05k|        assert(shift_ == BL);
  ------------------
  |  Branch (987:9): [True: 2.05k, False: 0]
  ------------------
  988|  2.05k|        auto child   = node_->inner()[0];
  989|  2.05k|        auto is_full = size_ >= branches<BL>;
  990|  2.05k|        return is_full ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (990:16): [True: 2.05k, False: 0]
  ------------------
  991|  2.05k|                       : make_leaf_sub_pos(child, size_).visit(v, args...);
  992|  2.05k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRSD_RNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
  144|  5.49k|    {
  145|  5.49k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  5.49k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14each_right_subINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_DpOT0_:
 1647|  3.03M|    {
 1648|  3.03M|        each_right(v, 1, std::forward<Args>(args)...);
 1649|  3.03M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10each_rightINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_jDpOT0_:
 1653|  3.03M|    {
 1654|  3.03M|        assert(start > 0);
  ------------------
  |  Branch (1654:9): [True: 3.03M, False: 0]
  ------------------
 1655|  3.03M|        assert(start <= relaxed_->d.count);
  ------------------
  |  Branch (1655:9): [True: 3.03M, False: 0]
  ------------------
 1656|  3.03M|        auto s = relaxed_->d.sizes[start - 1];
 1657|  3.03M|        auto p = node_->inner();
 1658|  3.03M|        if (shift_ == BL) {
  ------------------
  |  Branch (1658:13): [True: 385k, False: 2.64M]
  ------------------
 1659|   998k|            for (auto i = start; i < relaxed_->d.count; ++i) {
  ------------------
  |  Branch (1659:34): [True: 613k, False: 385k]
  ------------------
 1660|   613k|                IMMER_PREFETCH(p + i + 1);
 1661|   613k|                make_leaf_sub_pos(p[i], relaxed_->d.sizes[i] - s)
 1662|   613k|                    .visit(v, args...);
 1663|   613k|                s = relaxed_->d.sizes[i];
 1664|   613k|                assert(s);
  ------------------
  |  Branch (1664:17): [True: 613k, False: 0]
  ------------------
 1665|   613k|            }
 1666|  2.64M|        } else {
 1667|  2.64M|            auto ss = shift_ - B;
 1668|  9.31M|            for (auto i = start; i < relaxed_->d.count; ++i) {
  ------------------
  |  Branch (1668:34): [True: 6.67M, False: 2.64M]
  ------------------
 1669|  6.67M|                visit_maybe_relaxed_sub(
 1670|  6.67M|                    p[i], ss, relaxed_->d.sizes[i] - s, v, args...);
 1671|  6.67M|                s = relaxed_->d.sizes[i];
 1672|       |                assert(s);
  ------------------
  |  Branch (1672:17): [True: 6.67M, False: 0]
  ------------------
 1673|  6.67M|            }
 1674|  2.64M|        }
 1675|  3.03M|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEDcPT_jmT0_DpOT1_:
 1838|  13.8M|{
 1839|  13.8M|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 13.8M, False: 0]
  ------------------
 1840|  13.8M|    auto relaxed = node->relaxed();
 1841|  13.8M|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 13.1M, False: 668k]
  ------------------
 1842|  13.1M|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 13.1M, False: 0]
  ------------------
 1843|  13.1M|        return make_relaxed_pos(node, shift, relaxed)
 1844|  13.1M|            .visit(v, std::forward<Args>(args)...);
 1845|  13.1M|    } else {
 1846|   668k|        return make_regular_sub_pos(node, shift, size)
 1847|   668k|            .visit(v, std::forward<Args>(args)...);
 1848|   668k|    }
 1849|  13.8M|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14each_right_subINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_DpOT0_:
 1647|  3.03M|    {
 1648|  3.03M|        each_right(v, 1, std::forward<Args>(args)...);
 1649|  3.03M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10each_rightINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_jDpOT0_:
 1653|  3.03M|    {
 1654|  3.03M|        assert(start > 0);
  ------------------
  |  Branch (1654:9): [True: 3.03M, False: 0]
  ------------------
 1655|  3.03M|        assert(start <= relaxed_->d.count);
  ------------------
  |  Branch (1655:9): [True: 3.03M, False: 0]
  ------------------
 1656|  3.03M|        auto s = relaxed_->d.sizes[start - 1];
 1657|  3.03M|        auto p = node_->inner();
 1658|  3.03M|        if (shift_ == BL) {
  ------------------
  |  Branch (1658:13): [True: 385k, False: 2.64M]
  ------------------
 1659|   998k|            for (auto i = start; i < relaxed_->d.count; ++i) {
  ------------------
  |  Branch (1659:34): [True: 613k, False: 385k]
  ------------------
 1660|   613k|                IMMER_PREFETCH(p + i + 1);
 1661|   613k|                make_leaf_sub_pos(p[i], relaxed_->d.sizes[i] - s)
 1662|   613k|                    .visit(v, args...);
 1663|   613k|                s = relaxed_->d.sizes[i];
 1664|   613k|                assert(s);
  ------------------
  |  Branch (1664:17): [True: 613k, False: 0]
  ------------------
 1665|   613k|            }
 1666|  2.64M|        } else {
 1667|  2.64M|            auto ss = shift_ - B;
 1668|  9.31M|            for (auto i = start; i < relaxed_->d.count; ++i) {
  ------------------
  |  Branch (1668:34): [True: 6.67M, False: 2.64M]
  ------------------
 1669|  6.67M|                visit_maybe_relaxed_sub(
 1670|  6.67M|                    p[i], ss, relaxed_->d.sizes[i] - s, v, args...);
 1671|  6.67M|                s = relaxed_->d.sizes[i];
 1672|       |                assert(s);
  ------------------
  |  Branch (1672:17): [True: 6.67M, False: 0]
  ------------------
 1673|  6.67M|            }
 1674|  2.64M|        }
 1675|  3.03M|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|  13.8M|{
 1839|  13.8M|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 13.8M, False: 0]
  ------------------
 1840|  13.8M|    auto relaxed = node->relaxed();
 1841|  13.8M|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 13.1M, False: 668k]
  ------------------
 1842|  13.1M|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 13.1M, False: 0]
  ------------------
 1843|  13.1M|        return make_relaxed_pos(node, shift, relaxed)
 1844|  13.1M|            .visit(v, std::forward<Args>(args)...);
 1845|  13.1M|    } else {
 1846|   668k|        return make_regular_sub_pos(node, shift, size)
 1847|   668k|            .visit(v, std::forward<Args>(args)...);
 1848|   668k|    }
 1849|  13.8M|}
_ZN5immer6detail4rbts25singleton_regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_both_visitorISC_EEJRNS1_14empty_leaf_posISC_EERNS1_11relaxed_posISC_EEEEEDcT_DpOT0_:
  753|  5.49k|    {
  754|  5.49k|        return make_leaf_sub_pos(leaf_, count_).visit(v, args...);
  755|  5.49k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_14empty_leaf_posISC_EERNS1_11relaxed_posISC_EEEEEDcT_DpOT0_:
  144|  5.49k|    {
  145|  5.49k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  5.49k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14first_sub_leafINS1_20concat_right_visitorISC_EEJRNS1_12leaf_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
 1774|  5.49k|    {
 1775|  5.49k|        assert(shift_ == BL);
  ------------------
  |  Branch (1775:9): [True: 5.49k, False: 0]
  ------------------
 1776|  5.49k|        auto child      = node_->inner()[0];
 1777|  5.49k|        auto child_size = relaxed_->d.sizes[0];
 1778|  5.49k|        return make_leaf_sub_pos(child, child_size).visit(v, args...);
 1779|  5.49k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_26concat_trees_right_visitorISC_EEJRNS1_25singleton_regular_sub_posISC_EERNS1_14empty_leaf_posISC_EEEEEDcT_DpOT0_:
 1036|  2.35k|    {
 1037|  2.35k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  2.35k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_25concat_trees_left_visitorISC_EEJNS1_8leaf_posISC_EERPSC_RjRmEEEDcPT_jmT0_DpOT1_:
 1838|   530k|{
 1839|   530k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 530k, False: 0]
  ------------------
 1840|   530k|    auto relaxed = node->relaxed();
 1841|   530k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 515k, False: 14.8k]
  ------------------
 1842|   515k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 515k, False: 0]
  ------------------
 1843|   515k|        return make_relaxed_pos(node, shift, relaxed)
 1844|   515k|            .visit(v, std::forward<Args>(args)...);
 1845|   515k|    } else {
 1846|  14.8k|        return make_regular_sub_pos(node, shift, size)
 1847|  14.8k|            .visit(v, std::forward<Args>(args)...);
 1848|  14.8k|    }
 1849|   530k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_25concat_trees_left_visitorISC_EEJNS1_8leaf_posISC_EERPSC_RjRmEEEDcT_DpOT0_:
 1813|   515k|    {
 1814|   515k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|   515k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_26concat_trees_right_visitorISC_EEJRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|   515k|{
 1839|   515k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 515k, False: 0]
  ------------------
 1840|   515k|    auto relaxed = node->relaxed();
 1841|   515k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 500k, False: 15.1k]
  ------------------
 1842|   500k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 500k, False: 0]
  ------------------
 1843|   500k|        return make_relaxed_pos(node, shift, relaxed)
 1844|   500k|            .visit(v, std::forward<Args>(args)...);
 1845|   500k|    } else {
 1846|  15.1k|        return make_regular_sub_pos(node, shift, size)
 1847|  15.1k|            .visit(v, std::forward<Args>(args)...);
 1848|  15.1k|    }
 1849|   515k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_26concat_trees_right_visitorISC_EEJRSD_RNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1813|   500k|    {
 1814|   500k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|   500k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERSD_EEEDcT_DpOT0_:
 1750|  2.38M|    {
 1751|  2.38M|        auto offset     = relaxed_->d.count - 1;
 1752|  2.38M|        auto child      = node_->inner()[offset];
 1753|  2.38M|        auto child_size = size(offset);
 1754|  2.38M|        auto is_leaf    = shift_ == BL;
 1755|  2.38M|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1755:16): [True: 0, False: 2.38M]
  ------------------
 1756|  2.38M|                       : visit_maybe_relaxed_sub(
 1757|  2.38M|                             child, shift_ - B, child_size, v, args...);
 1758|  2.38M|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|  2.38M|{
 1839|  2.38M|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 2.38M, False: 0]
  ------------------
 1840|  2.38M|    auto relaxed = node->relaxed();
 1841|  2.38M|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 2.38M, False: 2.42k]
  ------------------
 1842|  2.38M|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 2.38M, False: 0]
  ------------------
 1843|  2.38M|        return make_relaxed_pos(node, shift, relaxed)
 1844|  2.38M|            .visit(v, std::forward<Args>(args)...);
 1845|  2.38M|    } else {
 1846|  2.42k|        return make_regular_sub_pos(node, shift, size)
 1847|  2.42k|            .visit(v, std::forward<Args>(args)...);
 1848|  2.42k|    }
 1849|  2.38M|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERSD_EEEDcT_DpOT0_:
 1813|  2.38M|    {
 1814|  2.38M|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  2.38M|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEEEDcT_DpOT0_:
 1036|  5.99k|    {
 1037|  5.99k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  5.99k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEEEDcT_DpOT0_:
  958|  3.56k|    {
  959|  3.56k|        auto offset  = count() - 1;
  960|  3.56k|        auto child   = node_->inner()[offset];
  961|  3.56k|        auto is_leaf = shift_ == BL;
  962|  3.56k|        auto lsize   = size_ - (size_t{offset} << shift_);
  963|  3.56k|        return is_leaf ? make_leaf_sub_pos(child, lsize).visit(v, args...)
  ------------------
  |  Branch (963:16): [True: 0, False: 3.56k]
  ------------------
  964|  3.56k|                       : make_regular_sub_pos(child, shift_ - B, lsize)
  965|  3.56k|                             .visit(v, args...);
  966|  3.56k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13each_left_subINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_DpOT0_:
  913|   958k|    {
  914|   958k|        each_left(v, count() - 1, args...);
  915|   958k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_leftINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_jDpOT0_:
  873|   958k|    {
  874|   958k|        return each_left_regular(*this, v, last, args...);
  875|   958k|    }
_ZN5immer6detail4rbts17each_left_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvOT_T0_jDpOT1_:
  575|   958k|{
  576|   958k|    constexpr auto B  = bits<Pos>;
  577|   958k|    constexpr auto BL = bits_leaf<Pos>;
  578|   958k|    assert(last < p.count());
  ------------------
  |  Branch (578:5): [True: 958k, False: 0]
  ------------------
  579|   958k|    if (p.shift() == BL) {
  ------------------
  |  Branch (579:9): [True: 453k, False: 505k]
  ------------------
  580|   453k|        auto n = p.node()->inner();
  581|   453k|        auto e = n + last;
  582|  1.26M|        for (; n != e; ++n) {
  ------------------
  |  Branch (582:16): [True: 813k, False: 453k]
  ------------------
  583|   813k|            IMMER_PREFETCH(n + 1);
  584|   813k|            make_full_leaf_pos(*n).visit(v, args...);
  585|   813k|        }
  586|   505k|    } else {
  587|   505k|        auto n  = p.node()->inner();
  588|   505k|        auto e  = n + last;
  589|   505k|        auto ss = p.shift() - B;
  590|   959k|        for (; n != e; ++n)
  ------------------
  |  Branch (590:16): [True: 453k, False: 505k]
  ------------------
  591|   453k|            make_full_pos(*n, ss).visit(v, args...);
  592|   505k|    }
  593|   958k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13each_left_subINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_DpOT0_:
  913|   958k|    {
  914|   958k|        each_left(v, count() - 1, args...);
  915|   958k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_leftINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_jDpOT0_:
  873|   958k|    {
  874|   958k|        return each_left_regular(*this, v, last, args...);
  875|   958k|    }
_ZN5immer6detail4rbts17each_left_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21concat_merger_visitorEJRNS1_13concat_mergerISD_EEEEEvOT_T0_jDpOT1_:
  575|   958k|{
  576|   958k|    constexpr auto B  = bits<Pos>;
  577|   958k|    constexpr auto BL = bits_leaf<Pos>;
  578|   958k|    assert(last < p.count());
  ------------------
  |  Branch (578:5): [True: 958k, False: 0]
  ------------------
  579|   958k|    if (p.shift() == BL) {
  ------------------
  |  Branch (579:9): [True: 453k, False: 505k]
  ------------------
  580|   453k|        auto n = p.node()->inner();
  581|   453k|        auto e = n + last;
  582|  1.26M|        for (; n != e; ++n) {
  ------------------
  |  Branch (582:16): [True: 813k, False: 453k]
  ------------------
  583|   813k|            IMMER_PREFETCH(n + 1);
  584|   813k|            make_full_leaf_pos(*n).visit(v, args...);
  585|   813k|        }
  586|   505k|    } else {
  587|   505k|        auto n  = p.node()->inner();
  588|   505k|        auto e  = n + last;
  589|   505k|        auto ss = p.shift() - B;
  590|   959k|        for (; n != e; ++n)
  ------------------
  |  Branch (590:16): [True: 453k, False: 505k]
  ------------------
  591|   453k|            make_full_pos(*n, ss).visit(v, args...);
  592|   505k|    }
  593|   958k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9first_subINS1_20concat_right_visitorISC_EEJRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1762|   827k|    {
 1763|   827k|        auto child      = node_->inner()[0];
 1764|   827k|        auto child_size = relaxed_->d.sizes[0];
 1765|   827k|        auto is_leaf    = shift_ == BL;
 1766|   827k|        assert(child_size);
  ------------------
  |  Branch (1766:9): [True: 827k, False: 0]
  ------------------
 1767|   827k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1767:16): [True: 0, False: 827k]
  ------------------
 1768|   827k|                       : visit_maybe_relaxed_sub(
 1769|   827k|                             child, shift_ - B, child_size, v, args...);
 1770|   827k|    }
_ZNK5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5shiftEv:
  106|   530k|    shift_t shift() const { return 0; }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_20concat_right_visitorISC_EEJRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|   827k|{
 1839|   827k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 827k, False: 0]
  ------------------
 1840|   827k|    auto relaxed = node->relaxed();
 1841|   827k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 699k, False: 127k]
  ------------------
 1842|   699k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 699k, False: 0]
  ------------------
 1843|   699k|        return make_relaxed_pos(node, shift, relaxed)
 1844|   699k|            .visit(v, std::forward<Args>(args)...);
 1845|   699k|    } else {
 1846|   127k|        return make_regular_sub_pos(node, shift, size)
 1847|   127k|            .visit(v, std::forward<Args>(args)...);
 1848|   127k|    }
 1849|   827k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1813|   699k|    {
 1814|   699k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|   699k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRSD_RNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1036|   127k|    {
 1037|   127k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|   127k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERSD_EEEDcT_DpOT0_:
  958|    747|    {
  959|    747|        auto offset  = count() - 1;
  960|    747|        auto child   = node_->inner()[offset];
  961|    747|        auto is_leaf = shift_ == BL;
  962|    747|        auto lsize   = size_ - (size_t{offset} << shift_);
  963|    747|        return is_leaf ? make_leaf_sub_pos(child, lsize).visit(v, args...)
  ------------------
  |  Branch (963:16): [True: 0, False: 747]
  ------------------
  964|    747|                       : make_regular_sub_pos(child, shift_ - B, lsize)
  965|    747|                             .visit(v, args...);
  966|    747|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERSD_EEEDcT_DpOT0_:
 1036|  1.13k|    {
 1037|  1.13k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.13k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9first_subINS1_20concat_right_visitorISC_EEJRSD_RNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
  970|  62.6k|    {
  971|  62.6k|        auto is_leaf = shift_ == BL;
  972|  62.6k|        auto child   = node_->inner()[0];
  973|  62.6k|        auto is_full = size_ >= (size_t{1} << shift_);
  974|  62.6k|        return is_full
  ------------------
  |  Branch (974:16): [True: 62.6k, False: 0]
  ------------------
  975|  62.6k|                   ? (is_leaf
  ------------------
  |  Branch (975:23): [True: 0, False: 62.6k]
  ------------------
  976|  62.6k|                          ? make_full_leaf_pos(child).visit(v, args...)
  977|  62.6k|                          : make_full_pos(child, shift_ - B).visit(v, args...))
  978|  62.6k|                   : (is_leaf
  ------------------
  |  Branch (978:23): [True: 0, False: 0]
  ------------------
  979|      0|                          ? make_leaf_sub_pos(child, size_).visit(v, args...)
  980|      0|                          : make_regular_sub_pos(child, shift_ - B, size_)
  981|      0|                                .visit(v, args...));
  982|  62.6k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1405|   122k|    {
 1406|   122k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|   122k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9first_subINS1_20concat_right_visitorISC_EEJRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1361|  60.1k|    {
 1362|  60.1k|        auto is_leaf = shift_ == BL;
 1363|  60.1k|        auto child   = node_->inner()[0];
 1364|  60.1k|        return is_leaf ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (1364:16): [True: 0, False: 60.1k]
  ------------------
 1365|  60.1k|                       : make_full_pos(child, shift_ - B).visit(v, args...);
 1366|  60.1k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_8full_posISC_EEEEEDcT_DpOT0_:
  958|   122k|    {
  959|   122k|        auto offset  = count() - 1;
  960|   122k|        auto child   = node_->inner()[offset];
  961|   122k|        auto is_leaf = shift_ == BL;
  962|   122k|        auto lsize   = size_ - (size_t{offset} << shift_);
  963|   122k|        return is_leaf ? make_leaf_sub_pos(child, lsize).visit(v, args...)
  ------------------
  |  Branch (963:16): [True: 62.8k, False: 59.6k]
  ------------------
  964|   122k|                       : make_regular_sub_pos(child, shift_ - B, lsize)
  965|  59.6k|                             .visit(v, args...);
  966|   122k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_8full_posISC_EEEEEDcT_DpOT0_:
  144|  63.8k|    {
  145|  63.8k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  63.8k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14first_sub_leafINS1_20concat_right_visitorISC_EEJRNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1370|  63.8k|    {
 1371|  63.8k|        assert(shift_ == BL);
  ------------------
  |  Branch (1371:9): [True: 63.8k, False: 0]
  ------------------
 1372|  63.8k|        auto child = node_->inner()[0];
 1373|  63.8k|        return make_full_leaf_pos(child).visit(v, args...);
 1374|  63.8k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
  207|   151k|    {
  208|   151k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|   151k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_8full_posISC_EEEEEDcT_DpOT0_:
 1036|  59.8k|    {
 1037|  59.8k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  59.8k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERSD_EEEDcT_DpOT0_:
  958|   135k|    {
  959|   135k|        auto offset  = count() - 1;
  960|   135k|        auto child   = node_->inner()[offset];
  961|   135k|        auto is_leaf = shift_ == BL;
  962|   135k|        auto lsize   = size_ - (size_t{offset} << shift_);
  963|   135k|        return is_leaf ? make_leaf_sub_pos(child, lsize).visit(v, args...)
  ------------------
  |  Branch (963:16): [True: 82.6k, False: 52.4k]
  ------------------
  964|   135k|                       : make_regular_sub_pos(child, shift_ - B, lsize)
  965|  52.4k|                             .visit(v, args...);
  966|   135k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEEEDcT_DpOT0_:
  144|  87.4k|    {
  145|  87.4k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  87.4k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14first_sub_leafINS1_20concat_right_visitorISC_EEJRNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
  986|  87.4k|    {
  987|  87.4k|        assert(shift_ == BL);
  ------------------
  |  Branch (987:9): [True: 87.4k, False: 0]
  ------------------
  988|  87.4k|        auto child   = node_->inner()[0];
  989|  87.4k|        auto is_full = size_ >= branches<BL>;
  990|  87.4k|        return is_full ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (990:16): [True: 87.4k, False: 0]
  ------------------
  991|  87.4k|                       : make_leaf_sub_pos(child, size_).visit(v, args...);
  992|  87.4k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRSD_RNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
  144|   379k|    {
  145|   379k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|   379k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERSD_EEEDcT_DpOT0_:
 1036|  61.9k|    {
 1037|  61.9k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  61.9k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEEEDcT_DpOT0_:
  958|   697k|    {
  959|   697k|        auto offset  = count() - 1;
  960|   697k|        auto child   = node_->inner()[offset];
  961|   697k|        auto is_leaf = shift_ == BL;
  962|   697k|        auto lsize   = size_ - (size_t{offset} << shift_);
  963|   697k|        return is_leaf ? make_leaf_sub_pos(child, lsize).visit(v, args...)
  ------------------
  |  Branch (963:16): [True: 307k, False: 389k]
  ------------------
  964|   697k|                       : make_regular_sub_pos(child, shift_ - B, lsize)
  965|   389k|                             .visit(v, args...);
  966|   697k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEEEDcT_DpOT0_:
  144|   379k|    {
  145|   379k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|   379k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14first_sub_leafINS1_20concat_right_visitorISC_EEJRNS1_12leaf_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1774|   379k|    {
 1775|   379k|        assert(shift_ == BL);
  ------------------
  |  Branch (1775:9): [True: 379k, False: 0]
  ------------------
 1776|   379k|        auto child      = node_->inner()[0];
 1777|   379k|        auto child_size = relaxed_->d.sizes[0];
 1778|   379k|        return make_leaf_sub_pos(child, child_size).visit(v, args...);
 1779|   379k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEEEDcT_DpOT0_:
 1036|   815k|    {
 1037|   815k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|   815k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13each_left_subINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_DpOT0_:
 1617|  4.67M|    {
 1618|  4.67M|        each_left(v, relaxed_->d.count - 1, args...);
 1619|  4.67M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_leftINS1_34concat_rebalance_plan_fill_visitorEJRNS1_21concat_rebalance_planILj2ELj2EEEEEEvT_jDpOT0_:
 1623|  4.67M|    {
 1624|  4.67M|        auto p = node_->inner();
 1625|  4.67M|        auto s = size_t{};
 1626|  4.67M|        if (shift_ == BL) {
  ------------------
  |  Branch (1626:13): [True: 77.6k, False: 4.59M]
  ------------------
 1627|   221k|            for (auto i = count_t{0}; i < n; ++i) {
  ------------------
  |  Branch (1627:39): [True: 144k, False: 77.6k]
  ------------------
 1628|   144k|                IMMER_PREFETCH(p + i + 1);
 1629|   144k|                make_leaf_sub_pos(p[i], relaxed_->d.sizes[i] - s)
 1630|   144k|                    .visit(v, args...);
 1631|   144k|                s = relaxed_->d.sizes[i];
 1632|   144k|                assert(s);
  ------------------
  |  Branch (1632:17): [True: 144k, False: 0]
  ------------------
 1633|   144k|            }
 1634|  4.59M|        } else {
 1635|  4.59M|            auto ss = shift_ - B;
 1636|  11.7M|            for (auto i = count_t{0}; i < n; ++i) {
  ------------------
  |  Branch (1636:39): [True: 7.13M, False: 4.59M]
  ------------------
 1637|  7.13M|                visit_maybe_relaxed_sub(
 1638|  7.13M|                    p[i], ss, relaxed_->d.sizes[i] - s, v, args...);
 1639|  7.13M|                s = relaxed_->d.sizes[i];
 1640|       |                assert(s);
  ------------------
  |  Branch (1640:17): [True: 7.13M, False: 0]
  ------------------
 1641|  7.13M|            }
 1642|  4.59M|        }
 1643|  4.67M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13each_left_subINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_DpOT0_:
 1617|  4.67M|    {
 1618|  4.67M|        each_left(v, relaxed_->d.count - 1, args...);
 1619|  4.67M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_leftINS1_21concat_merger_visitorEJRNS1_13concat_mergerISC_EEEEEvT_jDpOT0_:
 1623|  4.67M|    {
 1624|  4.67M|        auto p = node_->inner();
 1625|  4.67M|        auto s = size_t{};
 1626|  4.67M|        if (shift_ == BL) {
  ------------------
  |  Branch (1626:13): [True: 77.6k, False: 4.59M]
  ------------------
 1627|   221k|            for (auto i = count_t{0}; i < n; ++i) {
  ------------------
  |  Branch (1627:39): [True: 144k, False: 77.6k]
  ------------------
 1628|   144k|                IMMER_PREFETCH(p + i + 1);
 1629|   144k|                make_leaf_sub_pos(p[i], relaxed_->d.sizes[i] - s)
 1630|   144k|                    .visit(v, args...);
 1631|   144k|                s = relaxed_->d.sizes[i];
 1632|   144k|                assert(s);
  ------------------
  |  Branch (1632:17): [True: 144k, False: 0]
  ------------------
 1633|   144k|            }
 1634|  4.59M|        } else {
 1635|  4.59M|            auto ss = shift_ - B;
 1636|  11.7M|            for (auto i = count_t{0}; i < n; ++i) {
  ------------------
  |  Branch (1636:39): [True: 7.13M, False: 4.59M]
  ------------------
 1637|  7.13M|                visit_maybe_relaxed_sub(
 1638|  7.13M|                    p[i], ss, relaxed_->d.sizes[i] - s, v, args...);
 1639|  7.13M|                s = relaxed_->d.sizes[i];
 1640|       |                assert(s);
  ------------------
  |  Branch (1640:17): [True: 7.13M, False: 0]
  ------------------
 1641|  7.13M|            }
 1642|  4.59M|        }
 1643|  4.67M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9first_subINS1_20concat_right_visitorISC_EEJRSD_RNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1762|  1.80M|    {
 1763|  1.80M|        auto child      = node_->inner()[0];
 1764|  1.80M|        auto child_size = relaxed_->d.sizes[0];
 1765|  1.80M|        auto is_leaf    = shift_ == BL;
 1766|  1.80M|        assert(child_size);
  ------------------
  |  Branch (1766:9): [True: 1.80M, False: 0]
  ------------------
 1767|  1.80M|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1767:16): [True: 0, False: 1.80M]
  ------------------
 1768|  1.80M|                       : visit_maybe_relaxed_sub(
 1769|  1.80M|                             child, shift_ - B, child_size, v, args...);
 1770|  1.80M|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_20concat_right_visitorISC_EEJRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|  1.80M|{
 1839|  1.80M|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 1.80M, False: 0]
  ------------------
 1840|  1.80M|    auto relaxed = node->relaxed();
 1841|  1.80M|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 1.80M, False: 636]
  ------------------
 1842|  1.80M|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 1.80M, False: 0]
  ------------------
 1843|  1.80M|        return make_relaxed_pos(node, shift, relaxed)
 1844|  1.80M|            .visit(v, std::forward<Args>(args)...);
 1845|  1.80M|    } else {
 1846|    636|        return make_regular_sub_pos(node, shift, size)
 1847|    636|            .visit(v, std::forward<Args>(args)...);
 1848|    636|    }
 1849|  1.80M|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRSD_RNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1813|  1.80M|    {
 1814|  1.80M|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  1.80M|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1036|    636|    {
 1037|    636|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|    636|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEEEDcT_DpOT0_:
 1750|  55.3k|    {
 1751|  55.3k|        auto offset     = relaxed_->d.count - 1;
 1752|  55.3k|        auto child      = node_->inner()[offset];
 1753|  55.3k|        auto child_size = size(offset);
 1754|  55.3k|        auto is_leaf    = shift_ == BL;
 1755|  55.3k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1755:16): [True: 0, False: 55.3k]
  ------------------
 1756|  55.3k|                       : visit_maybe_relaxed_sub(
 1757|  55.3k|                             child, shift_ - B, child_size, v, args...);
 1758|  55.3k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|  55.3k|{
 1839|  55.3k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 55.3k, False: 0]
  ------------------
 1840|  55.3k|    auto relaxed = node->relaxed();
 1841|  55.3k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 54.9k, False: 385]
  ------------------
 1842|  54.9k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 54.9k, False: 0]
  ------------------
 1843|  54.9k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  54.9k|            .visit(v, std::forward<Args>(args)...);
 1845|  54.9k|    } else {
 1846|    385|        return make_regular_sub_pos(node, shift, size)
 1847|    385|            .visit(v, std::forward<Args>(args)...);
 1848|    385|    }
 1849|  55.3k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_left_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEEEDcT_DpOT0_:
 1813|  54.9k|    {
 1814|  54.9k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  54.9k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9first_subINS1_20concat_right_visitorISC_EEJRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
  970|  1.21k|    {
  971|  1.21k|        auto is_leaf = shift_ == BL;
  972|  1.21k|        auto child   = node_->inner()[0];
  973|  1.21k|        auto is_full = size_ >= (size_t{1} << shift_);
  974|  1.21k|        return is_full
  ------------------
  |  Branch (974:16): [True: 1.21k, False: 0]
  ------------------
  975|  1.21k|                   ? (is_leaf
  ------------------
  |  Branch (975:23): [True: 0, False: 1.21k]
  ------------------
  976|  1.21k|                          ? make_full_leaf_pos(child).visit(v, args...)
  977|  1.21k|                          : make_full_pos(child, shift_ - B).visit(v, args...))
  978|  1.21k|                   : (is_leaf
  ------------------
  |  Branch (978:23): [True: 0, False: 0]
  ------------------
  979|      0|                          ? make_leaf_sub_pos(child, size_).visit(v, args...)
  980|      0|                          : make_regular_sub_pos(child, shift_ - B, size_)
  981|      0|                                .visit(v, args...));
  982|  1.21k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_20concat_right_visitorISC_EEJRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1405|  1.82k|    {
 1406|  1.82k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  1.82k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9first_subINS1_20concat_right_visitorISC_EEJRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1361|    615|    {
 1362|    615|        auto is_leaf = shift_ == BL;
 1363|    615|        auto child   = node_->inner()[0];
 1364|    615|        return is_leaf ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (1364:16): [True: 0, False: 615]
  ------------------
 1365|    615|                       : make_full_pos(child, shift_ - B).visit(v, args...);
 1366|    615|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_8full_posISC_EEEEEDcT_DpOT0_:
 1750|  1.56k|    {
 1751|  1.56k|        auto offset     = relaxed_->d.count - 1;
 1752|  1.56k|        auto child      = node_->inner()[offset];
 1753|  1.56k|        auto child_size = size(offset);
 1754|  1.56k|        auto is_leaf    = shift_ == BL;
 1755|  1.56k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1755:16): [True: 1.00k, False: 559]
  ------------------
 1756|  1.56k|                       : visit_maybe_relaxed_sub(
 1757|    559|                             child, shift_ - B, child_size, v, args...);
 1758|  1.56k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_8full_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|    559|{
 1839|    559|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 559, False: 0]
  ------------------
 1840|    559|    auto relaxed = node->relaxed();
 1841|    559|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 350, False: 209]
  ------------------
 1842|    350|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 350, False: 0]
  ------------------
 1843|    350|        return make_relaxed_pos(node, shift, relaxed)
 1844|    350|            .visit(v, std::forward<Args>(args)...);
 1845|    350|    } else {
 1846|    209|        return make_regular_sub_pos(node, shift, size)
 1847|    209|            .visit(v, std::forward<Args>(args)...);
 1848|    209|    }
 1849|    559|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_8full_posISC_EEEEEDcT_DpOT0_:
 1813|    350|    {
 1814|    350|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|    350|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEEEDcT_DpOT0_:
 1750|  14.5k|    {
 1751|  14.5k|        auto offset     = relaxed_->d.count - 1;
 1752|  14.5k|        auto child      = node_->inner()[offset];
 1753|  14.5k|        auto child_size = size(offset);
 1754|  14.5k|        auto is_leaf    = shift_ == BL;
 1755|  14.5k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1755:16): [True: 4.78k, False: 9.81k]
  ------------------
 1756|  14.5k|                       : visit_maybe_relaxed_sub(
 1757|  9.81k|                             child, shift_ - B, child_size, v, args...);
 1758|  14.5k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|  9.81k|{
 1839|  9.81k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 9.81k, False: 0]
  ------------------
 1840|  9.81k|    auto relaxed = node->relaxed();
 1841|  9.81k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 364, False: 9.44k]
  ------------------
 1842|    364|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 364, False: 0]
  ------------------
 1843|    364|        return make_relaxed_pos(node, shift, relaxed)
 1844|    364|            .visit(v, std::forward<Args>(args)...);
 1845|  9.44k|    } else {
 1846|  9.44k|        return make_regular_sub_pos(node, shift, size)
 1847|  9.44k|            .visit(v, std::forward<Args>(args)...);
 1848|  9.44k|    }
 1849|  9.81k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_15regular_sub_posISC_EEEEEDcT_DpOT0_:
 1813|    364|    {
 1814|    364|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|    364|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE8last_subINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERSD_EEEDcT_DpOT0_:
 1750|  2.21M|    {
 1751|  2.21M|        auto offset     = relaxed_->d.count - 1;
 1752|  2.21M|        auto child      = node_->inner()[offset];
 1753|  2.21M|        auto child_size = size(offset);
 1754|  2.21M|        auto is_leaf    = shift_ == BL;
 1755|  2.21M|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1755:16): [True: 71.8k, False: 2.14M]
  ------------------
 1756|  2.21M|                       : visit_maybe_relaxed_sub(
 1757|  2.14M|                             child, shift_ - B, child_size, v, args...);
 1758|  2.21M|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERNS1_11relaxed_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|  2.14M|{
 1839|  2.14M|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 2.14M, False: 0]
  ------------------
 1840|  2.14M|    auto relaxed = node->relaxed();
 1841|  2.14M|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 1.72M, False: 425k]
  ------------------
 1842|  1.72M|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 1.72M, False: 0]
  ------------------
 1843|  1.72M|        return make_relaxed_pos(node, shift, relaxed)
 1844|  1.72M|            .visit(v, std::forward<Args>(args)...);
 1845|  1.72M|    } else {
 1846|   425k|        return make_regular_sub_pos(node, shift, size)
 1847|   425k|            .visit(v, std::forward<Args>(args)...);
 1848|   425k|    }
 1849|  2.14M|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_19concat_both_visitorISC_EEJRNS1_8leaf_posISC_EERSD_EEEDcT_DpOT0_:
 1813|  1.72M|    {
 1814|  1.72M|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  1.72M|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_26concat_trees_right_visitorISC_EEJRNS1_11relaxed_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1036|  15.1k|    {
 1037|  15.1k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  15.1k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_25concat_trees_left_visitorISC_EEJNS1_8leaf_posISC_EERPSC_RjRmEEEDcT_DpOT0_:
 1036|  14.8k|    {
 1037|  14.8k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  14.8k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_26concat_trees_right_visitorISC_EEJRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcPT_jmT0_DpOT1_:
 1838|  14.8k|{
 1839|  14.8k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 14.8k, False: 0]
  ------------------
 1840|  14.8k|    auto relaxed = node->relaxed();
 1841|  14.8k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 6.78k, False: 8.09k]
  ------------------
 1842|  6.78k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 6.78k, False: 0]
  ------------------
 1843|  6.78k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  6.78k|            .visit(v, std::forward<Args>(args)...);
 1845|  8.09k|    } else {
 1846|  8.09k|        return make_regular_sub_pos(node, shift, size)
 1847|  8.09k|            .visit(v, std::forward<Args>(args)...);
 1848|  8.09k|    }
 1849|  14.8k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_26concat_trees_right_visitorISC_EEJRNS1_15regular_sub_posISC_EERNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1813|  6.78k|    {
 1814|  6.78k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  6.78k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_26concat_trees_right_visitorISC_EEJRSD_RNS1_8leaf_posISC_EEEEEDcT_DpOT0_:
 1036|  8.09k|    {
 1037|  8.09k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  8.09k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21push_tail_mut_visitorISC_Lb1EEEJRNSA_5applyIS7_E4type4editERPSC_RjEEEDcT_DpOT0_:
 1813|  62.0k|    {
 1814|  62.0k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  62.0k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11last_oh_cshINS1_21push_tail_mut_visitorISC_Lb1EEEJRNSA_5applyIS7_E4type4editERPSC_RjEEEDcT_jmDpOT0_:
 1737|  56.5k|    {
 1738|  56.5k|        assert(offset_hint == count() - 1);
  ------------------
  |  Branch (1738:9): [True: 56.5k, False: 0]
  ------------------
 1739|  56.5k|        assert(child_size_hint == size(offset_hint));
  ------------------
  |  Branch (1739:9): [True: 56.5k, False: 0]
  ------------------
 1740|  56.5k|        auto child   = node_->inner()[offset_hint];
 1741|  56.5k|        auto is_leaf = shift_ == BL;
 1742|  56.5k|        return is_leaf
  ------------------
  |  Branch (1742:16): [True: 0, False: 56.5k]
  ------------------
 1743|  56.5k|                   ? make_leaf_sub_pos(child, child_size_hint).visit(v, args...)
 1744|  56.5k|                   : visit_maybe_relaxed_sub(
 1745|  56.5k|                         child, shift_ - B, child_size_hint, v, args...);
 1746|  56.5k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_21push_tail_mut_visitorISC_Lb1EEEJRNSA_5applyIS7_E4type4editERPSC_RjEEEDcPT_jmT0_DpOT1_:
 1838|  56.5k|{
 1839|  56.5k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 56.5k, False: 0]
  ------------------
 1840|  56.5k|    auto relaxed = node->relaxed();
 1841|  56.5k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 9.39k, False: 47.1k]
  ------------------
 1842|  9.39k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 9.39k, False: 0]
  ------------------
 1843|  9.39k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  9.39k|            .visit(v, std::forward<Args>(args)...);
 1845|  47.1k|    } else {
 1846|  47.1k|        return make_regular_sub_pos(node, shift, size)
 1847|  47.1k|            .visit(v, std::forward<Args>(args)...);
 1848|  47.1k|    }
 1849|  56.5k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21push_tail_mut_visitorISC_Lb1EEEJRNSA_5applyIS7_E4type4editERPSC_RjEEEDcT_DpOT0_:
 1036|  47.1k|    {
 1037|  47.1k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  47.1k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7last_ohINS1_21push_tail_mut_visitorISC_Lb1EEEJRNSA_5applyIS7_E4type4editERPSC_EEEDcT_jDpOT0_:
  952|   211k|    {
  953|   211k|        return last_oh_regular(*this, v, offset_hint, args...);
  954|   211k|    }
_ZN5immer6detail4rbts15last_oh_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21push_tail_mut_visitorISD_Lb1EEEJRNSB_5applyIS8_E4type4editERPSD_EEEDcOT_T0_jDpOT1_:
  677|   211k|{
  678|   211k|    assert(offset_hint == p.count() - 1);
  ------------------
  |  Branch (678:5): [True: 211k, False: 0]
  ------------------
  679|   211k|    constexpr auto B  = bits<Pos>;
  680|   211k|    constexpr auto BL = bits_leaf<Pos>;
  681|   211k|    auto child        = p.node()->inner()[offset_hint];
  682|   211k|    auto is_leaf      = p.shift() == BL;
  683|   211k|    return is_leaf ? make_leaf_pos(child, p.size()).visit(v, args...)
  ------------------
  |  Branch (683:12): [True: 0, False: 211k]
  ------------------
  684|   211k|                   : make_regular_pos(child, p.shift() - B, p.size())
  685|   211k|                         .visit(v, args...);
  686|   211k|}
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21push_tail_mut_visitorISC_Lb1EEEJRNSA_5applyIS7_E4type4editERPSC_EEEDcT_DpOT0_:
  336|   983k|    {
  337|   983k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|   983k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7last_ohINS1_21push_tail_mut_visitorISC_Lb1EEEJRNSA_5applyIS7_E4type4editERPSC_EEEDcT_jDpOT0_:
  330|   771k|    {
  331|   771k|        return last_oh_regular(*this, v, offset_hint, args...);
  332|   771k|    }
_ZN5immer6detail4rbts15last_oh_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21push_tail_mut_visitorISD_Lb1EEEJRNSB_5applyIS8_E4type4editERPSD_EEEDcOT_T0_jDpOT1_:
  677|   771k|{
  678|   771k|    assert(offset_hint == p.count() - 1);
  ------------------
  |  Branch (678:5): [True: 771k, False: 0]
  ------------------
  679|   771k|    constexpr auto B  = bits<Pos>;
  680|   771k|    constexpr auto BL = bits_leaf<Pos>;
  681|   771k|    auto child        = p.node()->inner()[offset_hint];
  682|   771k|    auto is_leaf      = p.shift() == BL;
  683|   771k|    return is_leaf ? make_leaf_pos(child, p.size()).visit(v, args...)
  ------------------
  |  Branch (683:12): [True: 0, False: 771k]
  ------------------
  684|   771k|                   : make_regular_pos(child, p.shift() - B, p.size())
  685|   771k|                         .visit(v, args...);
  686|   771k|}
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7last_ohINS1_21push_tail_mut_visitorISC_Lb0EEEJRNSA_5applyIS7_E4type4editERPSC_EEEDcT_jDpOT0_:
  330|  1.54k|    {
  331|  1.54k|        return last_oh_regular(*this, v, offset_hint, args...);
  332|  1.54k|    }
_ZN5immer6detail4rbts15last_oh_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21push_tail_mut_visitorISD_Lb0EEEJRNSB_5applyIS8_E4type4editERPSD_EEEDcOT_T0_jDpOT1_:
  677|  1.54k|{
  678|  1.54k|    assert(offset_hint == p.count() - 1);
  ------------------
  |  Branch (678:5): [True: 1.54k, False: 0]
  ------------------
  679|  1.54k|    constexpr auto B  = bits<Pos>;
  680|  1.54k|    constexpr auto BL = bits_leaf<Pos>;
  681|  1.54k|    auto child        = p.node()->inner()[offset_hint];
  682|  1.54k|    auto is_leaf      = p.shift() == BL;
  683|  1.54k|    return is_leaf ? make_leaf_pos(child, p.size()).visit(v, args...)
  ------------------
  |  Branch (683:12): [True: 0, False: 1.54k]
  ------------------
  684|  1.54k|                   : make_regular_pos(child, p.shift() - B, p.size())
  685|  1.54k|                         .visit(v, args...);
  686|  1.54k|}
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21push_tail_mut_visitorISC_Lb0EEEJRNSA_5applyIS7_E4type4editERPSC_EEEDcT_DpOT0_:
  336|  2.95k|    {
  337|  2.95k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  2.95k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7last_ohINS1_21push_tail_mut_visitorISC_Lb0EEEJRNSA_5applyIS7_E4type4editERPSC_EEEDcT_jDpOT0_:
  952|  1.41k|    {
  953|  1.41k|        return last_oh_regular(*this, v, offset_hint, args...);
  954|  1.41k|    }
_ZN5immer6detail4rbts15last_oh_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_21push_tail_mut_visitorISD_Lb0EEEJRNSB_5applyIS8_E4type4editERPSD_EEEDcOT_T0_jDpOT1_:
  677|  1.41k|{
  678|  1.41k|    assert(offset_hint == p.count() - 1);
  ------------------
  |  Branch (678:5): [True: 1.41k, False: 0]
  ------------------
  679|  1.41k|    constexpr auto B  = bits<Pos>;
  680|  1.41k|    constexpr auto BL = bits_leaf<Pos>;
  681|  1.41k|    auto child        = p.node()->inner()[offset_hint];
  682|  1.41k|    auto is_leaf      = p.shift() == BL;
  683|  1.41k|    return is_leaf ? make_leaf_pos(child, p.size()).visit(v, args...)
  ------------------
  |  Branch (683:12): [True: 0, False: 1.41k]
  ------------------
  684|  1.41k|                   : make_regular_pos(child, p.shift() - B, p.size())
  685|  1.41k|                         .visit(v, args...);
  686|  1.41k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE11last_oh_cshINS1_21push_tail_mut_visitorISC_Lb0EEEJRNSA_5applyIS7_E4type4editERPSC_RjEEEDcT_jmDpOT0_:
 1737|  7.99k|    {
 1738|  7.99k|        assert(offset_hint == count() - 1);
  ------------------
  |  Branch (1738:9): [True: 7.99k, False: 0]
  ------------------
 1739|  7.99k|        assert(child_size_hint == size(offset_hint));
  ------------------
  |  Branch (1739:9): [True: 7.99k, False: 0]
  ------------------
 1740|  7.99k|        auto child   = node_->inner()[offset_hint];
 1741|  7.99k|        auto is_leaf = shift_ == BL;
 1742|  7.99k|        return is_leaf
  ------------------
  |  Branch (1742:16): [True: 0, False: 7.99k]
  ------------------
 1743|  7.99k|                   ? make_leaf_sub_pos(child, child_size_hint).visit(v, args...)
 1744|  7.99k|                   : visit_maybe_relaxed_sub(
 1745|  7.99k|                         child, shift_ - B, child_size_hint, v, args...);
 1746|  7.99k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_21push_tail_mut_visitorISC_Lb0EEEJRNSA_5applyIS7_E4type4editERPSC_RjEEEDcPT_jmT0_DpOT1_:
 1838|  7.99k|{
 1839|  7.99k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 7.99k, False: 0]
  ------------------
 1840|  7.99k|    auto relaxed = node->relaxed();
 1841|  7.99k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 6.92k, False: 1.06k]
  ------------------
 1842|  6.92k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 6.92k, False: 0]
  ------------------
 1843|  6.92k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  6.92k|            .visit(v, std::forward<Args>(args)...);
 1845|  6.92k|    } else {
 1846|  1.06k|        return make_regular_sub_pos(node, shift, size)
 1847|  1.06k|            .visit(v, std::forward<Args>(args)...);
 1848|  1.06k|    }
 1849|  7.99k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21push_tail_mut_visitorISC_Lb0EEEJRNSA_5applyIS7_E4type4editERPSC_RjEEEDcT_DpOT0_:
 1813|  6.92k|    {
 1814|  6.92k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  6.92k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21push_tail_mut_visitorISC_Lb0EEEJRNSA_5applyIS7_E4type4editERPSC_RjEEEDcT_DpOT0_:
 1036|  1.06k|    {
 1037|  1.06k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.06k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_21push_tail_mut_visitorISC_Lb1EEEJRNSA_5applyIS7_E4type4editERPSC_EEEDcT_DpOT0_:
 1036|   170k|    {
 1037|   170k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|   170k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editEPPSC_EEEDcPT_jmT0_DpOT1_:
 1838|  41.0k|{
 1839|  41.0k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 41.0k, False: 0]
  ------------------
 1840|  41.0k|    auto relaxed = node->relaxed();
 1841|  41.0k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 36.7k, False: 4.29k]
  ------------------
 1842|  36.7k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 36.7k, False: 0]
  ------------------
 1843|  36.7k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  36.7k|            .visit(v, std::forward<Args>(args)...);
 1845|  36.7k|    } else {
 1846|  4.29k|        return make_regular_sub_pos(node, shift, size)
 1847|  4.29k|            .visit(v, std::forward<Args>(args)...);
 1848|  4.29k|    }
 1849|  41.0k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editEPPSC_EEEDcT_DpOT0_:
 1813|  36.7k|    {
 1814|  36.7k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  36.7k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_15get_mut_visitorISC_EEJRNSA_5applyIS7_E4type4editEPPSC_EEEDcT_mjDpOT0_:
 1686|  86.4k|    {
 1687|  86.4k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1687:9): [True: 86.4k, False: 0]
  ------------------
 1688|  86.4k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1688:26): [True: 34.9k, False: 51.5k]
  ------------------
 1689|  86.4k|        return towards_oh_sbh(v, idx, offset_hint, left_size, args...);
 1690|  86.4k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_oh_sbhINS1_15get_mut_visitorISC_EEJRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_mjmDpOT0_:
 1698|  86.4k|    {
 1699|  86.4k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size_hint, args...);
 1700|  86.4k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_15get_mut_visitorISC_EEJRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_mjmDpOT0_:
 1717|  86.4k|    {
 1718|  86.4k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 86.4k, False: 0]
  ------------------
 1719|  86.4k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 34.9k, False: 51.5k]
  |  Branch (1719:9): [True: 86.4k, False: 0]
  ------------------
 1720|  86.4k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  86.4k|        auto child     = node_->inner()[offset_hint];
 1722|  86.4k|        auto is_leaf   = shift_ == BL;
 1723|  86.4k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  86.4k|        auto next_idx  = idx - left_size_hint;
 1725|  86.4k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 33.3k, False: 53.1k]
  ------------------
 1726|  86.4k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  33.3k|                         .visit(v, next_idx, args...)
 1728|  86.4k|                   : visit_maybe_relaxed_sub(
 1729|  53.1k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  86.4k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_DpOT0_:
  144|  33.3k|    {
  145|  33.3k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  33.3k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editERPPSC_EEEDcPT_jmT0_DpOT1_:
 1838|  53.1k|{
 1839|  53.1k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 53.1k, False: 0]
  ------------------
 1840|  53.1k|    auto relaxed = node->relaxed();
 1841|  53.1k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 49.7k, False: 3.41k]
  ------------------
 1842|  49.7k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 49.7k, False: 0]
  ------------------
 1843|  49.7k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  49.7k|            .visit(v, std::forward<Args>(args)...);
 1845|  49.7k|    } else {
 1846|  3.41k|        return make_regular_sub_pos(node, shift, size)
 1847|  3.41k|            .visit(v, std::forward<Args>(args)...);
 1848|  3.41k|    }
 1849|  53.1k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_DpOT0_:
 1813|  49.7k|    {
 1814|  49.7k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  49.7k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_DpOT0_:
 1036|  3.41k|    {
 1037|  3.41k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  3.41k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13towards_oh_chINS1_15get_mut_visitorISC_EEJRNSA_5applyIS7_E4type4editEPPSC_EEEDcT_mjjDpOT0_:
  938|  7.71k|    {
  939|  7.71k|        return towards_oh_ch_regular(
  940|  7.71k|            *this, v, idx, offset_hint, count(), args...);
  941|  7.71k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_15get_mut_visitorISD_EEJRNSB_5applyIS8_E4type4editERPPSD_EEEDcOT_T0_mjjDpOT1_:
  632|  7.71k|{
  633|  7.71k|    constexpr auto B  = bits<Pos>;
  634|  7.71k|    constexpr auto BL = bits_leaf<Pos>;
  635|  7.71k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 7.71k, False: 0]
  ------------------
  636|  7.71k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 7.71k, False: 0]
  ------------------
  637|  7.71k|    auto is_leaf = p.shift() == BL;
  638|  7.71k|    auto child   = p.node()->inner()[offset_hint];
  639|  7.71k|    auto is_full = offset_hint + 1 != count_hint;
  640|  7.71k|    return is_full
  ------------------
  |  Branch (640:12): [True: 5.64k, False: 2.07k]
  ------------------
  641|  7.71k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 1.64k, False: 3.99k]
  ------------------
  642|  5.64k|                          : make_full_pos(child, p.shift() - B)
  643|  3.99k|                                .visit(v, idx, args...))
  644|  7.71k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 447, False: 1.62k]
  ------------------
  645|  2.07k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  2.07k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|  1.62k|                            .visit(v, idx, args...));
  648|  7.71k|}
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_DpOT0_:
  207|  6.57k|    {
  208|  6.57k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  6.57k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_DpOT0_:
 1405|  5.42k|    {
 1406|  5.42k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  5.42k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13towards_oh_chINS1_15get_mut_visitorISC_EEJRNSA_5applyIS7_E4type4editEPPSC_EEEDcT_mjjDpOT0_:
 1329|  5.42k|    {
 1330|  5.42k|        return towards_oh(v, idx, offset_hint, args...);
 1331|  5.42k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_15get_mut_visitorISC_EEJRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_mjDpOT0_:
 1336|  5.42k|    {
 1337|  5.42k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1337:9): [True: 5.42k, False: 0]
  ------------------
 1338|  5.42k|        auto is_leaf = shift_ == BL;
 1339|  5.42k|        auto child   = node_->inner()[offset_hint];
 1340|  5.42k|        return is_leaf
  ------------------
  |  Branch (1340:16): [True: 4.37k, False: 1.05k]
  ------------------
 1341|  5.42k|                   ? make_full_leaf_pos(child).visit(v, idx, args...)
 1342|  5.42k|                   : make_full_pos(child, shift_ - B).visit(v, idx, args...);
 1343|  5.42k|    }
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_DpOT0_:
  112|  1.13k|    {
  113|  1.13k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|  1.13k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editERPPSC_EEEDcT_DpOT0_:
  336|  2.17k|    {
  337|  2.17k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  2.17k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13towards_oh_chINS1_15get_mut_visitorISC_EEJRNSA_5applyIS7_E4type4editEPPSC_EEEDcT_mjjDpOT0_:
  316|  2.17k|    {
  317|  2.17k|        return towards_oh_ch_regular(
  318|  2.17k|            *this, v, idx, offset_hint, count(), args...);
  319|  2.17k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_15get_mut_visitorISD_EEJRNSB_5applyIS8_E4type4editERPPSD_EEEDcOT_T0_mjjDpOT1_:
  632|  2.17k|{
  633|  2.17k|    constexpr auto B  = bits<Pos>;
  634|  2.17k|    constexpr auto BL = bits_leaf<Pos>;
  635|  2.17k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 2.17k, False: 0]
  ------------------
  636|  2.17k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 2.17k, False: 0]
  ------------------
  637|  2.17k|    auto is_leaf = p.shift() == BL;
  638|  2.17k|    auto child   = p.node()->inner()[offset_hint];
  639|  2.17k|    auto is_full = offset_hint + 1 != count_hint;
  640|  2.17k|    return is_full
  ------------------
  |  Branch (640:12): [True: 933, False: 1.23k]
  ------------------
  641|  2.17k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 552, False: 381]
  ------------------
  642|    933|                          : make_full_pos(child, p.shift() - B)
  643|    381|                                .visit(v, idx, args...))
  644|  2.17k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 690, False: 548]
  ------------------
  645|  1.23k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  1.23k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|    548|                            .visit(v, idx, args...));
  648|  2.17k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_15get_mut_visitorISC_EEJRmRNSA_5applyIS7_E4type4editEPPSC_EEEDcT_DpOT0_:
 1036|  4.29k|    {
 1037|  4.29k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  4.29k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcPT_jmT0_DpOT1_:
 1838|  61.4k|{
 1839|  61.4k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 61.4k, False: 0]
  ------------------
 1840|  61.4k|    auto relaxed = node->relaxed();
 1841|  61.4k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 48.9k, False: 12.5k]
  ------------------
 1842|  48.9k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 48.9k, False: 0]
  ------------------
 1843|  48.9k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  48.9k|            .visit(v, std::forward<Args>(args)...);
 1845|  48.9k|    } else {
 1846|  12.5k|        return make_regular_sub_pos(node, shift, size)
 1847|  12.5k|            .visit(v, std::forward<Args>(args)...);
 1848|  12.5k|    }
 1849|  61.4k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1813|  48.9k|    {
 1814|  48.9k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  48.9k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1686|  25.3k|    {
 1687|  25.3k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1687:9): [True: 25.3k, False: 0]
  ------------------
 1688|  25.3k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1688:26): [True: 0, False: 25.3k]
  ------------------
 1689|  25.3k|        return towards_oh_sbh(v, idx, offset_hint, left_size, args...);
 1690|  25.3k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_oh_sbhINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1698|  25.3k|    {
 1699|  25.3k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size_hint, args...);
 1700|  25.3k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1717|  25.3k|    {
 1718|  25.3k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 25.3k, False: 0]
  ------------------
 1719|  25.3k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 0, False: 25.3k]
  |  Branch (1719:9): [True: 25.3k, False: 0]
  ------------------
 1720|  25.3k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  25.3k|        auto child     = node_->inner()[offset_hint];
 1722|  25.3k|        auto is_leaf   = shift_ == BL;
 1723|  25.3k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  25.3k|        auto next_idx  = idx - left_size_hint;
 1725|  25.3k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 1.06k, False: 24.3k]
  ------------------
 1726|  25.3k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  1.06k|                         .visit(v, next_idx, args...)
 1728|  25.3k|                   : visit_maybe_relaxed_sub(
 1729|  24.3k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  25.3k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  144|  1.06k|    {
  145|  1.06k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  1.06k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1686|  19.9k|    {
 1687|  19.9k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1687:9): [True: 19.9k, False: 0]
  ------------------
 1688|  19.9k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1688:26): [True: 0, False: 19.9k]
  ------------------
 1689|  19.9k|        return towards_oh_sbh(v, idx, offset_hint, left_size, args...);
 1690|  19.9k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_oh_sbhINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1698|  19.9k|    {
 1699|  19.9k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size_hint, args...);
 1700|  19.9k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1717|  19.9k|    {
 1718|  19.9k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 19.9k, False: 0]
  ------------------
 1719|  19.9k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 0, False: 19.9k]
  |  Branch (1719:9): [True: 19.9k, False: 0]
  ------------------
 1720|  19.9k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  19.9k|        auto child     = node_->inner()[offset_hint];
 1722|  19.9k|        auto is_leaf   = shift_ == BL;
 1723|  19.9k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  19.9k|        auto next_idx  = idx - left_size_hint;
 1725|  19.9k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 761, False: 19.2k]
  ------------------
 1726|  19.9k|                   ? make_leaf_sub_pos(child, next_size)
 1727|    761|                         .visit(v, next_idx, args...)
 1728|  19.9k|                   : visit_maybe_relaxed_sub(
 1729|  19.2k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  19.9k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  144|    761|    {
  145|    761|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|    761|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcPT_jmT0_DpOT1_:
 1838|  19.2k|{
 1839|  19.2k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 19.2k, False: 0]
  ------------------
 1840|  19.2k|    auto relaxed = node->relaxed();
 1841|  19.2k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 17.7k, False: 1.43k]
  ------------------
 1842|  17.7k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 17.7k, False: 0]
  ------------------
 1843|  17.7k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  17.7k|            .visit(v, std::forward<Args>(args)...);
 1845|  17.7k|    } else {
 1846|  1.43k|        return make_regular_sub_pos(node, shift, size)
 1847|  1.43k|            .visit(v, std::forward<Args>(args)...);
 1848|  1.43k|    }
 1849|  19.2k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1813|  17.7k|    {
 1814|  17.7k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  17.7k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  1.43k|    {
 1037|  1.43k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.43k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  927|  2.46k|    {
  928|  2.46k|        return towards_oh_ch_regular(
  929|  2.46k|            *this, v, idx, offset_hint, count(), args...);
  930|  2.46k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_23slice_right_mut_visitorISD_Lb1ELb0EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjjDpOT1_:
  632|  2.46k|{
  633|  2.46k|    constexpr auto B  = bits<Pos>;
  634|  2.46k|    constexpr auto BL = bits_leaf<Pos>;
  635|  2.46k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 2.46k, False: 0]
  ------------------
  636|  2.46k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 2.46k, False: 0]
  ------------------
  637|  2.46k|    auto is_leaf = p.shift() == BL;
  638|  2.46k|    auto child   = p.node()->inner()[offset_hint];
  639|  2.46k|    auto is_full = offset_hint + 1 != count_hint;
  640|  2.46k|    return is_full
  ------------------
  |  Branch (640:12): [True: 2.05k, False: 405]
  ------------------
  641|  2.46k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 708, False: 1.34k]
  ------------------
  642|  2.05k|                          : make_full_pos(child, p.shift() - B)
  643|  1.34k|                                .visit(v, idx, args...))
  644|  2.46k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 405, False: 0]
  ------------------
  645|    405|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|    405|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|      0|                            .visit(v, idx, args...));
  648|  2.46k|}
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  207|  1.42k|    {
  208|  1.42k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  1.42k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1405|  1.84k|    {
 1406|  1.84k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  1.84k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1336|  1.21k|    {
 1337|  1.21k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1337:9): [True: 1.21k, False: 0]
  ------------------
 1338|  1.21k|        auto is_leaf = shift_ == BL;
 1339|  1.21k|        auto child   = node_->inner()[offset_hint];
 1340|  1.21k|        return is_leaf
  ------------------
  |  Branch (1340:16): [True: 718, False: 496]
  ------------------
 1341|  1.21k|                   ? make_full_leaf_pos(child).visit(v, idx, args...)
 1342|  1.21k|                   : make_full_pos(child, shift_ - B).visit(v, idx, args...);
 1343|  1.21k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1336|  3.55k|    {
 1337|  3.55k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1337:9): [True: 3.55k, False: 0]
  ------------------
 1338|  3.55k|        auto is_leaf = shift_ == BL;
 1339|  3.55k|        auto child   = node_->inner()[offset_hint];
 1340|  3.55k|        return is_leaf
  ------------------
  |  Branch (1340:16): [True: 2.09k, False: 1.46k]
  ------------------
 1341|  3.55k|                   ? make_full_leaf_pos(child).visit(v, idx, args...)
 1342|  3.55k|                   : make_full_pos(child, shift_ - B).visit(v, idx, args...);
 1343|  3.55k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  207|  6.53k|    {
  208|  6.53k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  6.53k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1405|  4.90k|    {
 1406|  4.90k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  4.90k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_17dec_right_visitorEJjEEEDcT_DpOT0_:
 1405|  3.39k|    {
 1406|  3.39k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  3.39k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1336|  8.23k|    {
 1337|  8.23k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1337:9): [True: 8.23k, False: 0]
  ------------------
 1338|  8.23k|        auto is_leaf = shift_ == BL;
 1339|  8.23k|        auto child   = node_->inner()[offset_hint];
 1340|  8.23k|        return is_leaf
  ------------------
  |  Branch (1340:16): [True: 6.76k, False: 1.47k]
  ------------------
 1341|  8.23k|                   ? make_full_leaf_pos(child).visit(v, idx, args...)
 1342|  8.23k|                   : make_full_pos(child, shift_ - B).visit(v, idx, args...);
 1343|  8.23k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  207|  10.8k|    {
  208|  10.8k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  10.8k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1405|  3.24k|    {
 1406|  3.24k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  3.24k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10each_rightINS1_11dec_visitorEJEEEvT_jDpOT0_:
 1310|  4.37k|    {
 1311|  4.37k|        each_i(v, start, branches<B>, args...);
 1312|  4.37k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE6each_iINS1_11dec_visitorEJEEEvT_jjDpOT0_:
 1263|  6.60k|    {
 1264|  6.60k|        auto p = node_->inner() + i;
 1265|  6.60k|        auto e = node_->inner() + n;
 1266|  6.60k|        if (shift_ == BL) {
  ------------------
  |  Branch (1266:13): [True: 3.75k, False: 2.84k]
  ------------------
 1267|  11.0k|            for (; p != e; ++p) {
  ------------------
  |  Branch (1267:20): [True: 7.34k, False: 3.75k]
  ------------------
 1268|  7.34k|                IMMER_PREFETCH(p + 1);
 1269|  7.34k|                make_full_leaf_pos(*p).visit(v, args...);
 1270|  7.34k|            }
 1271|  3.75k|        } else {
 1272|  2.84k|            auto ss = shift_ - B;
 1273|  8.76k|            for (; p != e; ++p)
  ------------------
  |  Branch (1273:20): [True: 5.91k, False: 2.84k]
  ------------------
 1274|  5.91k|                make_full_pos(*p, ss).visit(v, args...);
 1275|  2.84k|        }
 1276|  6.60k|    }
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  112|    405|    {
  113|    405|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|    405|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  305|  5.51k|    {
  306|  5.51k|        return towards_oh_ch_regular(
  307|  5.51k|            *this, v, idx, offset_hint, count(), args...);
  308|  5.51k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_23slice_right_mut_visitorISD_Lb0ELb1EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjjDpOT1_:
  632|  5.51k|{
  633|  5.51k|    constexpr auto B  = bits<Pos>;
  634|  5.51k|    constexpr auto BL = bits_leaf<Pos>;
  635|  5.51k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 5.51k, False: 0]
  ------------------
  636|  5.51k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 5.51k, False: 0]
  ------------------
  637|  5.51k|    auto is_leaf = p.shift() == BL;
  638|  5.51k|    auto child   = p.node()->inner()[offset_hint];
  639|  5.51k|    auto is_full = offset_hint + 1 != count_hint;
  640|  5.51k|    return is_full
  ------------------
  |  Branch (640:12): [True: 2.77k, False: 2.74k]
  ------------------
  641|  5.51k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 1.61k, False: 1.16k]
  ------------------
  642|  2.77k|                          : make_full_pos(child, p.shift() - B)
  643|  1.16k|                                .visit(v, idx, args...))
  644|  5.51k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 1.21k, False: 1.52k]
  ------------------
  645|  2.74k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  2.74k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|  1.52k|                            .visit(v, idx, args...));
  648|  5.51k|}
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  112|  2.39k|    {
  113|  2.39k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|  2.39k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  336|  6.13k|    {
  337|  6.13k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  6.13k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_17dec_right_visitorEJjEEEDcT_DpOT0_:
  336|  3.90k|    {
  337|  3.90k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  3.90k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  305|  3.96k|    {
  306|  3.96k|        return towards_oh_ch_regular(
  307|  3.96k|            *this, v, idx, offset_hint, count(), args...);
  308|  3.96k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_23slice_right_mut_visitorISD_Lb0ELb0EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjjDpOT1_:
  632|  3.96k|{
  633|  3.96k|    constexpr auto B  = bits<Pos>;
  634|  3.96k|    constexpr auto BL = bits_leaf<Pos>;
  635|  3.96k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 3.96k, False: 0]
  ------------------
  636|  3.96k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 3.96k, False: 0]
  ------------------
  637|  3.96k|    auto is_leaf = p.shift() == BL;
  638|  3.96k|    auto child   = p.node()->inner()[offset_hint];
  639|  3.96k|    auto is_full = offset_hint + 1 != count_hint;
  640|  3.96k|    return is_full
  ------------------
  |  Branch (640:12): [True: 1.21k, False: 2.75k]
  ------------------
  641|  3.96k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 784, False: 432]
  ------------------
  642|  1.21k|                          : make_full_pos(child, p.shift() - B)
  643|    432|                                .visit(v, idx, args...))
  644|  3.96k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 1.75k, False: 999]
  ------------------
  645|  2.75k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  2.75k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|    999|                            .visit(v, idx, args...));
  648|  3.96k|}
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  112|  2.62k|    {
  113|  2.62k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|  2.62k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  336|  3.35k|    {
  337|  3.35k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  3.35k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10each_rightINS1_11dec_visitorEJEEEvT_jDpOT0_:
  285|  5.51k|    {
  286|  5.51k|        return each_right_regular(*this, v, start, args...);
  287|  5.51k|    }
_ZN5immer6detail4rbts18each_right_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_11dec_visitorEJEEEvOT_T0_jDpOT1_:
  597|  5.51k|{
  598|  5.51k|    constexpr auto B  = bits<Pos>;
  599|  5.51k|    constexpr auto BL = bits_leaf<Pos>;
  600|       |
  601|  5.51k|    if (p.shift() == BL) {
  ------------------
  |  Branch (601:9): [True: 2.82k, False: 2.68k]
  ------------------
  602|  2.82k|        auto n    = p.node()->inner() + start;
  603|  2.82k|        auto last = p.count() - 1;
  604|  2.82k|        auto e    = p.node()->inner() + last;
  605|  2.82k|        if (n <= e) {
  ------------------
  |  Branch (605:13): [True: 1.61k, False: 1.21k]
  ------------------
  606|  2.86k|            for (; n != e; ++n) {
  ------------------
  |  Branch (606:20): [True: 1.25k, False: 1.61k]
  ------------------
  607|  1.25k|                IMMER_PREFETCH(n + 1);
  608|  1.25k|                make_full_leaf_pos(*n).visit(v, args...);
  609|  1.25k|            }
  610|  1.61k|            make_leaf_pos(*n, p.size()).visit(v, args...);
  611|  1.61k|        }
  612|  2.82k|    } else {
  613|  2.68k|        auto n    = p.node()->inner() + start;
  614|  2.68k|        auto last = p.count() - 1;
  615|  2.68k|        auto e    = p.node()->inner() + last;
  616|  2.68k|        auto ss   = p.shift() - B;
  617|  2.68k|        if (n <= e) {
  ------------------
  |  Branch (617:13): [True: 1.16k, False: 1.52k]
  ------------------
  618|  2.37k|            for (; n != e; ++n)
  ------------------
  |  Branch (618:20): [True: 1.21k, False: 1.16k]
  ------------------
  619|  1.21k|                make_full_pos(*n, ss).visit(v, args...);
  620|  1.16k|            make_regular_pos(*n, ss, p.size()).visit(v, args...);
  621|  1.16k|        }
  622|  2.68k|    }
  623|  5.51k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  927|  10.8k|    {
  928|  10.8k|        return towards_oh_ch_regular(
  929|  10.8k|            *this, v, idx, offset_hint, count(), args...);
  930|  10.8k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_23slice_right_mut_visitorISD_Lb0ELb1EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjjDpOT1_:
  632|  10.8k|{
  633|  10.8k|    constexpr auto B  = bits<Pos>;
  634|  10.8k|    constexpr auto BL = bits_leaf<Pos>;
  635|  10.8k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 10.8k, False: 0]
  ------------------
  636|  10.8k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 10.8k, False: 0]
  ------------------
  637|  10.8k|    auto is_leaf = p.shift() == BL;
  638|  10.8k|    auto child   = p.node()->inner()[offset_hint];
  639|  10.8k|    auto is_full = offset_hint + 1 != count_hint;
  640|  10.8k|    return is_full
  ------------------
  |  Branch (640:12): [True: 5.11k, False: 5.78k]
  ------------------
  641|  10.8k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 2.83k, False: 2.28k]
  ------------------
  642|  5.11k|                          : make_full_pos(child, p.shift() - B)
  643|  2.28k|                                .visit(v, idx, args...))
  644|  10.8k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 1.18k, False: 4.60k]
  ------------------
  645|  5.78k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  5.78k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|  4.60k|                            .visit(v, idx, args...));
  648|  10.8k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  927|  7.86k|    {
  928|  7.86k|        return towards_oh_ch_regular(
  929|  7.86k|            *this, v, idx, offset_hint, count(), args...);
  930|  7.86k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_23slice_right_mut_visitorISD_Lb0ELb0EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjjDpOT1_:
  632|  7.86k|{
  633|  7.86k|    constexpr auto B  = bits<Pos>;
  634|  7.86k|    constexpr auto BL = bits_leaf<Pos>;
  635|  7.86k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 7.86k, False: 0]
  ------------------
  636|  7.86k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 7.86k, False: 0]
  ------------------
  637|  7.86k|    auto is_leaf = p.shift() == BL;
  638|  7.86k|    auto child   = p.node()->inner()[offset_hint];
  639|  7.86k|    auto is_full = offset_hint + 1 != count_hint;
  640|  7.86k|    return is_full
  ------------------
  |  Branch (640:12): [True: 4.63k, False: 3.22k]
  ------------------
  641|  7.86k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 3.29k, False: 1.34k]
  ------------------
  642|  4.63k|                          : make_full_pos(child, p.shift() - B)
  643|  1.34k|                                .visit(v, idx, args...))
  644|  7.86k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 875, False: 2.35k]
  ------------------
  645|  3.22k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  3.22k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|  2.35k|                            .visit(v, idx, args...));
  648|  7.86k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10each_rightINS1_11dec_visitorEJEEEvT_jDpOT0_:
  867|  16.1k|    {
  868|  16.1k|        return each_right_regular(*this, v, start, args...);
  869|  16.1k|    }
_ZN5immer6detail4rbts18each_right_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_11dec_visitorEJEEEvOT_T0_jDpOT1_:
  597|  16.1k|{
  598|  16.1k|    constexpr auto B  = bits<Pos>;
  599|  16.1k|    constexpr auto BL = bits_leaf<Pos>;
  600|       |
  601|  16.1k|    if (p.shift() == BL) {
  ------------------
  |  Branch (601:9): [True: 5.86k, False: 10.3k]
  ------------------
  602|  5.86k|        auto n    = p.node()->inner() + start;
  603|  5.86k|        auto last = p.count() - 1;
  604|  5.86k|        auto e    = p.node()->inner() + last;
  605|  5.86k|        if (n <= e) {
  ------------------
  |  Branch (605:13): [True: 4.04k, False: 1.81k]
  ------------------
  606|  7.37k|            for (; n != e; ++n) {
  ------------------
  |  Branch (606:20): [True: 3.32k, False: 4.04k]
  ------------------
  607|  3.32k|                IMMER_PREFETCH(n + 1);
  608|  3.32k|                make_full_leaf_pos(*n).visit(v, args...);
  609|  3.32k|            }
  610|  4.04k|            make_leaf_pos(*n, p.size()).visit(v, args...);
  611|  4.04k|        }
  612|  10.3k|    } else {
  613|  10.3k|        auto n    = p.node()->inner() + start;
  614|  10.3k|        auto last = p.count() - 1;
  615|  10.3k|        auto e    = p.node()->inner() + last;
  616|  10.3k|        auto ss   = p.shift() - B;
  617|  10.3k|        if (n <= e) {
  ------------------
  |  Branch (617:13): [True: 5.72k, False: 4.60k]
  ------------------
  618|  8.41k|            for (; n != e; ++n)
  ------------------
  |  Branch (618:20): [True: 2.69k, False: 5.72k]
  ------------------
  619|  2.69k|                make_full_pos(*n, ss).visit(v, args...);
  620|  5.72k|            make_regular_pos(*n, ss, p.size()).visit(v, args...);
  621|  5.72k|        }
  622|  10.3k|    }
  623|  16.1k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_17dec_right_visitorEJjEEEDcT_DpOT0_:
 1813|  35.0k|    {
 1814|  35.0k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  35.0k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1686|  24.8k|    {
 1687|  24.8k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1687:9): [True: 24.8k, False: 0]
  ------------------
 1688|  24.8k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1688:26): [True: 19.4k, False: 5.36k]
  ------------------
 1689|  24.8k|        return towards_oh_sbh(v, idx, offset_hint, left_size, args...);
 1690|  24.8k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_oh_sbhINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1698|  24.8k|    {
 1699|  24.8k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size_hint, args...);
 1700|  24.8k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1717|  24.8k|    {
 1718|  24.8k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 24.8k, False: 0]
  ------------------
 1719|  24.8k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 19.4k, False: 5.36k]
  |  Branch (1719:9): [True: 24.8k, False: 0]
  ------------------
 1720|  24.8k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  24.8k|        auto child     = node_->inner()[offset_hint];
 1722|  24.8k|        auto is_leaf   = shift_ == BL;
 1723|  24.8k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  24.8k|        auto next_idx  = idx - left_size_hint;
 1725|  24.8k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 3.72k, False: 21.0k]
  ------------------
 1726|  24.8k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  3.72k|                         .visit(v, next_idx, args...)
 1728|  24.8k|                   : visit_maybe_relaxed_sub(
 1729|  21.0k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  24.8k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  144|  3.72k|    {
  145|  3.72k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  3.72k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcPT_jmT0_DpOT1_:
 1838|  21.0k|{
 1839|  21.0k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 21.0k, False: 0]
  ------------------
 1840|  21.0k|    auto relaxed = node->relaxed();
 1841|  21.0k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 12.7k, False: 8.32k]
  ------------------
 1842|  12.7k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 12.7k, False: 0]
  ------------------
 1843|  12.7k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  12.7k|            .visit(v, std::forward<Args>(args)...);
 1845|  12.7k|    } else {
 1846|  8.32k|        return make_regular_sub_pos(node, shift, size)
 1847|  8.32k|            .visit(v, std::forward<Args>(args)...);
 1848|  8.32k|    }
 1849|  21.0k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1813|  12.7k|    {
 1814|  12.7k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  12.7k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  8.32k|    {
 1037|  8.32k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  8.32k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_17dec_right_visitorEJjEEEDcT_DpOT0_:
 1036|  10.7k|    {
 1037|  10.7k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  10.7k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1686|  16.0k|    {
 1687|  16.0k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1687:9): [True: 16.0k, False: 0]
  ------------------
 1688|  16.0k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1688:26): [True: 8.99k, False: 7.01k]
  ------------------
 1689|  16.0k|        return towards_oh_sbh(v, idx, offset_hint, left_size, args...);
 1690|  16.0k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_oh_sbhINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1698|  16.0k|    {
 1699|  16.0k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size_hint, args...);
 1700|  16.0k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1717|  16.0k|    {
 1718|  16.0k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 16.0k, False: 0]
  ------------------
 1719|  16.0k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 8.99k, False: 7.01k]
  |  Branch (1719:9): [True: 16.0k, False: 0]
  ------------------
 1720|  16.0k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  16.0k|        auto child     = node_->inner()[offset_hint];
 1722|  16.0k|        auto is_leaf   = shift_ == BL;
 1723|  16.0k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  16.0k|        auto next_idx  = idx - left_size_hint;
 1725|  16.0k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 5.09k, False: 10.9k]
  ------------------
 1726|  16.0k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  5.09k|                         .visit(v, next_idx, args...)
 1728|  16.0k|                   : visit_maybe_relaxed_sub(
 1729|  10.9k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  16.0k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  144|  5.09k|    {
  145|  5.09k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  5.09k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcPT_jmT0_DpOT1_:
 1838|  10.9k|{
 1839|  10.9k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 10.9k, False: 0]
  ------------------
 1840|  10.9k|    auto relaxed = node->relaxed();
 1841|  10.9k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 6.68k, False: 4.23k]
  ------------------
 1842|  6.68k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 6.68k, False: 0]
  ------------------
 1843|  6.68k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  6.68k|            .visit(v, std::forward<Args>(args)...);
 1845|  6.68k|    } else {
 1846|  4.23k|        return make_regular_sub_pos(node, shift, size)
 1847|  4.23k|            .visit(v, std::forward<Args>(args)...);
 1848|  4.23k|    }
 1849|  10.9k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1813|  6.68k|    {
 1814|  6.68k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  6.68k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  4.23k|    {
 1037|  4.23k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  4.23k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10each_rightINS1_11dec_visitorEJEEEvT_jDpOT0_:
 1653|  50.1k|    {
 1654|  50.1k|        assert(start > 0);
  ------------------
  |  Branch (1654:9): [True: 50.1k, False: 0]
  ------------------
 1655|  50.1k|        assert(start <= relaxed_->d.count);
  ------------------
  |  Branch (1655:9): [True: 50.1k, False: 0]
  ------------------
 1656|  50.1k|        auto s = relaxed_->d.sizes[start - 1];
 1657|  50.1k|        auto p = node_->inner();
 1658|  50.1k|        if (shift_ == BL) {
  ------------------
  |  Branch (1658:13): [True: 4.78k, False: 45.3k]
  ------------------
 1659|  12.4k|            for (auto i = start; i < relaxed_->d.count; ++i) {
  ------------------
  |  Branch (1659:34): [True: 7.69k, False: 4.78k]
  ------------------
 1660|  7.69k|                IMMER_PREFETCH(p + i + 1);
 1661|  7.69k|                make_leaf_sub_pos(p[i], relaxed_->d.sizes[i] - s)
 1662|  7.69k|                    .visit(v, args...);
 1663|  7.69k|                s = relaxed_->d.sizes[i];
 1664|  7.69k|                assert(s);
  ------------------
  |  Branch (1664:17): [True: 7.69k, False: 0]
  ------------------
 1665|  7.69k|            }
 1666|  45.3k|        } else {
 1667|  45.3k|            auto ss = shift_ - B;
 1668|   134k|            for (auto i = start; i < relaxed_->d.count; ++i) {
  ------------------
  |  Branch (1668:34): [True: 89.5k, False: 45.3k]
  ------------------
 1669|  89.5k|                visit_maybe_relaxed_sub(
 1670|  89.5k|                    p[i], ss, relaxed_->d.sizes[i] - s, v, args...);
 1671|  89.5k|                s = relaxed_->d.sizes[i];
 1672|       |                assert(s);
  ------------------
  |  Branch (1672:17): [True: 89.5k, False: 0]
  ------------------
 1673|  89.5k|            }
 1674|  45.3k|        }
 1675|  50.1k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  12.5k|    {
 1037|  12.5k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  12.5k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  927|  5.29k|    {
  928|  5.29k|        return towards_oh_ch_regular(
  929|  5.29k|            *this, v, idx, offset_hint, count(), args...);
  930|  5.29k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_23slice_right_mut_visitorISD_Lb1ELb1EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjjDpOT1_:
  632|  5.29k|{
  633|  5.29k|    constexpr auto B  = bits<Pos>;
  634|  5.29k|    constexpr auto BL = bits_leaf<Pos>;
  635|  5.29k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 5.29k, False: 0]
  ------------------
  636|  5.29k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 5.29k, False: 0]
  ------------------
  637|  5.29k|    auto is_leaf = p.shift() == BL;
  638|  5.29k|    auto child   = p.node()->inner()[offset_hint];
  639|  5.29k|    auto is_full = offset_hint + 1 != count_hint;
  640|  5.29k|    return is_full
  ------------------
  |  Branch (640:12): [True: 4.65k, False: 636]
  ------------------
  641|  5.29k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 1.21k, False: 3.44k]
  ------------------
  642|  4.65k|                          : make_full_pos(child, p.shift() - B)
  643|  3.44k|                                .visit(v, idx, args...))
  644|  5.29k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 636, False: 0]
  ------------------
  645|    636|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|    636|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|      0|                            .visit(v, idx, args...));
  648|  5.29k|}
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  207|  1.64k|    {
  208|  1.64k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  1.64k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1405|  3.83k|    {
 1406|  3.83k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  3.83k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1336|    819|    {
 1337|    819|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1337:9): [True: 819, False: 0]
  ------------------
 1338|    819|        auto is_leaf = shift_ == BL;
 1339|    819|        auto child   = node_->inner()[offset_hint];
 1340|    819|        return is_leaf
  ------------------
  |  Branch (1340:16): [True: 430, False: 389]
  ------------------
 1341|    819|                   ? make_full_leaf_pos(child).visit(v, idx, args...)
 1342|    819|                   : make_full_pos(child, shift_ - B).visit(v, idx, args...);
 1343|    819|    }
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_23slice_right_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  112|    636|    {
  113|    636|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|    636|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  144|    708|    {
  145|    708|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|    708|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcPT_jmT0_DpOT1_:
 1838|  42.4k|{
 1839|  42.4k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 42.4k, False: 0]
  ------------------
 1840|  42.4k|    auto relaxed = node->relaxed();
 1841|  42.4k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 33.9k, False: 8.54k]
  ------------------
 1842|  33.9k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 33.9k, False: 0]
  ------------------
 1843|  33.9k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  33.9k|            .visit(v, std::forward<Args>(args)...);
 1845|  33.9k|    } else {
 1846|  8.54k|        return make_regular_sub_pos(node, shift, size)
 1847|  8.54k|            .visit(v, std::forward<Args>(args)...);
 1848|  8.54k|    }
 1849|  42.4k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1813|  33.9k|    {
 1814|  33.9k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  33.9k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1705|  5.72k|    {
 1706|  5.72k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1706:9): [True: 5.72k, False: 0]
  ------------------
 1707|  5.72k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1707:26): [True: 4.96k, False: 758]
  ------------------
 1708|  5.72k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size, args...);
 1709|  5.72k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1717|  5.72k|    {
 1718|  5.72k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 5.72k, False: 0]
  ------------------
 1719|  5.72k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 4.96k, False: 758]
  |  Branch (1719:9): [True: 5.72k, False: 0]
  ------------------
 1720|  5.72k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  5.72k|        auto child     = node_->inner()[offset_hint];
 1722|  5.72k|        auto is_leaf   = shift_ == BL;
 1723|  5.72k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  5.72k|        auto next_idx  = idx - left_size_hint;
 1725|  5.72k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 0, False: 5.72k]
  ------------------
 1726|  5.72k|                   ? make_leaf_sub_pos(child, next_size)
 1727|      0|                         .visit(v, next_idx, args...)
 1728|  5.72k|                   : visit_maybe_relaxed_sub(
 1729|  5.72k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  5.72k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb1ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1705|  4.44k|    {
 1706|  4.44k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1706:9): [True: 4.44k, False: 0]
  ------------------
 1707|  4.44k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1707:26): [True: 3.80k, False: 639]
  ------------------
 1708|  4.44k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size, args...);
 1709|  4.44k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_22slice_left_mut_visitorISC_Lb1ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1717|  4.44k|    {
 1718|  4.44k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 4.44k, False: 0]
  ------------------
 1719|  4.44k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 3.80k, False: 639]
  |  Branch (1719:9): [True: 4.44k, False: 0]
  ------------------
 1720|  4.44k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  4.44k|        auto child     = node_->inner()[offset_hint];
 1722|  4.44k|        auto is_leaf   = shift_ == BL;
 1723|  4.44k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  4.44k|        auto next_idx  = idx - left_size_hint;
 1725|  4.44k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 0, False: 4.44k]
  ------------------
 1726|  4.44k|                   ? make_leaf_sub_pos(child, next_size)
 1727|      0|                         .visit(v, next_idx, args...)
 1728|  4.44k|                   : visit_maybe_relaxed_sub(
 1729|  4.44k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  4.44k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_22slice_left_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcPT_jmT0_DpOT1_:
 1838|  4.44k|{
 1839|  4.44k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 4.44k, False: 0]
  ------------------
 1840|  4.44k|    auto relaxed = node->relaxed();
 1841|  4.44k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 2.72k, False: 1.71k]
  ------------------
 1842|  2.72k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 2.72k, False: 0]
  ------------------
 1843|  2.72k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  2.72k|            .visit(v, std::forward<Args>(args)...);
 1845|  2.72k|    } else {
 1846|  1.71k|        return make_regular_sub_pos(node, shift, size)
 1847|  1.71k|            .visit(v, std::forward<Args>(args)...);
 1848|  1.71k|    }
 1849|  4.44k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1813|  2.72k|    {
 1814|  2.72k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  2.72k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb1ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  1.71k|    {
 1037|  1.71k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.71k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb1ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  946|  2.35k|    {
  947|  2.35k|        return towards_sub_oh_regular(*this, v, idx, offset_hint, args...);
  948|  2.35k|    }
_ZN5immer6detail4rbts22towards_sub_oh_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_22slice_left_mut_visitorISD_Lb1ELb0EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjDpOT1_:
  653|  2.35k|{
  654|  2.35k|    constexpr auto B  = bits<Pos>;
  655|  2.35k|    constexpr auto BL = bits_leaf<Pos>;
  656|  2.35k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (656:5): [True: 2.35k, False: 0]
  ------------------
  657|  2.35k|    auto is_leaf = p.shift() == BL;
  658|  2.35k|    auto child   = p.node()->inner()[offset_hint];
  659|  2.35k|    auto lsize   = offset_hint << p.shift();
  660|  2.35k|    auto size    = p.this_size();
  661|  2.35k|    auto is_full = (size - lsize) >= (size_t{1} << p.shift());
  662|  2.35k|    return is_full
  ------------------
  |  Branch (662:12): [True: 1.27k, False: 1.07k]
  ------------------
  663|  2.35k|               ? (is_leaf
  ------------------
  |  Branch (663:19): [True: 0, False: 1.27k]
  ------------------
  664|  1.27k|                      ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
  665|  1.27k|                      : make_full_pos(child, p.shift() - B)
  666|  1.27k|                            .visit(v, idx - lsize, args...))
  667|  2.35k|               : (is_leaf
  ------------------
  |  Branch (667:19): [True: 0, False: 1.07k]
  ------------------
  668|  1.07k|                      ? make_leaf_sub_pos(child, size - lsize)
  669|      0|                            .visit(v, idx - lsize, args...)
  670|  1.07k|                      : make_regular_sub_pos(child, p.shift() - B, size - lsize)
  671|  1.07k|                            .visit(v, idx - lsize, args...));
  672|  2.35k|}
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb1ELb0EEEJmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1405|  3.17k|    {
 1406|  3.17k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  3.17k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb1ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1348|  1.89k|    {
 1349|  1.89k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1349:9): [True: 1.89k, False: 0]
  ------------------
 1350|  1.89k|        auto is_leaf = shift_ == BL;
 1351|  1.89k|        auto child   = node_->inner()[offset_hint];
 1352|  1.89k|        auto lsize   = size_t{offset_hint} << shift_;
 1353|  1.89k|        return is_leaf
  ------------------
  |  Branch (1353:16): [True: 0, False: 1.89k]
  ------------------
 1354|  1.89k|                   ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
 1355|  1.89k|                   : make_full_pos(child, shift_ - B)
 1356|  1.89k|                         .visit(v, idx - lsize, args...);
 1357|  1.89k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_16dec_left_visitorEJRjEEEDcT_DpOT0_:
 1405|    310|    {
 1406|    310|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|    310|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1348|  1.92k|    {
 1349|  1.92k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1349:9): [True: 1.92k, False: 0]
  ------------------
 1350|  1.92k|        auto is_leaf = shift_ == BL;
 1351|  1.92k|        auto child   = node_->inner()[offset_hint];
 1352|  1.92k|        auto lsize   = size_t{offset_hint} << shift_;
 1353|  1.92k|        return is_leaf
  ------------------
  |  Branch (1353:16): [True: 1.23k, False: 686]
  ------------------
 1354|  1.92k|                   ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
 1355|  1.92k|                   : make_full_pos(child, shift_ - B)
 1356|    686|                         .visit(v, idx - lsize, args...);
 1357|  1.92k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  207|  3.20k|    {
  208|  3.20k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  3.20k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1405|  2.05k|    {
 1406|  2.05k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  2.05k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1348|  8.01k|    {
 1349|  8.01k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1349:9): [True: 8.01k, False: 0]
  ------------------
 1350|  8.01k|        auto is_leaf = shift_ == BL;
 1351|  8.01k|        auto child   = node_->inner()[offset_hint];
 1352|  8.01k|        auto lsize   = size_t{offset_hint} << shift_;
 1353|  8.01k|        return is_leaf
  ------------------
  |  Branch (1353:16): [True: 6.47k, False: 1.53k]
  ------------------
 1354|  8.01k|                   ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
 1355|  8.01k|                   : make_full_pos(child, shift_ - B)
 1356|  1.53k|                         .visit(v, idx - lsize, args...);
 1357|  8.01k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  207|  10.4k|    {
  208|  10.4k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  10.4k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1405|  3.28k|    {
 1406|  3.28k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  3.28k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_leftINS1_11dec_visitorEJEEEvT_jDpOT0_:
 1316|  2.23k|    {
 1317|  2.23k|        each_i(v, 0, last, args...);
 1318|  2.23k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb1ELb0EEEJmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  1.07k|    {
 1037|  1.07k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.07k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_16dec_left_visitorEJRjEEEDcT_DpOT0_:
 1036|  4.41k|    {
 1037|  4.41k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  4.41k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  946|  3.34k|    {
  947|  3.34k|        return towards_sub_oh_regular(*this, v, idx, offset_hint, args...);
  948|  3.34k|    }
_ZN5immer6detail4rbts22towards_sub_oh_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_22slice_left_mut_visitorISD_Lb0ELb1EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjDpOT1_:
  653|  3.34k|{
  654|  3.34k|    constexpr auto B  = bits<Pos>;
  655|  3.34k|    constexpr auto BL = bits_leaf<Pos>;
  656|  3.34k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (656:5): [True: 3.34k, False: 0]
  ------------------
  657|  3.34k|    auto is_leaf = p.shift() == BL;
  658|  3.34k|    auto child   = p.node()->inner()[offset_hint];
  659|  3.34k|    auto lsize   = offset_hint << p.shift();
  660|  3.34k|    auto size    = p.this_size();
  661|  3.34k|    auto is_full = (size - lsize) >= (size_t{1} << p.shift());
  662|  3.34k|    return is_full
  ------------------
  |  Branch (662:12): [True: 3.34k, False: 0]
  ------------------
  663|  3.34k|               ? (is_leaf
  ------------------
  |  Branch (663:19): [True: 1.97k, False: 1.36k]
  ------------------
  664|  3.34k|                      ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
  665|  3.34k|                      : make_full_pos(child, p.shift() - B)
  666|  1.36k|                            .visit(v, idx - lsize, args...))
  667|  3.34k|               : (is_leaf
  ------------------
  |  Branch (667:19): [True: 0, False: 0]
  ------------------
  668|      0|                      ? make_leaf_sub_pos(child, size - lsize)
  669|      0|                            .visit(v, idx - lsize, args...)
  670|      0|                      : make_regular_sub_pos(child, p.shift() - B, size - lsize)
  671|      0|                            .visit(v, idx - lsize, args...));
  672|  3.34k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  946|  5.68k|    {
  947|  5.68k|        return towards_sub_oh_regular(*this, v, idx, offset_hint, args...);
  948|  5.68k|    }
_ZN5immer6detail4rbts22towards_sub_oh_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_22slice_left_mut_visitorISD_Lb0ELb0EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjDpOT1_:
  653|  5.68k|{
  654|  5.68k|    constexpr auto B  = bits<Pos>;
  655|  5.68k|    constexpr auto BL = bits_leaf<Pos>;
  656|  5.68k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (656:5): [True: 5.68k, False: 0]
  ------------------
  657|  5.68k|    auto is_leaf = p.shift() == BL;
  658|  5.68k|    auto child   = p.node()->inner()[offset_hint];
  659|  5.68k|    auto lsize   = offset_hint << p.shift();
  660|  5.68k|    auto size    = p.this_size();
  661|  5.68k|    auto is_full = (size - lsize) >= (size_t{1} << p.shift());
  662|  5.68k|    return is_full
  ------------------
  |  Branch (662:12): [True: 5.68k, False: 0]
  ------------------
  663|  5.68k|               ? (is_leaf
  ------------------
  |  Branch (663:19): [True: 3.93k, False: 1.74k]
  ------------------
  664|  5.68k|                      ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
  665|  5.68k|                      : make_full_pos(child, p.shift() - B)
  666|  1.74k|                            .visit(v, idx - lsize, args...))
  667|  5.68k|               : (is_leaf
  ------------------
  |  Branch (667:19): [True: 0, False: 0]
  ------------------
  668|      0|                      ? make_leaf_sub_pos(child, size - lsize)
  669|      0|                            .visit(v, idx - lsize, args...)
  670|      0|                      : make_regular_sub_pos(child, p.shift() - B, size - lsize)
  671|      0|                            .visit(v, idx - lsize, args...));
  672|  5.68k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_leftINS1_11dec_visitorEJEEEvT_jDpOT0_:
  873|  7.75k|    {
  874|  7.75k|        return each_left_regular(*this, v, last, args...);
  875|  7.75k|    }
_ZN5immer6detail4rbts17each_left_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_11dec_visitorEJEEEvOT_T0_jDpOT1_:
  575|  7.75k|{
  576|  7.75k|    constexpr auto B  = bits<Pos>;
  577|  7.75k|    constexpr auto BL = bits_leaf<Pos>;
  578|  7.75k|    assert(last < p.count());
  ------------------
  |  Branch (578:5): [True: 7.75k, False: 0]
  ------------------
  579|  7.75k|    if (p.shift() == BL) {
  ------------------
  |  Branch (579:9): [True: 1.97k, False: 5.78k]
  ------------------
  580|  1.97k|        auto n = p.node()->inner();
  581|  1.97k|        auto e = n + last;
  582|  4.15k|        for (; n != e; ++n) {
  ------------------
  |  Branch (582:16): [True: 2.17k, False: 1.97k]
  ------------------
  583|  2.17k|            IMMER_PREFETCH(n + 1);
  584|  2.17k|            make_full_leaf_pos(*n).visit(v, args...);
  585|  2.17k|        }
  586|  5.78k|    } else {
  587|  5.78k|        auto n  = p.node()->inner();
  588|  5.78k|        auto e  = n + last;
  589|  5.78k|        auto ss = p.shift() - B;
  590|  7.95k|        for (; n != e; ++n)
  ------------------
  |  Branch (590:16): [True: 2.17k, False: 5.78k]
  ------------------
  591|  2.17k|            make_full_pos(*n, ss).visit(v, args...);
  592|  5.78k|    }
  593|  7.75k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_16dec_left_visitorEJRjEEEDcT_DpOT0_:
 1813|  5.72k|    {
 1814|  5.72k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  5.72k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1705|   167k|    {
 1706|   167k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1706:9): [True: 167k, False: 0]
  ------------------
 1707|   167k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1707:26): [True: 8.08k, False: 158k]
  ------------------
 1708|   167k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size, args...);
 1709|   167k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1717|   167k|    {
 1718|   167k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 167k, False: 0]
  ------------------
 1719|   167k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 8.08k, False: 158k]
  |  Branch (1719:9): [True: 167k, False: 0]
  ------------------
 1720|   167k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|   167k|        auto child     = node_->inner()[offset_hint];
 1722|   167k|        auto is_leaf   = shift_ == BL;
 1723|   167k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|   167k|        auto next_idx  = idx - left_size_hint;
 1725|   167k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 10.5k, False: 156k]
  ------------------
 1726|   167k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  10.5k|                         .visit(v, next_idx, args...)
 1728|   167k|                   : visit_maybe_relaxed_sub(
 1729|   156k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|   167k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  144|  10.5k|    {
  145|  10.5k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  10.5k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcPT_jmT0_DpOT1_:
 1838|   156k|{
 1839|   156k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 156k, False: 0]
  ------------------
 1840|   156k|    auto relaxed = node->relaxed();
 1841|   156k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 155k, False: 1.36k]
  ------------------
 1842|   155k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 155k, False: 0]
  ------------------
 1843|   155k|        return make_relaxed_pos(node, shift, relaxed)
 1844|   155k|            .visit(v, std::forward<Args>(args)...);
 1845|   155k|    } else {
 1846|  1.36k|        return make_regular_sub_pos(node, shift, size)
 1847|  1.36k|            .visit(v, std::forward<Args>(args)...);
 1848|  1.36k|    }
 1849|   156k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1813|   155k|    {
 1814|   155k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|   155k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  1.36k|    {
 1037|  1.36k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.36k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1705|  62.9k|    {
 1706|  62.9k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1706:9): [True: 62.9k, False: 0]
  ------------------
 1707|  62.9k|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1707:26): [True: 20.5k, False: 42.3k]
  ------------------
 1708|  62.9k|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size, args...);
 1709|  62.9k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjmDpOT0_:
 1717|  62.9k|    {
 1718|  62.9k|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 62.9k, False: 0]
  ------------------
 1719|  62.9k|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 20.5k, False: 42.3k]
  |  Branch (1719:9): [True: 62.9k, False: 0]
  ------------------
 1720|  62.9k|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  62.9k|        auto child     = node_->inner()[offset_hint];
 1722|  62.9k|        auto is_leaf   = shift_ == BL;
 1723|  62.9k|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  62.9k|        auto next_idx  = idx - left_size_hint;
 1725|  62.9k|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 12.5k, False: 50.3k]
  ------------------
 1726|  62.9k|                   ? make_leaf_sub_pos(child, next_size)
 1727|  12.5k|                         .visit(v, next_idx, args...)
 1728|  62.9k|                   : visit_maybe_relaxed_sub(
 1729|  50.3k|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  62.9k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
  144|  12.5k|    {
  145|  12.5k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  12.5k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcPT_jmT0_DpOT1_:
 1838|  50.3k|{
 1839|  50.3k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 50.3k, False: 0]
  ------------------
 1840|  50.3k|    auto relaxed = node->relaxed();
 1841|  50.3k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 48.3k, False: 1.99k]
  ------------------
 1842|  48.3k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 48.3k, False: 0]
  ------------------
 1843|  48.3k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  48.3k|            .visit(v, std::forward<Args>(args)...);
 1845|  48.3k|    } else {
 1846|  1.99k|        return make_regular_sub_pos(node, shift, size)
 1847|  1.99k|            .visit(v, std::forward<Args>(args)...);
 1848|  1.99k|    }
 1849|  50.3k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1813|  48.3k|    {
 1814|  48.3k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  48.3k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb0ELb0EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  1.99k|    {
 1037|  1.99k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.99k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJRmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  8.54k|    {
 1037|  8.54k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  8.54k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
  946|  4.41k|    {
  947|  4.41k|        return towards_sub_oh_regular(*this, v, idx, offset_hint, args...);
  948|  4.41k|    }
_ZN5immer6detail4rbts22towards_sub_oh_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_22slice_left_mut_visitorISD_Lb1ELb1EEEJRNSB_5applyIS8_E4type4editEEEEDcOT_T0_mjDpOT1_:
  653|  4.41k|{
  654|  4.41k|    constexpr auto B  = bits<Pos>;
  655|  4.41k|    constexpr auto BL = bits_leaf<Pos>;
  656|  4.41k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (656:5): [True: 4.41k, False: 0]
  ------------------
  657|  4.41k|    auto is_leaf = p.shift() == BL;
  658|  4.41k|    auto child   = p.node()->inner()[offset_hint];
  659|  4.41k|    auto lsize   = offset_hint << p.shift();
  660|  4.41k|    auto size    = p.this_size();
  661|  4.41k|    auto is_full = (size - lsize) >= (size_t{1} << p.shift());
  662|  4.41k|    return is_full
  ------------------
  |  Branch (662:12): [True: 3.31k, False: 1.09k]
  ------------------
  663|  4.41k|               ? (is_leaf
  ------------------
  |  Branch (663:19): [True: 0, False: 3.31k]
  ------------------
  664|  3.31k|                      ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
  665|  3.31k|                      : make_full_pos(child, p.shift() - B)
  666|  3.31k|                            .visit(v, idx - lsize, args...))
  667|  4.41k|               : (is_leaf
  ------------------
  |  Branch (667:19): [True: 0, False: 1.09k]
  ------------------
  668|  1.09k|                      ? make_leaf_sub_pos(child, size - lsize)
  669|      0|                            .visit(v, idx - lsize, args...)
  670|  1.09k|                      : make_regular_sub_pos(child, p.shift() - B, size - lsize)
  671|  1.09k|                            .visit(v, idx - lsize, args...));
  672|  4.41k|}
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1405|  3.62k|    {
 1406|  3.62k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  3.62k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_sub_ohINS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJRNSA_5applyIS7_E4type4editEEEEDcT_mjDpOT0_:
 1348|    310|    {
 1349|    310|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1349:9): [True: 310, False: 0]
  ------------------
 1350|    310|        auto is_leaf = shift_ == BL;
 1351|    310|        auto child   = node_->inner()[offset_hint];
 1352|    310|        auto lsize   = size_t{offset_hint} << shift_;
 1353|    310|        return is_leaf
  ------------------
  |  Branch (1353:16): [True: 0, False: 310]
  ------------------
 1354|    310|                   ? make_full_leaf_pos(child).visit(v, idx - lsize, args...)
 1355|    310|                   : make_full_pos(child, shift_ - B)
 1356|    310|                         .visit(v, idx - lsize, args...);
 1357|    310|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_22slice_left_mut_visitorISC_Lb1ELb1EEEJmRNSA_5applyIS7_E4type4editEEEEDcT_DpOT0_:
 1036|  1.09k|    {
 1037|  1.09k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.09k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitor3rrbEJNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERKPSC_RKjRmEEEDcPT_jmT0_DpOT1_:
 1838|  18.8k|{
 1839|  18.8k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 18.8k, False: 0]
  ------------------
 1840|  18.8k|    auto relaxed = node->relaxed();
 1841|  18.8k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 12.2k, False: 6.67k]
  ------------------
 1842|  12.2k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 12.2k, False: 0]
  ------------------
 1843|  12.2k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  12.2k|            .visit(v, std::forward<Args>(args)...);
 1845|  12.2k|    } else {
 1846|  6.67k|        return make_regular_sub_pos(node, shift, size)
 1847|  6.67k|            .visit(v, std::forward<Args>(args)...);
 1848|  6.67k|    }
 1849|  18.8k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor3rrbEJNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERKPSC_RKjRmEEEDcT_DpOT0_:
 1813|  12.2k|    {
 1814|  12.2k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  12.2k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitorEJRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcPT_jmT0_DpOT1_:
 1838|  12.2k|{
 1839|  12.2k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 12.2k, False: 0]
  ------------------
 1840|  12.2k|    auto relaxed = node->relaxed();
 1841|  12.2k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 9.01k, False: 3.20k]
  ------------------
 1842|  9.01k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 9.01k, False: 0]
  ------------------
 1843|  9.01k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  9.01k|            .visit(v, std::forward<Args>(args)...);
 1845|  9.01k|    } else {
 1846|  3.20k|        return make_regular_sub_pos(node, shift, size)
 1847|  3.20k|            .visit(v, std::forward<Args>(args)...);
 1848|  3.20k|    }
 1849|  12.2k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcT_DpOT0_:
 1813|  9.01k|    {
 1814|  9.01k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  9.01k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitor10this_aux_tEJRjRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcjT_DpOT0_:
 1793|  33.2k|    {
 1794|  33.2k|        auto child      = node_->inner()[offset];
 1795|  33.2k|        auto child_size = size(offset);
 1796|  33.2k|        auto is_leaf    = shift_ == BL;
 1797|  33.2k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1797:16): [True: 9.31k, False: 23.9k]
  ------------------
 1798|  33.2k|                       : visit_maybe_relaxed_sub(
 1799|  23.9k|                             child, shift_ - B, child_size, v, args...);
 1800|  33.2k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
  144|  9.62k|    {
  145|  9.62k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  9.62k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE12nth_sub_leafINS1_14equals_visitorEJRNS1_12leaf_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1804|  9.62k|    {
 1805|  9.62k|        assert(shift_ == BL);
  ------------------
  |  Branch (1805:9): [True: 9.62k, False: 0]
  ------------------
 1806|  9.62k|        auto child      = node_->inner()[offset];
 1807|  9.62k|        auto child_size = size(offset);
 1808|  9.62k|        return make_leaf_sub_pos(child, child_size).visit(v, args...);
 1809|  9.62k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
  144|  10.3k|    {
  145|  10.3k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  10.3k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitor10this_aux_tEJRjRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcPT_jmT0_DpOT1_:
 1838|  23.9k|{
 1839|  23.9k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 23.9k, False: 0]
  ------------------
 1840|  23.9k|    auto relaxed = node->relaxed();
 1841|  23.9k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 21.3k, False: 2.61k]
  ------------------
 1842|  21.3k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 21.3k, False: 0]
  ------------------
 1843|  21.3k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  21.3k|            .visit(v, std::forward<Args>(args)...);
 1845|  21.3k|    } else {
 1846|  2.61k|        return make_regular_sub_pos(node, shift, size)
 1847|  2.61k|            .visit(v, std::forward<Args>(args)...);
 1848|  2.61k|    }
 1849|  23.9k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1813|  21.3k|    {
 1814|  21.3k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  21.3k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitorEJRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1793|  21.3k|    {
 1794|  21.3k|        auto child      = node_->inner()[offset];
 1795|  21.3k|        auto child_size = size(offset);
 1796|  21.3k|        auto is_leaf    = shift_ == BL;
 1797|  21.3k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1797:16): [True: 0, False: 21.3k]
  ------------------
 1798|  21.3k|                       : visit_maybe_relaxed_sub(
 1799|  21.3k|                             child, shift_ - B, child_size, v, args...);
 1800|  21.3k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitorEJRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcPT_jmT0_DpOT1_:
 1838|  21.3k|{
 1839|  21.3k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 21.3k, False: 0]
  ------------------
 1840|  21.3k|    auto relaxed = node->relaxed();
 1841|  21.3k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 20.3k, False: 1.01k]
  ------------------
 1842|  20.3k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 20.3k, False: 0]
  ------------------
 1843|  20.3k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  20.3k|            .visit(v, std::forward<Args>(args)...);
 1845|  20.3k|    } else {
 1846|  1.01k|        return make_regular_sub_pos(node, shift, size)
 1847|  1.01k|            .visit(v, std::forward<Args>(args)...);
 1848|  1.01k|    }
 1849|  21.3k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1813|  20.3k|    {
 1814|  20.3k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  20.3k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1036|  1.40k|    {
 1037|  1.40k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.40k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitor10this_aux_tEJRjRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcjT_DpOT0_:
 1793|  6.71k|    {
 1794|  6.71k|        auto child      = node_->inner()[offset];
 1795|  6.71k|        auto child_size = size(offset);
 1796|  6.71k|        auto is_leaf    = shift_ == BL;
 1797|  6.71k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1797:16): [True: 3.72k, False: 2.98k]
  ------------------
 1798|  6.71k|                       : visit_maybe_relaxed_sub(
 1799|  2.98k|                             child, shift_ - B, child_size, v, args...);
 1800|  6.71k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
  144|  3.72k|    {
  145|  3.72k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  3.72k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE12nth_sub_leafINS1_14equals_visitorEJRNS1_12leaf_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1025|  3.72k|    {
 1026|  3.72k|        assert(shift_ == BL);
  ------------------
  |  Branch (1026:9): [True: 3.72k, False: 0]
  ------------------
 1027|  3.72k|        auto child   = node_->inner()[idx];
 1028|  3.72k|        auto lsize   = size(idx);
 1029|  3.72k|        auto is_full = idx + 1 < count();
 1030|  3.72k|        return is_full ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (1030:16): [True: 3.05k, False: 677]
  ------------------
 1031|  3.72k|                       : make_leaf_sub_pos(child, lsize).visit(v, args...);
 1032|  3.72k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_12leaf_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
  207|  6.75k|    {
  208|  6.75k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  6.75k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitor10this_aux_tEJRjRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcPT_jmT0_DpOT1_:
 1838|  2.98k|{
 1839|  2.98k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 2.98k, False: 0]
  ------------------
 1840|  2.98k|    auto relaxed = node->relaxed();
 1841|  2.98k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 2.23k, False: 749]
  ------------------
 1842|  2.23k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 2.23k, False: 0]
  ------------------
 1843|  2.23k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  2.23k|            .visit(v, std::forward<Args>(args)...);
 1845|  2.23k|    } else {
 1846|    749|        return make_regular_sub_pos(node, shift, size)
 1847|    749|            .visit(v, std::forward<Args>(args)...);
 1848|    749|    }
 1849|  2.98k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1813|  2.23k|    {
 1814|  2.23k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  2.23k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitorEJRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1007|  2.23k|    {
 1008|  2.23k|        assert(idx < count());
  ------------------
  |  Branch (1008:9): [True: 2.23k, False: 0]
  ------------------
 1009|  2.23k|        auto is_leaf = shift_ == BL;
 1010|  2.23k|        auto child   = node_->inner()[idx];
 1011|  2.23k|        auto lsize   = size(idx);
 1012|  2.23k|        auto is_full = idx + 1 < count();
 1013|  2.23k|        return is_full
  ------------------
  |  Branch (1013:16): [True: 1.83k, False: 395]
  ------------------
 1014|  2.23k|                   ? (is_leaf
  ------------------
  |  Branch (1014:23): [True: 0, False: 1.83k]
  ------------------
 1015|  1.83k|                          ? make_full_leaf_pos(child).visit(v, args...)
 1016|  1.83k|                          : make_full_pos(child, shift_ - B).visit(v, args...))
 1017|  2.23k|                   : (is_leaf
  ------------------
  |  Branch (1017:23): [True: 0, False: 395]
  ------------------
 1018|    395|                          ? make_leaf_sub_pos(child, lsize).visit(v, args...)
 1019|    395|                          : make_regular_sub_pos(child, shift_ - B, lsize)
 1020|    395|                                .visit(v, args...));
 1021|  2.23k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1405|  2.72k|    {
 1406|  2.72k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  2.72k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitor10this_aux_tEJRjRNS1_8full_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcjT_DpOT0_:
 1793|  5.72k|    {
 1794|  5.72k|        auto child      = node_->inner()[offset];
 1795|  5.72k|        auto child_size = size(offset);
 1796|  5.72k|        auto is_leaf    = shift_ == BL;
 1797|  5.72k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1797:16): [True: 3.70k, False: 2.02k]
  ------------------
 1798|  5.72k|                       : visit_maybe_relaxed_sub(
 1799|  2.02k|                             child, shift_ - B, child_size, v, args...);
 1800|  5.72k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRNS1_8full_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
  144|  3.70k|    {
  145|  3.70k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  3.70k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE12nth_sub_leafINS1_14equals_visitorEJRNS1_12leaf_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1396|  3.70k|    {
 1397|  3.70k|        assert(shift_ == BL);
  ------------------
  |  Branch (1397:9): [True: 3.70k, False: 0]
  ------------------
 1398|  3.70k|        assert(idx < count());
  ------------------
  |  Branch (1398:9): [True: 3.70k, False: 0]
  ------------------
 1399|  3.70k|        auto child = node_->inner()[idx];
 1400|  3.70k|        return make_full_leaf_pos(child).visit(v, args...);
 1401|  3.70k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitor10this_aux_tEJRjRNS1_8full_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcPT_jmT0_DpOT1_:
 1838|  2.02k|{
 1839|  2.02k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 2.02k, False: 0]
  ------------------
 1840|  2.02k|    auto relaxed = node->relaxed();
 1841|  2.02k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 887, False: 1.13k]
  ------------------
 1842|    887|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 887, False: 0]
  ------------------
 1843|    887|        return make_relaxed_pos(node, shift, relaxed)
 1844|    887|            .visit(v, std::forward<Args>(args)...);
 1845|  1.13k|    } else {
 1846|  1.13k|        return make_regular_sub_pos(node, shift, size)
 1847|  1.13k|            .visit(v, std::forward<Args>(args)...);
 1848|  1.13k|    }
 1849|  2.02k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRNS1_8full_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1813|    887|    {
 1814|    887|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|    887|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitorEJRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1386|    887|    {
 1387|    887|        assert(idx < count());
  ------------------
  |  Branch (1387:9): [True: 887, False: 0]
  ------------------
 1388|    887|        auto is_leaf = shift_ == BL;
 1389|    887|        auto child   = node_->inner()[idx];
 1390|    887|        return is_leaf ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (1390:16): [True: 0, False: 887]
  ------------------
 1391|    887|                       : make_full_pos(child, shift_ - B).visit(v, args...);
 1392|    887|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRNS1_8full_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1036|  1.13k|    {
 1037|  1.13k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.13k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitorEJRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1386|  1.13k|    {
 1387|  1.13k|        assert(idx < count());
  ------------------
  |  Branch (1387:9): [True: 1.13k, False: 0]
  ------------------
 1388|  1.13k|        auto is_leaf = shift_ == BL;
 1389|  1.13k|        auto child   = node_->inner()[idx];
 1390|  1.13k|        return is_leaf ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (1390:16): [True: 0, False: 1.13k]
  ------------------
 1391|  1.13k|                       : make_full_pos(child, shift_ - B).visit(v, args...);
 1392|  1.13k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1405|  1.88k|    {
 1406|  1.88k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  1.88k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13each_pred_zipINS1_14equals_visitorEJEEEbT_PSC_DpOT0_:
 1222|  4.80k|    {
 1223|  4.80k|        auto p  = node_->inner();
 1224|  4.80k|        auto p2 = other->inner();
 1225|  4.80k|        auto e  = p + branches<B>;
 1226|  4.80k|        if (shift_ == BL) {
  ------------------
  |  Branch (1226:13): [True: 3.82k, False: 977]
  ------------------
 1227|  16.2k|            for (; p != e; ++p, ++p2) {
  ------------------
  |  Branch (1227:20): [True: 13.6k, False: 2.62k]
  ------------------
 1228|  13.6k|                IMMER_PREFETCH(p + 1);
 1229|  13.6k|                if (!make_full_leaf_pos(*p).visit(v, *p2, args...))
  ------------------
  |  Branch (1229:21): [True: 1.20k, False: 12.4k]
  ------------------
 1230|  1.20k|                    return false;
 1231|  13.6k|            }
 1232|  3.82k|        } else {
 1233|    977|            auto ss = shift_ - B;
 1234|  4.03k|            for (; p != e; ++p, ++p2)
  ------------------
  |  Branch (1234:20): [True: 3.47k, False: 562]
  ------------------
 1235|  3.47k|                if (!make_full_pos(*p, ss).visit(v, *p2, args...))
  ------------------
  |  Branch (1235:21): [True: 415, False: 3.05k]
  ------------------
 1236|    415|                    return false;
 1237|    977|        }
 1238|  3.18k|        return true;
 1239|  4.80k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRPSC_EEEDcT_DpOT0_:
  207|  17.7k|    {
  208|  17.7k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  17.7k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRPSC_EEEDcT_DpOT0_:
 1405|  9.82k|    {
 1406|  9.82k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  9.82k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13each_pred_zipINS1_14equals_visitorEJEEEbT_PSC_DpOT0_:
  837|  5.25k|    {
  838|  5.25k|        return each_pred_zip_regular(*this, v, other, args...);
  839|  5.25k|    }
_ZN5immer6detail4rbts21each_pred_zip_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_14equals_visitorEJEEEbOT_T0_PNSt3__15decayISH_E4type6node_tEDpOT1_:
  392|  5.25k|{
  393|  5.25k|    constexpr auto B  = bits<Pos>;
  394|  5.25k|    constexpr auto BL = bits_leaf<Pos>;
  395|       |
  396|  5.25k|    auto n    = p.node()->inner();
  397|  5.25k|    auto n2   = other->inner();
  398|  5.25k|    auto last = p.count() - 1;
  399|  5.25k|    auto e    = n + last;
  400|  5.25k|    if (p.shift() == BL) {
  ------------------
  |  Branch (400:9): [True: 1.46k, False: 3.79k]
  ------------------
  401|  3.50k|        for (; n != e; ++n, ++n2) {
  ------------------
  |  Branch (401:16): [True: 2.40k, False: 1.10k]
  ------------------
  402|  2.40k|            IMMER_PREFETCH(n + 1);
  403|  2.40k|            IMMER_PREFETCH(n2 + 1);
  404|  2.40k|            if (!make_full_leaf_pos(*n).visit(v, *n2, args...))
  ------------------
  |  Branch (404:17): [True: 362, False: 2.04k]
  ------------------
  405|    362|                return false;
  406|  2.40k|        }
  407|  1.10k|        return make_leaf_pos(*n, p.size()).visit(v, *n2, args...);
  408|  3.79k|    } else {
  409|  3.79k|        auto ss = p.shift() - B;
  410|  7.70k|        for (; n != e; ++n, ++n2)
  ------------------
  |  Branch (410:16): [True: 4.68k, False: 3.02k]
  ------------------
  411|  4.68k|            if (!make_full_pos(*n, ss).visit(v, *n2, args...))
  ------------------
  |  Branch (411:17): [True: 772, False: 3.91k]
  ------------------
  412|    772|                return false;
  413|  3.02k|        return make_regular_pos(*n, ss, p.size()).visit(v, *n2, args...);
  414|  3.79k|    }
  415|  5.25k|}
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRPSC_EEEDcT_DpOT0_:
  112|  2.96k|    {
  113|  2.96k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|  2.96k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRPSC_EEEDcT_DpOT0_:
  336|  4.32k|    {
  337|  4.32k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  4.32k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE13each_pred_zipINS1_14equals_visitorEJEEEbT_PSC_DpOT0_:
  255|  3.73k|    {
  256|  3.73k|        return each_pred_zip_regular(*this, v, other, args...);
  257|  3.73k|    }
_ZN5immer6detail4rbts21each_pred_zip_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_14equals_visitorEJEEEbOT_T0_PNSt3__15decayISH_E4type6node_tEDpOT1_:
  392|  3.73k|{
  393|  3.73k|    constexpr auto B  = bits<Pos>;
  394|  3.73k|    constexpr auto BL = bits_leaf<Pos>;
  395|       |
  396|  3.73k|    auto n    = p.node()->inner();
  397|  3.73k|    auto n2   = other->inner();
  398|  3.73k|    auto last = p.count() - 1;
  399|  3.73k|    auto e    = n + last;
  400|  3.73k|    if (p.shift() == BL) {
  ------------------
  |  Branch (400:9): [True: 2.22k, False: 1.51k]
  ------------------
  401|  3.54k|        for (; n != e; ++n, ++n2) {
  ------------------
  |  Branch (401:16): [True: 1.68k, False: 1.86k]
  ------------------
  402|  1.68k|            IMMER_PREFETCH(n + 1);
  403|  1.68k|            IMMER_PREFETCH(n2 + 1);
  404|  1.68k|            if (!make_full_leaf_pos(*n).visit(v, *n2, args...))
  ------------------
  |  Branch (404:17): [True: 356, False: 1.32k]
  ------------------
  405|    356|                return false;
  406|  1.68k|        }
  407|  1.86k|        return make_leaf_pos(*n, p.size()).visit(v, *n2, args...);
  408|  2.22k|    } else {
  409|  1.51k|        auto ss = p.shift() - B;
  410|  2.96k|        for (; n != e; ++n, ++n2)
  ------------------
  |  Branch (410:16): [True: 1.66k, False: 1.30k]
  ------------------
  411|  1.66k|            if (!make_full_pos(*n, ss).visit(v, *n2, args...))
  ------------------
  |  Branch (411:17): [True: 209, False: 1.45k]
  ------------------
  412|    209|                return false;
  413|  1.30k|        return make_regular_pos(*n, ss, p.size()).visit(v, *n2, args...);
  414|  1.51k|    }
  415|  3.73k|}
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_24for_each_chunk_p_visitorEJZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcjSK_DpOT0_:
 1386|  4.61k|    {
 1387|  4.61k|        assert(idx < count());
  ------------------
  |  Branch (1387:9): [True: 4.61k, False: 0]
  ------------------
 1388|  4.61k|        auto is_leaf = shift_ == BL;
 1389|  4.61k|        auto child   = node_->inner()[idx];
 1390|  4.61k|        return is_leaf ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (1390:16): [True: 3.15k, False: 1.46k]
  ------------------
 1391|  4.61k|                       : make_full_pos(child, shift_ - B).visit(v, args...);
 1392|  4.61k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcSK_DpOT0_:
  207|   389k|    {
  208|   389k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|   389k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_18region_for_visitorIiEEJRmEEEDcPT_jmT0_DpOT1_:
 1838|  10.1M|{
 1839|  10.1M|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 10.1M, False: 0]
  ------------------
 1840|  10.1M|    auto relaxed = node->relaxed();
 1841|  10.1M|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 9.73M, False: 417k]
  ------------------
 1842|  9.73M|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 9.73M, False: 0]
  ------------------
 1843|  9.73M|        return make_relaxed_pos(node, shift, relaxed)
 1844|  9.73M|            .visit(v, std::forward<Args>(args)...);
 1845|  9.73M|    } else {
 1846|   417k|        return make_regular_sub_pos(node, shift, size)
 1847|   417k|            .visit(v, std::forward<Args>(args)...);
 1848|   417k|    }
 1849|  10.1M|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18region_for_visitorIiEEJRmEEEDcT_DpOT0_:
 1813|  9.73M|    {
 1814|  9.73M|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  9.73M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7towardsINS1_18region_for_visitorIiEEJEEEDcT_mDpOT0_:
 1679|  9.73M|    {
 1680|  9.73M|        return towards_oh(v, idx, subindex(idx), args...);
 1681|  9.73M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_18region_for_visitorIiEEJEEEDcT_mjDpOT0_:
 1686|  9.73M|    {
 1687|  9.73M|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1687:9): [True: 9.73M, False: 0]
  ------------------
 1688|  9.73M|        auto left_size = offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0;
  ------------------
  |  Branch (1688:26): [True: 5.21M, False: 4.52M]
  ------------------
 1689|  9.73M|        return towards_oh_sbh(v, idx, offset_hint, left_size, args...);
 1690|  9.73M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE14towards_oh_sbhINS1_18region_for_visitorIiEEJEEEDcT_mjmDpOT0_:
 1698|  9.73M|    {
 1699|  9.73M|        return towards_sub_oh_sbh(v, idx, offset_hint, left_size_hint, args...);
 1700|  9.73M|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE18towards_sub_oh_sbhINS1_18region_for_visitorIiEEJEEEDcT_mjmDpOT0_:
 1717|  9.73M|    {
 1718|  9.73M|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1718:9): [True: 9.73M, False: 0]
  ------------------
 1719|  9.73M|        assert(left_size_hint ==
  ------------------
  |  Branch (1719:9): [True: 5.21M, False: 4.52M]
  |  Branch (1719:9): [True: 9.73M, False: 0]
  ------------------
 1720|  9.73M|               (offset_hint ? relaxed_->d.sizes[offset_hint - 1] : 0));
 1721|  9.73M|        auto child     = node_->inner()[offset_hint];
 1722|  9.73M|        auto is_leaf   = shift_ == BL;
 1723|  9.73M|        auto next_size = relaxed_->d.sizes[offset_hint] - left_size_hint;
 1724|  9.73M|        auto next_idx  = idx - left_size_hint;
 1725|  9.73M|        return is_leaf
  ------------------
  |  Branch (1725:16): [True: 1.02M, False: 8.71M]
  ------------------
 1726|  9.73M|                   ? make_leaf_sub_pos(child, next_size)
 1727|  1.02M|                         .visit(v, next_idx, args...)
 1728|  9.73M|                   : visit_maybe_relaxed_sub(
 1729|  8.71M|                         child, shift_ - B, next_size, v, next_idx, args...);
 1730|  9.73M|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18region_for_visitorIiEEJRmEEEDcT_DpOT0_:
  144|  1.02M|    {
  145|  1.02M|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  1.02M|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18region_for_visitorIiEEJRmEEEDcT_DpOT0_:
 1036|   417k|    {
 1037|   417k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|   417k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7towardsINS1_18region_for_visitorIiEEJEEEDcT_mDpOT0_:
  919|   417k|    {
  920|   417k|        return towards_oh_ch_regular(
  921|   417k|            *this, v, idx, index(idx), count(), args...);
  922|   417k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_18region_for_visitorIiEEJEEEDcOT_T0_mjjDpOT1_:
  632|   417k|{
  633|   417k|    constexpr auto B  = bits<Pos>;
  634|   417k|    constexpr auto BL = bits_leaf<Pos>;
  635|   417k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 417k, False: 0]
  ------------------
  636|   417k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 417k, False: 0]
  ------------------
  637|   417k|    auto is_leaf = p.shift() == BL;
  638|   417k|    auto child   = p.node()->inner()[offset_hint];
  639|   417k|    auto is_full = offset_hint + 1 != count_hint;
  640|   417k|    return is_full
  ------------------
  |  Branch (640:12): [True: 304k, False: 113k]
  ------------------
  641|   417k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 54.1k, False: 249k]
  ------------------
  642|   304k|                          : make_full_pos(child, p.shift() - B)
  643|   249k|                                .visit(v, idx, args...))
  644|   417k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 20.1k, False: 93.2k]
  ------------------
  645|   113k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|   113k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|  93.2k|                            .visit(v, idx, args...));
  648|   417k|}
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18region_for_visitorIiEEJRmEEEDcT_DpOT0_:
  207|   391k|    {
  208|   391k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|   391k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18region_for_visitorIiEEJRmEEEDcT_DpOT0_:
 1405|  1.14M|    {
 1406|  1.14M|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  1.14M|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7towardsINS1_18region_for_visitorIiEEJEEEDcT_mDpOT0_:
 1322|  1.14M|    {
 1323|  1.14M|        return towards_oh(v, idx, index(idx), args...);
 1324|  1.14M|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE10towards_ohINS1_18region_for_visitorIiEEJEEEDcT_mjDpOT0_:
 1336|  1.14M|    {
 1337|  1.14M|        assert(offset_hint == index(idx));
  ------------------
  |  Branch (1337:9): [True: 1.14M, False: 0]
  ------------------
 1338|  1.14M|        auto is_leaf = shift_ == BL;
 1339|  1.14M|        auto child   = node_->inner()[offset_hint];
 1340|  1.14M|        return is_leaf
  ------------------
  |  Branch (1340:16): [True: 327k, False: 820k]
  ------------------
 1341|  1.14M|                   ? make_full_leaf_pos(child).visit(v, idx, args...)
 1342|  1.14M|                   : make_full_pos(child, shift_ - B).visit(v, idx, args...);
 1343|  1.14M|    }
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18region_for_visitorIiEEJRmEEEDcT_DpOT0_:
  112|  26.2k|    {
  113|  26.2k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|  26.2k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_18region_for_visitorIiEEJRmEEEDcT_DpOT0_:
  336|   125k|    {
  337|   125k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|   125k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7towardsINS1_18region_for_visitorIiEEJEEEDcT_mDpOT0_:
  297|   125k|    {
  298|   125k|        return towards_oh_ch_regular(
  299|   125k|            *this, v, idx, index(idx), count(), args...);
  300|   125k|    }
_ZN5immer6detail4rbts21towards_oh_ch_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_18region_for_visitorIiEEJEEEDcOT_T0_mjjDpOT1_:
  632|   125k|{
  633|   125k|    constexpr auto B  = bits<Pos>;
  634|   125k|    constexpr auto BL = bits_leaf<Pos>;
  635|   125k|    assert(offset_hint == p.index(idx));
  ------------------
  |  Branch (635:5): [True: 125k, False: 0]
  ------------------
  636|   125k|    assert(count_hint == p.count());
  ------------------
  |  Branch (636:5): [True: 125k, False: 0]
  ------------------
  637|   125k|    auto is_leaf = p.shift() == BL;
  638|   125k|    auto child   = p.node()->inner()[offset_hint];
  639|   125k|    auto is_full = offset_hint + 1 != count_hint;
  640|   125k|    return is_full
  ------------------
  |  Branch (640:12): [True: 87.2k, False: 37.9k]
  ------------------
  641|   125k|               ? (is_leaf ? make_full_leaf_pos(child).visit(v, idx, args...)
  ------------------
  |  Branch (641:19): [True: 9.50k, False: 77.7k]
  ------------------
  642|  87.2k|                          : make_full_pos(child, p.shift() - B)
  643|  77.7k|                                .visit(v, idx, args...))
  644|   125k|               : (is_leaf
  ------------------
  |  Branch (644:19): [True: 6.04k, False: 31.8k]
  ------------------
  645|  37.9k|                      ? make_leaf_pos(child, p.size()).visit(v, idx, args...)
  646|  37.9k|                      : make_regular_pos(child, p.shift() - B, p.size())
  647|  31.8k|                            .visit(v, idx, args...));
  648|   125k|}
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcSK_DpOT0_:
 1405|   105k|    {
 1406|   105k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|   105k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_predINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEbSK_DpOT0_:
 1202|   105k|    {
 1203|   105k|        auto p = node_->inner();
 1204|   105k|        auto e = p + branches<B>;
 1205|   105k|        if (shift_ == BL) {
  ------------------
  |  Branch (1205:13): [True: 82.2k, False: 22.8k]
  ------------------
 1206|   409k|            for (; p != e; ++p) {
  ------------------
  |  Branch (1206:20): [True: 327k, False: 81.3k]
  ------------------
 1207|   327k|                IMMER_PREFETCH(p + 1);
 1208|   327k|                if (!make_full_leaf_pos(*p).visit(v, args...))
  ------------------
  |  Branch (1208:21): [True: 860, False: 326k]
  ------------------
 1209|    860|                    return false;
 1210|   327k|            }
 1211|  82.2k|        } else {
 1212|  22.8k|            auto ss = shift_ - B;
 1213|   113k|            for (; p != e; ++p)
  ------------------
  |  Branch (1213:20): [True: 90.7k, False: 22.4k]
  ------------------
 1214|  90.7k|                if (!make_full_pos(*p, ss).visit(v, args...))
  ------------------
  |  Branch (1214:21): [True: 395, False: 90.3k]
  ------------------
 1215|    395|                    return false;
 1216|  22.8k|        }
 1217|   103k|        return true;
 1218|   105k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1036|    749|    {
 1037|    749|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|    749|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitorEJRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1007|    749|    {
 1008|    749|        assert(idx < count());
  ------------------
  |  Branch (1008:9): [True: 749, False: 0]
  ------------------
 1009|    749|        auto is_leaf = shift_ == BL;
 1010|    749|        auto child   = node_->inner()[idx];
 1011|    749|        auto lsize   = size(idx);
 1012|    749|        auto is_full = idx + 1 < count();
 1013|    749|        return is_full
  ------------------
  |  Branch (1013:16): [True: 749, False: 0]
  ------------------
 1014|    749|                   ? (is_leaf
  ------------------
  |  Branch (1014:23): [True: 0, False: 749]
  ------------------
 1015|    749|                          ? make_full_leaf_pos(child).visit(v, args...)
 1016|    749|                          : make_full_pos(child, shift_ - B).visit(v, args...))
 1017|    749|                   : (is_leaf
  ------------------
  |  Branch (1017:23): [True: 0, False: 0]
  ------------------
 1018|      0|                          ? make_leaf_sub_pos(child, lsize).visit(v, args...)
 1019|      0|                          : make_regular_sub_pos(child, shift_ - B, lsize)
 1020|      0|                                .visit(v, args...));
 1021|    749|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1036|  1.85k|    {
 1037|  1.85k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.85k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_24for_each_chunk_p_visitorEJZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcjSK_DpOT0_:
 1007|  4.22k|    {
 1008|  4.22k|        assert(idx < count());
  ------------------
  |  Branch (1008:9): [True: 4.22k, False: 0]
  ------------------
 1009|  4.22k|        auto is_leaf = shift_ == BL;
 1010|  4.22k|        auto child   = node_->inner()[idx];
 1011|  4.22k|        auto lsize   = size(idx);
 1012|  4.22k|        auto is_full = idx + 1 < count();
 1013|  4.22k|        return is_full
  ------------------
  |  Branch (1013:16): [True: 1.47k, False: 2.75k]
  ------------------
 1014|  4.22k|                   ? (is_leaf
  ------------------
  |  Branch (1014:23): [True: 847, False: 624]
  ------------------
 1015|  1.47k|                          ? make_full_leaf_pos(child).visit(v, args...)
 1016|  1.47k|                          : make_full_pos(child, shift_ - B).visit(v, args...))
 1017|  4.22k|                   : (is_leaf
  ------------------
  |  Branch (1017:23): [True: 1.45k, False: 1.30k]
  ------------------
 1018|  2.75k|                          ? make_leaf_sub_pos(child, lsize).visit(v, args...)
 1019|  2.75k|                          : make_regular_sub_pos(child, shift_ - B, lsize)
 1020|  1.30k|                                .visit(v, args...));
 1021|  4.22k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcSK_DpOT0_:
  144|  1.00M|    {
  145|  1.00M|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  1.00M|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcSK_DpOT0_:
 1036|  22.8k|    {
 1037|  22.8k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  22.8k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_predINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEbSK_DpOT0_:
  831|  22.8k|    {
  832|  22.8k|        return each_pred_regular(*this, v, args...);
  833|  22.8k|    }
_ZN5immer6detail4rbts17each_pred_regularIRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSC_Lj2ELj2EEEEEDaOT_EUlSL_T0_E_EEEbSM_SN_DpOT1_:
  365|  22.8k|{
  366|  22.8k|    constexpr auto B  = bits<Pos>;
  367|  22.8k|    constexpr auto BL = bits_leaf<Pos>;
  368|  22.8k|    auto n            = p.node()->inner();
  369|  22.8k|    auto last         = p.count() - 1;
  370|  22.8k|    auto e            = n + last;
  371|  22.8k|    if (p.shift() == BL) {
  ------------------
  |  Branch (371:9): [True: 17.8k, False: 5.08k]
  ------------------
  372|  66.8k|        for (; n != e; ++n) {
  ------------------
  |  Branch (372:16): [True: 49.2k, False: 17.5k]
  ------------------
  373|  49.2k|            IMMER_PREFETCH(n + 1);
  374|  49.2k|            if (!make_full_leaf_pos(*n).visit(v, args...))
  ------------------
  |  Branch (374:17): [True: 219, False: 49.0k]
  ------------------
  375|    219|                return false;
  376|  49.2k|        }
  377|  17.5k|        return make_leaf_pos(*n, p.size()).visit(v, args...);
  378|  17.8k|    } else {
  379|  5.08k|        auto ss = p.shift() - B;
  380|  12.8k|        for (; n != e; ++n)
  ------------------
  |  Branch (380:16): [True: 8.33k, False: 4.55k]
  ------------------
  381|  8.33k|            if (!make_full_pos(*n, ss).visit(v, args...))
  ------------------
  |  Branch (381:17): [True: 528, False: 7.81k]
  ------------------
  382|    528|                return false;
  383|  4.55k|        return make_regular_pos(*n, ss, p.size()).visit(v, args...);
  384|  5.08k|    }
  385|  22.8k|}
_ZN5immer6detail4rbts8leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcSK_DpOT0_:
  112|  21.5k|    {
  113|  21.5k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  114|  21.5k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcSK_DpOT0_:
  336|  6.70k|    {
  337|  6.70k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
  338|  6.70k|    }
_ZN5immer6detail4rbts11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_predINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEbSK_DpOT0_:
  249|  6.70k|    {
  250|  6.70k|        return each_pred_regular(*this, v, args...);
  251|  6.70k|    }
_ZN5immer6detail4rbts17each_pred_regularIRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSC_Lj2ELj2EEEEEDaOT_EUlSL_T0_E_EEEbSM_SN_DpOT1_:
  365|  6.70k|{
  366|  6.70k|    constexpr auto B  = bits<Pos>;
  367|  6.70k|    constexpr auto BL = bits_leaf<Pos>;
  368|  6.70k|    auto n            = p.node()->inner();
  369|  6.70k|    auto last         = p.count() - 1;
  370|  6.70k|    auto e            = n + last;
  371|  6.70k|    if (p.shift() == BL) {
  ------------------
  |  Branch (371:9): [True: 4.23k, False: 2.46k]
  ------------------
  372|  12.3k|        for (; n != e; ++n) {
  ------------------
  |  Branch (372:16): [True: 8.36k, False: 3.95k]
  ------------------
  373|  8.36k|            IMMER_PREFETCH(n + 1);
  374|  8.36k|            if (!make_full_leaf_pos(*n).visit(v, args...))
  ------------------
  |  Branch (374:17): [True: 282, False: 8.08k]
  ------------------
  375|    282|                return false;
  376|  8.36k|        }
  377|  3.95k|        return make_leaf_pos(*n, p.size()).visit(v, args...);
  378|  4.23k|    } else {
  379|  2.46k|        auto ss = p.shift() - B;
  380|  6.10k|        for (; n != e; ++n)
  ------------------
  |  Branch (380:16): [True: 3.95k, False: 2.14k]
  ------------------
  381|  3.95k|            if (!make_full_pos(*n, ss).visit(v, args...))
  ------------------
  |  Branch (381:17): [True: 315, False: 3.63k]
  ------------------
  382|    315|                return false;
  383|  2.14k|        return make_regular_pos(*n, ss, p.size()).visit(v, args...);
  384|  2.46k|    }
  385|  6.70k|}
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1036|  2.61k|    {
 1037|  2.61k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  2.61k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitorEJRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1793|  2.61k|    {
 1794|  2.61k|        auto child      = node_->inner()[offset];
 1795|  2.61k|        auto child_size = size(offset);
 1796|  2.61k|        auto is_leaf    = shift_ == BL;
 1797|  2.61k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1797:16): [True: 0, False: 2.61k]
  ------------------
 1798|  2.61k|                       : visit_maybe_relaxed_sub(
 1799|  2.61k|                             child, shift_ - B, child_size, v, args...);
 1800|  2.61k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitorEJRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcPT_jmT0_DpOT1_:
 1838|  2.61k|{
 1839|  2.61k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 2.61k, False: 0]
  ------------------
 1840|  2.61k|    auto relaxed = node->relaxed();
 1841|  2.61k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 752, False: 1.85k]
  ------------------
 1842|    752|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 752, False: 0]
  ------------------
 1843|    752|        return make_relaxed_pos(node, shift, relaxed)
 1844|    752|            .visit(v, std::forward<Args>(args)...);
 1845|  1.85k|    } else {
 1846|  1.85k|        return make_regular_sub_pos(node, shift, size)
 1847|  1.85k|            .visit(v, std::forward<Args>(args)...);
 1848|  1.85k|    }
 1849|  2.61k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1813|    752|    {
 1814|    752|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|    752|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitor10this_aux_tEJRjRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcjT_DpOT0_:
 1007|  4.05k|    {
 1008|  4.05k|        assert(idx < count());
  ------------------
  |  Branch (1008:9): [True: 4.05k, False: 0]
  ------------------
 1009|  4.05k|        auto is_leaf = shift_ == BL;
 1010|  4.05k|        auto child   = node_->inner()[idx];
 1011|  4.05k|        auto lsize   = size(idx);
 1012|  4.05k|        auto is_full = idx + 1 < count();
 1013|  4.05k|        return is_full
  ------------------
  |  Branch (1013:16): [True: 3.74k, False: 314]
  ------------------
 1014|  4.05k|                   ? (is_leaf
  ------------------
  |  Branch (1014:23): [True: 2.22k, False: 1.51k]
  ------------------
 1015|  3.74k|                          ? make_full_leaf_pos(child).visit(v, args...)
 1016|  3.74k|                          : make_full_pos(child, shift_ - B).visit(v, args...))
 1017|  4.05k|                   : (is_leaf
  ------------------
  |  Branch (1017:23): [True: 314, False: 0]
  ------------------
 1018|    314|                          ? make_leaf_sub_pos(child, lsize).visit(v, args...)
 1019|    314|                          : make_regular_sub_pos(child, shift_ - B, lsize)
 1020|      0|                                .visit(v, args...));
 1021|  4.05k|    }
_ZN5immer6detail4rbts13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
  207|  5.44k|    {
  208|  5.44k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  209|  5.44k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE12nth_sub_leafINS1_14equals_visitorEJRNS1_13full_leaf_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1804|  5.44k|    {
 1805|  5.44k|        assert(shift_ == BL);
  ------------------
  |  Branch (1805:9): [True: 5.44k, False: 0]
  ------------------
 1806|  5.44k|        auto child      = node_->inner()[offset];
 1807|  5.44k|        auto child_size = size(offset);
 1808|  5.44k|        return make_leaf_sub_pos(child, child_size).visit(v, args...);
 1809|  5.44k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_13full_leaf_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
  144|  5.44k|    {
  145|  5.44k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  5.44k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor10this_aux_tEJRjRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1405|  3.18k|    {
 1406|  3.18k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1407|  3.18k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitorEJRNS1_8full_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcjT_DpOT0_:
 1793|  3.18k|    {
 1794|  3.18k|        auto child      = node_->inner()[offset];
 1795|  3.18k|        auto child_size = size(offset);
 1796|  3.18k|        auto is_leaf    = shift_ == BL;
 1797|  3.18k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1797:16): [True: 0, False: 3.18k]
  ------------------
 1798|  3.18k|                       : visit_maybe_relaxed_sub(
 1799|  3.18k|                             child, shift_ - B, child_size, v, args...);
 1800|  3.18k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitorEJRNS1_8full_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcPT_jmT0_DpOT1_:
 1838|  3.18k|{
 1839|  3.18k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 3.18k, False: 0]
  ------------------
 1840|  3.18k|    auto relaxed = node->relaxed();
 1841|  3.18k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 2.02k, False: 1.15k]
  ------------------
 1842|  2.02k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 2.02k, False: 0]
  ------------------
 1843|  2.02k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  2.02k|            .visit(v, std::forward<Args>(args)...);
 1845|  2.02k|    } else {
 1846|  1.15k|        return make_regular_sub_pos(node, shift, size)
 1847|  1.15k|            .visit(v, std::forward<Args>(args)...);
 1848|  1.15k|    }
 1849|  3.18k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_8full_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1813|  2.02k|    {
 1814|  2.02k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  2.02k|    }
_ZN5immer6detail4rbts8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_14equals_visitor10this_aux_tEJRjRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcjT_DpOT0_:
 1386|  4.88k|    {
 1387|  4.88k|        assert(idx < count());
  ------------------
  |  Branch (1387:9): [True: 4.88k, False: 0]
  ------------------
 1388|  4.88k|        auto is_leaf = shift_ == BL;
 1389|  4.88k|        auto child   = node_->inner()[idx];
 1390|  4.88k|        return is_leaf ? make_full_leaf_pos(child).visit(v, args...)
  ------------------
  |  Branch (1390:16): [True: 3.21k, False: 1.66k]
  ------------------
 1391|  4.88k|                       : make_full_pos(child, shift_ - B).visit(v, args...);
 1392|  4.88k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_8full_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERmEEEDcT_DpOT0_:
 1036|  1.15k|    {
 1037|  1.15k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  1.15k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE7nth_subINS1_24for_each_chunk_p_visitorEJZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcjSK_DpOT0_:
 1793|  24.0k|    {
 1794|  24.0k|        auto child      = node_->inner()[offset];
 1795|  24.0k|        auto child_size = size(offset);
 1796|  24.0k|        auto is_leaf    = shift_ == BL;
 1797|  24.0k|        return is_leaf ? make_leaf_sub_pos(child, child_size).visit(v, args...)
  ------------------
  |  Branch (1797:16): [True: 8.51k, False: 15.5k]
  ------------------
 1798|  24.0k|                       : visit_maybe_relaxed_sub(
 1799|  15.5k|                             child, shift_ - B, child_size, v, args...);
 1800|  24.0k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSI_T0_E_EEEDcPSI_jmSK_DpOT1_:
 1838|   650k|{
 1839|   650k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 650k, False: 0]
  ------------------
 1840|   650k|    auto relaxed = node->relaxed();
 1841|   650k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 628k, False: 21.5k]
  ------------------
 1842|   628k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 628k, False: 0]
  ------------------
 1843|   628k|        return make_relaxed_pos(node, shift, relaxed)
 1844|   628k|            .visit(v, std::forward<Args>(args)...);
 1845|   628k|    } else {
 1846|  21.5k|        return make_regular_sub_pos(node, shift, size)
 1847|  21.5k|            .visit(v, std::forward<Args>(args)...);
 1848|  21.5k|    }
 1849|   650k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEDcSK_DpOT0_:
 1813|   628k|    {
 1814|   628k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|   628k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE9each_predINS1_24for_each_chunk_p_visitorEJRZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEEEDaOT_EUlSK_T0_E_EEEbSK_DpOT0_:
 1482|   628k|    {
 1483|   628k|        auto p = node_->inner();
 1484|   628k|        auto s = size_t{};
 1485|   628k|        auto n = count();
 1486|   628k|        if (shift_ == BL) {
  ------------------
  |  Branch (1486:13): [True: 295k, False: 333k]
  ------------------
 1487|  1.29M|            for (auto i = count_t{0}; i < n; ++i) {
  ------------------
  |  Branch (1487:39): [True: 997k, False: 295k]
  ------------------
 1488|   997k|                IMMER_PREFETCH(p + i + 1);
 1489|   997k|                if (!make_leaf_sub_pos(p[i], relaxed_->d.sizes[i] - s)
  ------------------
  |  Branch (1489:21): [True: 384, False: 997k]
  ------------------
 1490|   997k|                         .visit(v, args...))
 1491|    384|                    return false;
 1492|   997k|                s = relaxed_->d.sizes[i];
 1493|   997k|            }
 1494|   333k|        } else {
 1495|   333k|            auto ss = shift_ - B;
 1496|   967k|            for (auto i = count_t{0}; i < n; ++i) {
  ------------------
  |  Branch (1496:39): [True: 634k, False: 332k]
  ------------------
 1497|   634k|                if (!visit_maybe_relaxed_sub(
  ------------------
  |  Branch (1497:21): [True: 507, False: 633k]
  ------------------
 1498|   634k|                        p[i], ss, relaxed_->d.sizes[i] - s, v, args...))
 1499|    507|                    return false;
 1500|   633k|                s = relaxed_->d.sizes[i];
 1501|   633k|            }
 1502|   333k|        }
 1503|   627k|        return true;
 1504|   628k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_11relaxed_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcT_DpOT0_:
 1036|  3.20k|    {
 1037|  3.20k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  3.20k|    }
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE15first_sub_innerINS1_14equals_visitor3rrbEJRNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERPSC_RjRmEEEDcT_DpOT0_:
 1783|  1.40k|    {
 1784|  1.40k|        assert(shift_ > BL);
  ------------------
  |  Branch (1784:9): [True: 1.40k, False: 0]
  ------------------
 1785|  1.40k|        auto child      = node_->inner()[0];
 1786|  1.40k|        auto child_size = relaxed_->d.sizes[0];
 1787|  1.40k|        return visit_maybe_relaxed_sub(
 1788|  1.40k|            child, shift_ - B, child_size, v, args...);
 1789|  1.40k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitor3rrbEJRNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERPSC_RjRmEEEDcPT_jmT0_DpOT1_:
 1838|  1.40k|{
 1839|  1.40k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 1.40k, False: 0]
  ------------------
 1840|  1.40k|    auto relaxed = node->relaxed();
 1841|  1.40k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 1.40k, False: 0]
  ------------------
 1842|  1.40k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 1.40k, False: 0]
  ------------------
 1843|  1.40k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  1.40k|            .visit(v, std::forward<Args>(args)...);
 1845|  1.40k|    } else {
 1846|      0|        return make_regular_sub_pos(node, shift, size)
 1847|      0|            .visit(v, std::forward<Args>(args)...);
 1848|      0|    }
 1849|  1.40k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor3rrbEJRNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERPSC_RjRmEEEDcT_DpOT0_:
 1813|  1.40k|    {
 1814|  1.40k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  1.40k|    }
_ZN5immer6detail4rbts23visit_maybe_relaxed_subINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS1_14equals_visitorEJRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcPT_jmT0_DpOT1_:
 1838|  6.67k|{
 1839|  6.67k|    assert(node);
  ------------------
  |  Branch (1839:5): [True: 6.67k, False: 0]
  ------------------
 1840|  6.67k|    auto relaxed = node->relaxed();
 1841|  6.67k|    if (relaxed) {
  ------------------
  |  Branch (1841:9): [True: 1.61k, False: 5.06k]
  ------------------
 1842|  1.61k|        assert(size == relaxed->d.sizes[relaxed->d.count - 1]);
  ------------------
  |  Branch (1842:9): [True: 1.61k, False: 0]
  ------------------
 1843|  1.61k|        return make_relaxed_pos(node, shift, relaxed)
 1844|  1.61k|            .visit(v, std::forward<Args>(args)...);
 1845|  5.06k|    } else {
 1846|  5.06k|        return make_regular_sub_pos(node, shift, size)
 1847|  5.06k|            .visit(v, std::forward<Args>(args)...);
 1848|  5.06k|    }
 1849|  6.67k|}
_ZN5immer6detail4rbts11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRNS1_15regular_sub_posISC_EERNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcT_DpOT0_:
 1813|  1.61k|    {
 1814|  1.61k|        return Visitor::visit_relaxed(*this, std::forward<Args>(args)...);
 1815|  1.61k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRSD_RNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEEmEEEDcT_DpOT0_:
 1036|  5.06k|    {
 1037|  5.06k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  5.06k|    }
_ZN5immer6detail4rbts15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitor3rrbEJNS1_16rrbtree_iteratorIiSB_Lj2ELj2EEERKPSC_RKjRmEEEDcT_DpOT0_:
 1036|  6.67k|    {
 1037|  6.67k|        return Visitor::visit_regular(*this, std::forward<Args>(args)...);
 1038|  6.67k|    }
_ZN5immer6detail4rbts12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEE5visitINS1_14equals_visitorEJRKPSC_EEEDcT_DpOT0_:
  144|  6.95k|    {
  145|  6.95k|        return Visitor::visit_leaf(*this, std::forward<Args>(args)...);
  146|  6.95k|    }

_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEC2Ev:
  114|  1.65M|        : size{0}
  115|  1.65M|        , shift{BL}
  116|  1.65M|        , root{empty_root()}
  117|  1.65M|        , tail{empty_tail()}
  118|  1.65M|    {
  119|       |        assert(check_tree());
  ------------------
  |  Branch (119:9): [True: 1.65M, False: 0]
  ------------------
  120|  1.65M|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE10empty_rootEv:
   61|  1.66M|    {
   62|  1.66M|        static const auto empty_ = [] {
   63|  1.66M|            constexpr auto size = node_t::sizeof_inner_n(0);
   64|  1.66M|            static std::aligned_storage_t<size, alignof(std::max_align_t)>
   65|  1.66M|                storage;
   66|  1.66M|            return node_t::make_inner_n_into(&storage, size, 0u);
   67|  1.66M|        }();
   68|  1.66M|        return empty_->inc();
   69|  1.66M|    }
_ZZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE10empty_rootEvENKUlvE_clEv:
   62|      1|        static const auto empty_ = [] {
   63|      1|            constexpr auto size = node_t::sizeof_inner_n(0);
   64|      1|            static std::aligned_storage_t<size, alignof(std::max_align_t)>
   65|      1|                storage;
   66|      1|            return node_t::make_inner_n_into(&storage, size, 0u);
   67|      1|        }();
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE10empty_tailEv:
   72|  1.65M|    {
   73|  1.65M|        static const auto empty_ = [] {
   74|  1.65M|            constexpr auto size = node_t::sizeof_leaf_n(0);
   75|  1.65M|            static std::aligned_storage_t<size, alignof(std::max_align_t)>
   76|  1.65M|                storage;
   77|  1.65M|            return node_t::make_leaf_n_into(&storage, size, 0u);
   78|  1.65M|        }();
   79|  1.65M|        return empty_->inc();
   80|  1.65M|    }
_ZZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE10empty_tailEvENKUlvE_clEv:
   73|      1|        static const auto empty_ = [] {
   74|      1|            constexpr auto size = node_t::sizeof_leaf_n(0);
   75|      1|            static std::aligned_storage_t<size, alignof(std::max_align_t)>
   76|      1|                storage;
   77|      1|            return node_t::make_leaf_n_into(&storage, size, 0u);
   78|      1|        }();
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE10check_treeEv:
 1372|  3.27M|    {
 1373|  3.27M|        IMMER_INVALID_STATE_ASSERT(shift <= sizeof(size_t) * 8 - BL);
  ------------------
  |  |   32|  3.27M|    if (!(expr))                                                               \
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 3.27M]
  |  |  ------------------
  |  |   33|  3.27M|    IMMER_THROW(invalid_tree{})
  |  |  ------------------
  |  |  |  |   51|      0|#define IMMER_THROW(expr) throw expr
  |  |  ------------------
  ------------------
 1374|  3.27M|        IMMER_INVALID_STATE_ASSERT(shift >= BL);
  ------------------
  |  |   32|  3.27M|    if (!(expr))                                                               \
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 3.27M]
  |  |  ------------------
  |  |   33|  3.27M|    IMMER_THROW(invalid_tree{})
  |  |  ------------------
  |  |  |  |   51|      0|#define IMMER_THROW(expr) throw expr
  |  |  ------------------
  ------------------
 1375|  3.27M|        IMMER_INVALID_STATE_ASSERT(tail_offset() <= size);
  ------------------
  |  |   32|  3.27M|    if (!(expr))                                                               \
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 3.27M]
  |  |  ------------------
  |  |   33|  3.27M|    IMMER_THROW(invalid_tree{})
  |  |  ------------------
  |  |  |  |   51|      0|#define IMMER_THROW(expr) throw expr
  |  |  ------------------
  ------------------
 1376|  3.27M|        IMMER_INVALID_STATE_ASSERT(tail_size() <= branches<BL>);
  ------------------
  |  |   32|  3.27M|    if (!(expr))                                                               \
  |  |  ------------------
  |  |  |  Branch (32:9): [True: 0, False: 3.27M]
  |  |  ------------------
  |  |   33|  3.27M|    IMMER_THROW(invalid_tree{})
  |  |  ------------------
  |  |  |  |   51|      0|#define IMMER_THROW(expr) throw expr
  |  |  ------------------
  ------------------
 1377|       |#if IMMER_DEBUG_DEEP_CHECK
 1378|       |        IMMER_INVALID_STATE_ASSERT(check_root());
 1379|       |        IMMER_INVALID_STATE_ASSERT(check_tail());
 1380|       |#endif
 1381|  3.27M|        return true;
 1382|  3.27M|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11tail_offsetEv:
  197|  16.2M|    {
  198|  16.2M|        auto r = root->relaxed();
  199|  16.2M|        assert(r == nullptr || r->d.count);
  ------------------
  |  Branch (199:9): [True: 8.13M, False: 8.14M]
  |  Branch (199:9): [True: 8.14M, False: 0]
  |  Branch (199:9): [True: 16.2M, False: 0]
  ------------------
  200|  16.2M|        return r      ? r->d.sizes[r->d.count - 1]
  ------------------
  |  Branch (200:16): [True: 8.14M, False: 8.13M]
  ------------------
  201|  16.2M|               : size ? (size - 1) & ~mask<BL>
  ------------------
  |  Branch (201:18): [True: 3.15M, False: 4.97M]
  ------------------
  202|       |                      /* otherwise */
  203|  8.13M|                      : 0;
  204|  16.2M|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9tail_sizeEv:
  194|  3.74M|    auto tail_size() const { return size - tail_offset(); }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EED2Ev:
  184|  3.27M|    ~rrbtree() { dec(); }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE3decEv:
  192|  3.27M|    void dec() const { traverse(dec_visitor()); }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE8traverseINS1_11dec_visitorEJEEEvT_DpOT0_:
  208|  3.27M|    {
  209|  3.27M|        auto tail_off  = tail_offset();
  210|  3.27M|        auto tail_size = size - tail_off;
  211|       |
  212|  3.27M|        if (tail_off)
  ------------------
  |  Branch (212:13): [True: 1.53M, False: 1.74M]
  ------------------
  213|  1.53M|            visit_maybe_relaxed_sub(root, shift, tail_off, v, args...);
  214|  1.74M|        else
  215|  1.74M|            make_empty_regular_pos(root).visit(v, args...);
  216|       |
  217|  3.27M|        if (tail_size)
  ------------------
  |  Branch (217:13): [True: 1.62M, False: 1.65M]
  ------------------
  218|  1.62M|            make_leaf_sub_pos(tail, tail_size).visit(v, args...);
  219|  1.65M|        else
  220|  1.65M|            make_empty_leaf_pos(tail).visit(v, args...);
  221|  3.27M|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9push_backEi:
  500|   432k|    {
  501|   432k|        auto ts = tail_size();
  502|   432k|        if (ts < branches<BL>) {
  ------------------
  |  Branch (502:13): [True: 316k, False: 116k]
  ------------------
  503|   316k|            auto new_tail =
  504|   316k|                node_t::copy_leaf_emplace(tail, ts, std::move(value));
  505|   316k|            return {size + 1, shift, root->inc(), new_tail};
  506|   316k|        } else {
  507|   116k|            using std::get;
  508|   116k|            auto new_tail = node_t::make_leaf_n(1u, std::move(value));
  509|   116k|            auto tail_off = tail_offset();
  510|   116k|            IMMER_TRY {
  ------------------
  |  |   49|   116k|#define IMMER_TRY try
  ------------------
  511|   116k|                auto new_root =
  512|   116k|                    push_tail(root, shift, tail_off, tail, size - tail_off);
  513|   116k|                tail->inc();
  514|   116k|                return {size + 1, get<0>(new_root), get<1>(new_root), new_tail};
  515|   116k|            }
  516|   116k|            IMMER_CATCH (...) {
  517|      0|                node_t::delete_leaf(new_tail, 1u);
  518|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  519|      0|            }
  520|   116k|        }
  521|   432k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEC2EmjPNS1_4nodeIiSA_Lj2ELj2EEESE_:
  127|  1.62M|        : size{sz}
  128|  1.62M|        , shift{sh}
  129|  1.62M|        , root{r}
  130|  1.62M|        , tail{t}
  131|  1.62M|    {
  132|  1.62M|#if IMMER_THROW_ON_INVALID_STATE
  133|       |        // assert only happens in the Debug build, but when
  134|       |        // IMMER_THROW_ON_INVALID_STATE is activated, we want to just check_tree
  135|       |        // even in Release.
  136|  1.62M|        try {
  137|  1.62M|            check_tree();
  138|  1.62M|        } catch (...) {
  139|       |            // This not fully constructed rrbtree owns the nodes already, have
  140|       |            // to dec them.
  141|      0|            if (r && t)
  ------------------
  |  Branch (141:17): [True: 0, False: 0]
  |  Branch (141:22): [True: 0, False: 0]
  ------------------
  142|      0|                dec();
  143|      0|            throw;
  144|      0|        }
  145|       |#else
  146|       |        assert(check_tree());
  147|       |#endif
  148|  1.62M|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9push_tailEPNS1_4nodeIiSA_Lj2ELj2EEEjmSE_j:
  369|   589k|    {
  370|   589k|        if (auto r = root->relaxed()) {
  ------------------
  |  Branch (370:18): [True: 233k, False: 355k]
  ------------------
  371|   233k|            auto new_root =
  372|   233k|                make_relaxed_pos(root, shift, r)
  373|   233k|                    .visit(push_tail_visitor<node_t>{}, tail, tail_size);
  374|   233k|            if (new_root)
  ------------------
  |  Branch (374:17): [True: 231k, False: 1.98k]
  ------------------
  375|   231k|                return std::make_tuple(shift, new_root);
  376|  1.98k|            else {
  377|  1.98k|                auto new_root = node_t::make_inner_r_n(2);
  378|  1.98k|                IMMER_TRY {
  ------------------
  |  |   49|  1.98k|#define IMMER_TRY try
  ------------------
  379|  1.98k|                    auto new_path        = node_t::make_path(shift, tail);
  380|  1.98k|                    new_root->inner()[0] = root->inc();
  381|  1.98k|                    new_root->inner()[1] = new_path;
  382|  1.98k|                    new_root->relaxed()->d.sizes[0] = size;
  383|  1.98k|                    new_root->relaxed()->d.sizes[1] = size + tail_size;
  384|  1.98k|                    assert(size);
  ------------------
  |  Branch (384:21): [True: 1.98k, False: 0]
  ------------------
  385|  1.98k|                    assert(tail_size);
  ------------------
  |  Branch (385:21): [True: 1.98k, False: 0]
  ------------------
  386|  1.98k|                    new_root->relaxed()->d.count = 2u;
  387|  1.98k|                }
  388|  1.98k|                IMMER_CATCH (...) {
  389|      0|                    node_t::delete_inner_r(new_root, 2);
  390|      0|                    IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  391|      0|                }
  392|  1.98k|                return std::make_tuple(shift + B, new_root);
  393|  1.98k|            }
  394|   355k|        } else if (size == size_t{branches<B>} << shift) {
  ------------------
  |  Branch (394:20): [True: 5.23k, False: 350k]
  ------------------
  395|  5.23k|            auto new_root = node_t::make_inner_n(2);
  396|  5.23k|            IMMER_TRY {
  ------------------
  |  |   49|  5.23k|#define IMMER_TRY try
  ------------------
  397|  5.23k|                auto new_path        = node_t::make_path(shift, tail);
  398|  5.23k|                new_root->inner()[0] = root->inc();
  399|  5.23k|                new_root->inner()[1] = new_path;
  400|  5.23k|            }
  401|  5.23k|            IMMER_CATCH (...) {
  402|      0|                node_t::delete_inner(new_root, 2);
  403|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  404|      0|            }
  405|  5.23k|            return std::make_tuple(shift + B, new_root);
  406|   350k|        } else if (size) {
  ------------------
  |  Branch (406:20): [True: 339k, False: 10.6k]
  ------------------
  407|   339k|            auto new_root = make_regular_sub_pos(root, shift, size)
  408|   339k|                                .visit(push_tail_visitor<node_t>{}, tail);
  409|   339k|            return std::make_tuple(shift, new_root);
  410|   339k|        } else {
  411|  10.6k|            return std::make_tuple(shift, node_t::make_path(shift, tail));
  412|  10.6k|        }
  413|   589k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEC2EOSB_:
  157|  1.57M|        : rrbtree{}
  158|  1.57M|    {
  159|  1.57M|        swap(*this, other);
  160|  1.57M|    }
_ZN5immer6detail4rbts4swapERNS1_7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEESC_:
  176|  3.64M|    {
  177|  3.64M|        using std::swap;
  178|  3.64M|        swap(x.size, y.size);
  179|  3.64M|        swap(x.shift, y.shift);
  180|  3.64M|        swap(x.root, y.root);
  181|  3.64M|        swap(x.tail, y.tail);
  182|  3.64M|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEaSEOSB_:
  170|  2.06M|    {
  171|  2.06M|        swap(*this, other);
  172|  2.06M|        return *this;
  173|  2.06M|    }
flex-vector.cpp:_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE6updateIZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSG_E_EESB_mOSG_:
  580|   115k|    {
  581|   115k|        auto tail_off = tail_offset();
  582|   115k|        if (idx >= tail_off) {
  ------------------
  |  Branch (582:13): [True: 39.8k, False: 75.1k]
  ------------------
  583|  39.8k|            auto tail_size = size - tail_off;
  584|  39.8k|            auto new_tail =
  585|  39.8k|                make_leaf_sub_pos(tail, tail_size)
  586|  39.8k|                    .visit(update_visitor<node_t>{}, idx - tail_off, fn);
  587|  39.8k|            return {size, shift, root->inc(), new_tail};
  588|  75.1k|        } else {
  589|  75.1k|            auto new_root = visit_maybe_relaxed_sub(
  590|  75.1k|                root, shift, tail_off, update_visitor<node_t>{}, idx, fn);
  591|  75.1k|            return {size, shift, new_root, tail->inc()};
  592|  75.1k|        }
  593|   115k|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4takeEm:
  647|  25.2k|    {
  648|  25.2k|        auto tail_off = tail_offset();
  649|  25.2k|        if (new_size == 0) {
  ------------------
  |  Branch (649:13): [True: 3.74k, False: 21.5k]
  ------------------
  650|  3.74k|            return {};
  651|  21.5k|        } else if (new_size >= size) {
  ------------------
  |  Branch (651:20): [True: 1.17k, False: 20.3k]
  ------------------
  652|  1.17k|            return *this;
  653|  20.3k|        } else if (new_size > tail_off) {
  ------------------
  |  Branch (653:20): [True: 1.88k, False: 18.4k]
  ------------------
  654|  1.88k|            auto new_tail = node_t::copy_leaf(tail, new_size - tail_off);
  655|  1.88k|            return {new_size, shift, root->inc(), new_tail};
  656|  18.4k|        } else {
  657|  18.4k|            using std::get;
  658|  18.4k|            auto l = new_size - 1;
  659|  18.4k|            auto v = slice_right_visitor<node_t>();
  660|  18.4k|            auto r = visit_maybe_relaxed_sub(root, shift, tail_off, v, l);
  661|  18.4k|            auto new_shift = get<0>(r);
  662|  18.4k|            auto new_root  = get<1>(r);
  663|  18.4k|            auto new_tail  = get<3>(r);
  664|  18.4k|            if (new_root) {
  ------------------
  |  Branch (664:17): [True: 14.2k, False: 4.26k]
  ------------------
  665|  14.2k|                IMMER_ASSERT_TAGGED(new_root->compute_shift() == get<0>(r));
  ------------------
  |  |   68|  14.2k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (665:17): [True: 14.2k, False: 0]
  ------------------
  666|  14.2k|                assert(new_root->check(new_shift, new_size - get<2>(r)));
  ------------------
  |  Branch (666:17): [True: 14.2k, False: 0]
  ------------------
  667|  14.2k|                return {new_size, new_shift, new_root, new_tail};
  668|  14.2k|            } else {
  669|  4.26k|                return {new_size, BL, empty_root(), new_tail};
  670|  4.26k|            }
  671|  18.4k|        }
  672|  25.2k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEC2ERKSB_:
  151|  9.84k|        : rrbtree{other.size, other.shift, other.root, other.tail}
  152|  9.84k|    {
  153|  9.84k|        inc();
  154|  9.84k|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE3incEv:
  187|  9.84k|    {
  188|  9.84k|        root->inc();
  189|  9.84k|        tail->inc();
  190|  9.84k|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4dropEm:
  711|  26.8k|    {
  712|  26.8k|        if (elems == 0) {
  ------------------
  |  Branch (712:13): [True: 2.56k, False: 24.2k]
  ------------------
  713|  2.56k|            return *this;
  714|  24.2k|        } else if (elems >= size) {
  ------------------
  |  Branch (714:20): [True: 2.13k, False: 22.1k]
  ------------------
  715|  2.13k|            return {};
  716|  22.1k|        } else if (elems == tail_offset()) {
  ------------------
  |  Branch (716:20): [True: 1.82k, False: 20.3k]
  ------------------
  717|  1.82k|            return {size - elems, BL, empty_root(), tail->inc()};
  718|  20.3k|        } else if (elems > tail_offset()) {
  ------------------
  |  Branch (718:20): [True: 1.92k, False: 18.3k]
  ------------------
  719|  1.92k|            auto tail_off = tail_offset();
  720|  1.92k|            auto new_tail =
  721|  1.92k|                node_t::copy_leaf(tail, elems - tail_off, size - tail_off);
  722|  1.92k|            return {size - elems, BL, empty_root(), new_tail};
  723|  18.3k|        } else {
  724|  18.3k|            using std::get;
  725|  18.3k|            auto v = slice_left_visitor<node_t>();
  726|  18.3k|            auto r =
  727|  18.3k|                visit_maybe_relaxed_sub(root, shift, tail_offset(), v, elems);
  728|  18.3k|            auto new_root  = get<1>(r);
  729|  18.3k|            auto new_shift = get<0>(r);
  730|  18.3k|            return {size - elems, new_shift, new_root, tail->inc()};
  731|  18.3k|        }
  732|  26.8k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE8max_sizeEv:
   54|  2.22M|    {
   55|  2.22M|        auto S = sizeof(size_t) * 8;
   56|  2.22M|        return ((size_t{1} << BL) - std::min(size_t{BL}, size_t{2})) *
   57|  2.22M|               ipow((size_t{1} << B) - 2, (S - BL) / B);
   58|  2.22M|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE6concatERKSB_:
  735|   940k|    {
  736|   940k|        assert(r.size + size <= max_size());
  ------------------
  |  Branch (736:9): [True: 940k, False: 0]
  ------------------
  737|   940k|        using std::get;
  738|   940k|        if (size == 0)
  ------------------
  |  Branch (738:13): [True: 2.43k, False: 937k]
  ------------------
  739|  2.43k|            return r;
  740|   937k|        else if (r.size == 0)
  ------------------
  |  Branch (740:18): [True: 1.73k, False: 936k]
  ------------------
  741|  1.73k|            return *this;
  742|   936k|        else if (r.tail_offset() == 0) {
  ------------------
  |  Branch (742:18): [True: 482k, False: 453k]
  ------------------
  743|       |            // just concat the tail, similar to push_back
  744|   482k|            auto tail_offst = tail_offset();
  745|   482k|            auto tail_size  = size - tail_offst;
  746|   482k|            if (tail_size == branches<BL>) {
  ------------------
  |  Branch (746:17): [True: 134k, False: 347k]
  ------------------
  747|   134k|                auto new_root =
  748|   134k|                    push_tail(root, shift, tail_offst, tail, tail_size);
  749|   134k|                tail->inc();
  750|   134k|                return {size + r.size,
  751|   134k|                        get<0>(new_root),
  752|   134k|                        get<1>(new_root),
  753|   134k|                        r.tail->inc()};
  754|   347k|            } else if (tail_size + r.size <= branches<BL>) {
  ------------------
  |  Branch (754:24): [True: 10.7k, False: 337k]
  ------------------
  755|  10.7k|                auto new_tail =
  756|  10.7k|                    node_t::copy_leaf(tail, tail_size, r.tail, r.size);
  757|  10.7k|                return {size + r.size, shift, root->inc(), new_tail};
  758|   337k|            } else {
  759|   337k|                auto remaining = branches<BL> - tail_size;
  760|   337k|                auto add_tail =
  761|   337k|                    node_t::copy_leaf(tail, tail_size, r.tail, remaining);
  762|   337k|                IMMER_TRY {
  ------------------
  |  |   49|   337k|#define IMMER_TRY try
  ------------------
  763|   337k|                    auto new_tail =
  764|   337k|                        node_t::copy_leaf(r.tail, remaining, r.size);
  765|   337k|                    IMMER_TRY {
  ------------------
  |  |   49|   337k|#define IMMER_TRY try
  ------------------
  766|   337k|                        auto new_root = push_tail(
  767|   337k|                            root, shift, tail_offst, add_tail, branches<BL>);
  768|   337k|                        return {size + r.size,
  769|   337k|                                get<0>(new_root),
  770|   337k|                                get<1>(new_root),
  771|   337k|                                new_tail};
  772|   337k|                    }
  773|   337k|                    IMMER_CATCH (...) {
  774|      0|                        node_t::delete_leaf(new_tail, r.size - remaining);
  775|      0|                        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  776|      0|                    }
  777|   337k|                }
  778|   337k|                IMMER_CATCH (...) {
  779|      0|                    node_t::delete_leaf(add_tail, branches<BL>);
  780|      0|                    IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  781|      0|                }
  782|   337k|            }
  783|   482k|        } else if (tail_offset() == 0) {
  ------------------
  |  Branch (783:20): [True: 3.64k, False: 449k]
  ------------------
  784|  3.64k|            auto tail_offst = tail_offset();
  785|  3.64k|            auto tail_size  = size - tail_offst;
  786|  3.64k|            auto concated =
  787|  3.64k|                concat_trees(tail, tail_size, r.root, r.shift, r.tail_offset());
  788|  3.64k|            auto new_shift = concated.shift();
  789|  3.64k|            auto new_root  = concated.node();
  790|  3.64k|            IMMER_ASSERT_TAGGED(new_shift == new_root->compute_shift());
  ------------------
  |  |   68|  3.64k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (790:13): [True: 3.64k, False: 0]
  ------------------
  791|  3.64k|            assert(new_root->check(new_shift, size + r.tail_offset()));
  ------------------
  |  Branch (791:13): [True: 3.64k, False: 0]
  ------------------
  792|  3.64k|            return {size + r.size, new_shift, new_root, r.tail->inc()};
  793|   449k|        } else {
  794|   449k|            auto tail_offst = tail_offset();
  795|   449k|            auto tail_size  = size - tail_offst;
  796|   449k|            auto concated   = concat_trees(root,
  797|   449k|                                         shift,
  798|   449k|                                         tail_offst,
  799|   449k|                                         tail,
  800|   449k|                                         tail_size,
  801|   449k|                                         r.root,
  802|   449k|                                         r.shift,
  803|   449k|                                         r.tail_offset());
  804|   449k|            auto new_shift  = concated.shift();
  805|   449k|            auto new_root   = concated.node();
  806|   449k|            IMMER_ASSERT_TAGGED(new_shift == new_root->compute_shift());
  ------------------
  |  |   68|   449k|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (806:13): [True: 449k, False: 0]
  ------------------
  807|   449k|            assert(new_root->check(new_shift, size + r.tail_offset()));
  ------------------
  |  Branch (807:13): [True: 449k, False: 0]
  ------------------
  808|   449k|            return {size + r.size, new_shift, new_root, r.tail->inc()};
  809|   449k|        }
  810|   940k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE13push_back_mutENS9_5applyIS6_E4type4editEi:
  478|  33.0k|    {
  479|  33.0k|        auto ts = tail_size();
  480|  33.0k|        if (ts < branches<BL>) {
  ------------------
  |  Branch (480:13): [True: 19.4k, False: 13.5k]
  ------------------
  481|  19.4k|            ensure_mutable_tail(e, ts);
  482|  19.4k|            new (&tail->leaf()[ts]) T(std::move(value));
  483|  19.4k|        } else {
  484|  13.5k|            using std::get;
  485|  13.5k|            auto new_tail = node_t::make_leaf_e(e, std::move(value));
  486|  13.5k|            auto tail_off = tail_offset();
  487|  13.5k|            IMMER_TRY {
  ------------------
  |  |   49|  13.5k|#define IMMER_TRY try
  ------------------
  488|  13.5k|                push_tail_mut(e, tail_off, tail, ts);
  489|  13.5k|                tail = new_tail;
  490|  13.5k|            }
  491|  13.5k|            IMMER_CATCH (...) {
  492|      0|                node_t::delete_leaf(new_tail, 1u);
  493|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  494|      0|            }
  495|  13.5k|        }
  496|  33.0k|        ++size;
  497|  33.0k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE19ensure_mutable_tailENS9_5applyIS6_E4type4editEj:
  469|   201k|    {
  470|   201k|        if (!tail->can_mutate(e)) {
  ------------------
  |  Branch (470:13): [True: 4.49k, False: 196k]
  ------------------
  471|  4.49k|            auto new_tail = node_t::copy_leaf_e(e, tail, n);
  472|  4.49k|            dec_leaf(tail, n);
  473|  4.49k|            tail = new_tail;
  474|  4.49k|        }
  475|   201k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE13push_tail_mutENS9_5applyIS6_E4type4editEmPNS1_4nodeIiSA_Lj2ELj2EEEj:
  417|   228k|    {
  418|   228k|        if (auto r = root->relaxed()) {
  ------------------
  |  Branch (418:18): [True: 52.6k, False: 175k]
  ------------------
  419|  52.6k|            auto new_root =
  420|  52.6k|                make_relaxed_pos(root, shift, r)
  421|  52.6k|                    .visit(push_tail_mut_visitor<node_t>{}, e, tail, tail_size);
  422|  52.6k|            if (new_root) {
  ------------------
  |  Branch (422:17): [True: 51.2k, False: 1.41k]
  ------------------
  423|  51.2k|                root = new_root;
  424|  51.2k|            } else {
  425|  1.41k|                auto new_root = node_t::make_inner_r_e(e);
  426|  1.41k|                IMMER_TRY {
  ------------------
  |  |   49|  1.41k|#define IMMER_TRY try
  ------------------
  427|  1.41k|                    auto new_path        = node_t::make_path_e(e, shift, tail);
  428|  1.41k|                    new_root->inner()[0] = root;
  429|  1.41k|                    new_root->inner()[1] = new_path;
  430|  1.41k|                    new_root->relaxed()->d.sizes[0] = tail_off;
  431|  1.41k|                    new_root->relaxed()->d.sizes[1] = tail_off + tail_size;
  432|  1.41k|                    assert(tail_off);
  ------------------
  |  Branch (432:21): [True: 1.41k, False: 0]
  ------------------
  433|  1.41k|                    assert(tail_size);
  ------------------
  |  Branch (433:21): [True: 1.41k, False: 0]
  ------------------
  434|  1.41k|                    new_root->relaxed()->d.count = 2u;
  435|  1.41k|                    root                         = new_root;
  436|  1.41k|                    shift += B;
  437|  1.41k|                }
  438|  1.41k|                IMMER_CATCH (...) {
  439|      0|                    node_t::delete_inner_r_e(new_root);
  440|      0|                    IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  441|      0|                }
  442|  1.41k|            }
  443|   175k|        } else if (tail_off == size_t{branches<B>} << shift) {
  ------------------
  |  Branch (443:20): [True: 2.81k, False: 172k]
  ------------------
  444|  2.81k|            auto new_root = node_t::make_inner_e(e);
  445|  2.81k|            IMMER_TRY {
  ------------------
  |  |   49|  2.81k|#define IMMER_TRY try
  ------------------
  446|  2.81k|                auto new_path        = node_t::make_path_e(e, shift, tail);
  447|  2.81k|                new_root->inner()[0] = root;
  448|  2.81k|                new_root->inner()[1] = new_path;
  449|  2.81k|                root                 = new_root;
  450|  2.81k|                shift += B;
  451|  2.81k|            }
  452|  2.81k|            IMMER_CATCH (...) {
  453|      0|                node_t::delete_inner_e(new_root);
  454|      0|                IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  455|      0|            }
  456|   172k|        } else if (tail_off) {
  ------------------
  |  Branch (456:20): [True: 170k, False: 2.16k]
  ------------------
  457|   170k|            auto new_root =
  458|   170k|                make_regular_sub_pos(root, shift, tail_off)
  459|   170k|                    .visit(push_tail_mut_visitor<node_t>{}, e, tail);
  460|   170k|            root = new_root;
  461|   170k|        } else {
  462|  2.16k|            auto new_root = node_t::make_path_e(e, shift, tail);
  463|  2.16k|            dec_empty_regular(root);
  464|  2.16k|            root = new_root;
  465|  2.16k|        }
  466|   228k|    }
flex-vector.cpp:_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE10update_mutIZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSG_E0_EEvNS9_5applyIS6_E4type4editEmOSG_:
  573|  72.0k|    {
  574|  72.0k|        auto& elem = get_mut(e, idx);
  575|  72.0k|        elem       = std::forward<FnT>(fn)(std::move(elem));
  576|  72.0k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE7get_mutENS9_5applyIS6_E4type4editEm:
  539|  72.0k|    {
  540|  72.0k|        auto tail_off = tail_offset();
  541|  72.0k|        if (idx >= tail_off) {
  ------------------
  |  Branch (541:13): [True: 31.0k, False: 41.0k]
  ------------------
  542|  31.0k|            ensure_mutable_tail(e, size - tail_off);
  543|  31.0k|            return tail->leaf()[(idx - tail_off) & mask<BL>];
  544|  41.0k|        } else {
  545|  41.0k|            return visit_maybe_relaxed_sub(root,
  546|  41.0k|                                           shift,
  547|  41.0k|                                           tail_off,
  548|  41.0k|                                           get_mut_visitor<node_t>{},
  549|  41.0k|                                           idx,
  550|  41.0k|                                           e,
  551|  41.0k|                                           &root);
  552|  41.0k|        }
  553|  72.0k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE8take_mutENS9_5applyIS6_E4type4editEm:
  606|  39.6k|    {
  607|  39.6k|        auto tail_off = tail_offset();
  608|  39.6k|        if (new_size == 0) {
  ------------------
  |  Branch (608:13): [True: 619, False: 39.0k]
  ------------------
  609|    619|            *this = {};
  610|  39.0k|        } else if (new_size >= size) {
  ------------------
  |  Branch (610:20): [True: 1.15k, False: 37.8k]
  ------------------
  611|  1.15k|            return;
  612|  37.8k|        } else if (new_size > tail_off) {
  ------------------
  |  Branch (612:20): [True: 737, False: 37.1k]
  ------------------
  613|    737|            auto ts    = size - tail_off;
  614|    737|            auto newts = new_size - tail_off;
  615|    737|            if (tail->can_mutate(e)) {
  ------------------
  |  Branch (615:17): [True: 457, False: 280]
  ------------------
  616|    457|                detail::destroy_n(tail->leaf() + newts, ts - newts);
  617|    457|            } else {
  618|    280|                auto new_tail = node_t::copy_leaf_e(e, tail, newts);
  619|    280|                dec_leaf(tail, ts);
  620|    280|                tail = new_tail;
  621|    280|            }
  622|    737|            size = new_size;
  623|    737|            return;
  624|  37.1k|        } else {
  625|  37.1k|            using std::get;
  626|  37.1k|            auto l = new_size - 1;
  627|  37.1k|            auto v = slice_right_mut_visitor<node_t>();
  628|  37.1k|            auto r = visit_maybe_relaxed_sub(root, shift, tail_off, v, l, e);
  629|  37.1k|            auto new_shift = get<0>(r);
  630|  37.1k|            auto new_root  = get<1>(r);
  631|  37.1k|            auto new_tail  = get<3>(r);
  632|  37.1k|            if (new_root) {
  ------------------
  |  Branch (632:17): [True: 31.2k, False: 5.93k]
  ------------------
  633|  31.2k|                root  = new_root;
  634|  31.2k|                shift = new_shift;
  635|  31.2k|            } else {
  636|  5.93k|                root  = empty_root();
  637|  5.93k|                shift = BL;
  638|  5.93k|            }
  639|  37.1k|            dec_leaf(tail, size - tail_off);
  640|  37.1k|            size = new_size;
  641|  37.1k|            tail = new_tail;
  642|  37.1k|            return;
  643|  37.1k|        }
  644|  39.6k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE8drop_mutENS9_5applyIS6_E4type4editEm:
  675|  40.3k|    {
  676|  40.3k|        using std::get;
  677|  40.3k|        auto tail_off = tail_offset();
  678|  40.3k|        if (elems == 0) {
  ------------------
  |  Branch (678:13): [True: 2.16k, False: 38.1k]
  ------------------
  679|  2.16k|            return;
  680|  38.1k|        } else if (elems >= size) {
  ------------------
  |  Branch (680:20): [True: 412, False: 37.7k]
  ------------------
  681|    412|            *this = {};
  682|  37.7k|        } else if (elems == tail_off) {
  ------------------
  |  Branch (682:20): [True: 276, False: 37.4k]
  ------------------
  683|    276|            dec_inner(root, shift, tail_off);
  684|    276|            shift = BL;
  685|    276|            root  = empty_root();
  686|    276|            size -= elems;
  687|    276|            return;
  688|  37.4k|        } else if (elems > tail_off) {
  ------------------
  |  Branch (688:20): [True: 708, False: 36.7k]
  ------------------
  689|    708|            auto v = slice_left_mut_visitor<node_t>();
  690|    708|            tail   = get<1>(make_leaf_sub_pos(tail, size - tail_off)
  691|    708|                              .visit(v, elems - tail_off, e));
  692|    708|            if (tail_off) {
  ------------------
  |  Branch (692:17): [True: 276, False: 432]
  ------------------
  693|    276|                dec_inner(root, shift, tail_off);
  694|    276|                shift = BL;
  695|    276|                root  = empty_root();
  696|    276|            }
  697|    708|            size -= elems;
  698|    708|            return;
  699|  36.7k|        } else {
  700|  36.7k|            auto v = slice_left_mut_visitor<node_t>();
  701|  36.7k|            auto r =
  702|  36.7k|                visit_maybe_relaxed_sub(root, shift, tail_off, v, elems, e);
  703|  36.7k|            shift = get<0>(r);
  704|  36.7k|            root  = get<1>(r);
  705|  36.7k|            size -= elems;
  706|  36.7k|            return;
  707|  36.7k|        }
  708|  40.3k|    }
_ZN5immer6detail4rbts12concat_mut_lERNS1_7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS9_5applyIS6_E4type4editERKSB_:
  816|   278k|    {
  817|   278k|        assert(&l != &r);
  ------------------
  |  Branch (817:9): [True: 278k, False: 0]
  ------------------
  818|   278k|        assert(r.size < (std::numeric_limits<size_t>::max() - l.size));
  ------------------
  |  Branch (818:9): [True: 278k, False: 0]
  ------------------
  819|   278k|        using std::get;
  820|   278k|        if (l.size == 0)
  ------------------
  |  Branch (820:13): [True: 326, False: 278k]
  ------------------
  821|    326|            l = r;
  822|   278k|        else if (r.size == 0)
  ------------------
  |  Branch (822:18): [True: 325, False: 278k]
  ------------------
  823|    325|            return;
  824|   278k|        else if (r.tail_offset() == 0) {
  ------------------
  |  Branch (824:18): [True: 211k, False: 66.3k]
  ------------------
  825|       |            // just concat the tail, similar to push_back
  826|   211k|            auto tail_offst = l.tail_offset();
  827|   211k|            auto tail_size  = l.size - tail_offst;
  828|   211k|            if (tail_size == branches<BL>) {
  ------------------
  |  Branch (828:17): [True: 65.2k, False: 146k]
  ------------------
  829|  65.2k|                l.push_tail_mut(el, tail_offst, l.tail, tail_size);
  830|  65.2k|                l.tail = r.tail->inc();
  831|  65.2k|                l.size += r.size;
  832|  65.2k|                return;
  833|   146k|            } else if (tail_size + r.size <= branches<BL>) {
  ------------------
  |  Branch (833:24): [True: 354, False: 146k]
  ------------------
  834|    354|                l.ensure_mutable_tail(el, tail_size);
  835|    354|                detail::uninitialized_copy(r.tail->leaf(),
  836|    354|                                           r.tail->leaf() + r.size,
  837|    354|                                           l.tail->leaf() + tail_size);
  838|    354|                l.size += r.size;
  839|    354|                return;
  840|   146k|            } else {
  841|   146k|                auto remaining = branches<BL> - tail_size;
  842|   146k|                l.ensure_mutable_tail(el, tail_size);
  843|   146k|                detail::uninitialized_copy(r.tail->leaf(),
  844|   146k|                                           r.tail->leaf() + remaining,
  845|   146k|                                           l.tail->leaf() + tail_size);
  846|   146k|                IMMER_TRY {
  ------------------
  |  |   49|   146k|#define IMMER_TRY try
  ------------------
  847|   146k|                    auto new_tail =
  848|   146k|                        node_t::copy_leaf_e(el, r.tail, remaining, r.size);
  849|   146k|                    IMMER_TRY {
  ------------------
  |  |   49|   146k|#define IMMER_TRY try
  ------------------
  850|   146k|                        l.push_tail_mut(el, tail_offst, l.tail, branches<BL>);
  851|   146k|                        l.tail = new_tail;
  852|   146k|                        l.size += r.size;
  853|   146k|                        return;
  854|   146k|                    }
  855|   146k|                    IMMER_CATCH (...) {
  856|      0|                        node_t::delete_leaf(new_tail, r.size - remaining);
  857|      0|                        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  858|      0|                    }
  859|   146k|                }
  860|   146k|                IMMER_CATCH (...) {
  861|      0|                    detail::destroy_n(r.tail->leaf() + tail_size, remaining);
  862|      0|                    IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  863|      0|                }
  864|   146k|            }
  865|   211k|        } else if (l.tail_offset() == 0) {
  ------------------
  |  Branch (865:20): [True: 460, False: 65.8k]
  ------------------
  866|    460|            if (supports_transient_concat) {
  ------------------
  |  Branch (866:17): [Folded, False: 460]
  ------------------
  867|      0|                auto tail_offst = l.tail_offset();
  868|      0|                auto tail_size  = l.size - tail_offst;
  869|      0|                auto concated =
  870|      0|                    concat_trees_mut(el,
  871|      0|                                     el,
  872|      0|                                     l.tail,
  873|      0|                                     tail_size,
  874|      0|                                     MemoryPolicy::transience_t::noone,
  875|      0|                                     r.root,
  876|      0|                                     r.shift,
  877|      0|                                     r.tail_offset());
  878|      0|                IMMER_ASSERT_TAGGED(concated.shift() ==
  ------------------
  |  |   68|      0|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (878:17): [True: 0, False: 0]
  ------------------
  879|      0|                                    concated.node()->compute_shift());
  880|      0|                l.size += r.size;
  881|      0|                l.shift = concated.shift();
  882|      0|                l.root  = concated.node();
  883|      0|                l.tail  = r.tail;
  884|      0|                assert(l.check_tree());
  ------------------
  |  Branch (884:17): [True: 0, False: 0]
  ------------------
  885|    460|            } else {
  886|    460|                auto tail_offst = l.tail_offset();
  887|    460|                auto tail_size  = l.size - tail_offst;
  888|    460|                auto concated   = concat_trees(
  889|    460|                    l.tail, tail_size, r.root, r.shift, r.tail_offset());
  890|    460|                l = {l.size + r.size,
  891|    460|                     concated.shift(),
  892|    460|                     concated.node(),
  893|    460|                     r.tail->inc()};
  894|    460|                assert(l.check_tree());
  ------------------
  |  Branch (894:17): [True: 460, False: 0]
  ------------------
  895|    460|                return;
  896|    460|            }
  897|  65.8k|        } else {
  898|  65.8k|            if (supports_transient_concat) {
  ------------------
  |  Branch (898:17): [Folded, False: 65.8k]
  ------------------
  899|      0|                auto tail_offst = l.tail_offset();
  900|      0|                auto tail_size  = l.size - tail_offst;
  901|      0|                assert(l.check_tree());
  ------------------
  |  Branch (901:17): [True: 0, False: 0]
  ------------------
  902|      0|                assert(r.check_tree());
  ------------------
  |  Branch (902:17): [True: 0, False: 0]
  ------------------
  903|      0|                auto concated =
  904|      0|                    concat_trees_mut(el,
  905|      0|                                     el,
  906|      0|                                     l.root,
  907|      0|                                     l.shift,
  908|      0|                                     tail_offst,
  909|      0|                                     l.tail,
  910|      0|                                     tail_size,
  911|      0|                                     MemoryPolicy::transience_t::noone,
  912|      0|                                     r.root,
  913|      0|                                     r.shift,
  914|      0|                                     r.tail_offset());
  915|      0|                IMMER_ASSERT_TAGGED(concated.shift() ==
  ------------------
  |  |   68|      0|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (915:17): [True: 0, False: 0]
  ------------------
  916|      0|                                    concated.node()->compute_shift());
  917|      0|                l.size += r.size;
  918|      0|                l.shift = concated.shift();
  919|      0|                l.root  = concated.node();
  920|      0|                l.tail  = r.tail;
  921|      0|                assert(l.check_tree());
  ------------------
  |  Branch (921:17): [True: 0, False: 0]
  ------------------
  922|  65.8k|            } else {
  923|  65.8k|                auto tail_offst = l.tail_offset();
  924|  65.8k|                auto tail_size  = l.size - tail_offst;
  925|  65.8k|                auto concated   = concat_trees(l.root,
  926|  65.8k|                                             l.shift,
  927|  65.8k|                                             tail_offst,
  928|  65.8k|                                             l.tail,
  929|  65.8k|                                             tail_size,
  930|  65.8k|                                             r.root,
  931|  65.8k|                                             r.shift,
  932|  65.8k|                                             r.tail_offset());
  933|  65.8k|                l               = {l.size + r.size,
  934|  65.8k|                                   concated.shift(),
  935|  65.8k|                                   concated.node(),
  936|  65.8k|                                   r.tail->inc()};
  937|  65.8k|            }
  938|  65.8k|        }
  939|   278k|    }
_ZN5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEaSERKSB_:
  163|  1.93k|    {
  164|  1.93k|        auto next{other};
  165|  1.93k|        swap(*this, next);
  166|  1.93k|        return *this;
  167|  1.93k|    }
_ZN5immer6detail4rbts12concat_mut_rERKNS1_7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERSB_NS9_5applyIS6_E4type4editE:
  942|  3.36k|    {
  943|  3.36k|        assert(&l != &r);
  ------------------
  |  Branch (943:9): [True: 3.36k, False: 0]
  ------------------
  944|  3.36k|        assert(r.size < (std::numeric_limits<size_t>::max() - l.size));
  ------------------
  |  Branch (944:9): [True: 3.36k, False: 0]
  ------------------
  945|  3.36k|        using std::get;
  946|  3.36k|        if (r.size == 0)
  ------------------
  |  Branch (946:13): [True: 300, False: 3.06k]
  ------------------
  947|    300|            r = std::move(l);
  948|  3.06k|        else if (l.size == 0)
  ------------------
  |  Branch (948:18): [True: 237, False: 2.83k]
  ------------------
  949|    237|            return;
  950|  2.83k|        else if (r.tail_offset() == 0) {
  ------------------
  |  Branch (950:18): [True: 751, False: 2.07k]
  ------------------
  951|       |            // just concat the tail, similar to push_back
  952|    751|            auto tail_offst = l.tail_offset();
  953|    751|            auto tail_size  = l.size - tail_offst;
  954|    751|            if (tail_size == branches<BL>) {
  ------------------
  |  Branch (954:17): [True: 231, False: 520]
  ------------------
  955|       |                // this could be improved by making sure that the
  956|       |                // newly created nodes as part of the `push_tail()`
  957|       |                // are tagged with `er`
  958|    231|                auto res =
  959|    231|                    l.push_tail(l.root, l.shift, tail_offst, l.tail, tail_size);
  960|    231|                l.tail->inc(); // note: leak if mutably concatenated
  961|       |                               // with itself, but this is forbidden
  962|       |                               // by the interface
  963|    231|                r = {l.size + r.size, get<0>(res), get<1>(res), r.tail->inc()};
  964|    231|                return;
  965|    520|            } else if (tail_size + r.size <= branches<BL>) {
  ------------------
  |  Branch (965:24): [True: 254, False: 266]
  ------------------
  966|       |                // doing this in a exception way mutating way is very
  967|       |                // tricky while potential performance gains are
  968|       |                // minimal (we need to move every element of the right
  969|       |                // tail anyways to make space for the left tail)
  970|       |                //
  971|       |                // we could however improve this by at least moving the
  972|       |                // elements of the right tail...
  973|    254|                auto new_tail =
  974|    254|                    node_t::copy_leaf(l.tail, tail_size, r.tail, r.size);
  975|    254|                r = {l.size + r.size, l.shift, l.root->inc(), new_tail};
  976|    254|                return;
  977|    266|            } else {
  978|       |                // like the immutable version
  979|    266|                auto remaining = branches<BL> - tail_size;
  980|    266|                auto add_tail  = node_t::copy_leaf_e(
  981|    266|                    er, l.tail, tail_size, r.tail, remaining);
  982|    266|                IMMER_TRY {
  ------------------
  |  |   49|    266|#define IMMER_TRY try
  ------------------
  983|    266|                    auto new_tail =
  984|    266|                        node_t::copy_leaf_e(er, r.tail, remaining, r.size);
  985|    266|                    IMMER_TRY {
  ------------------
  |  |   49|    266|#define IMMER_TRY try
  ------------------
  986|       |                        // this could be improved by making sure that the
  987|       |                        // newly created nodes as part of the `push_tail()`
  988|       |                        // are tagged with `er`
  989|    266|                        auto new_root = l.push_tail(l.root,
  990|    266|                                                    l.shift,
  991|    266|                                                    tail_offst,
  992|    266|                                                    add_tail,
  993|    266|                                                    branches<BL>);
  994|    266|                        r             = {l.size + r.size,
  995|    266|                                         get<0>(new_root),
  996|    266|                                         get<1>(new_root),
  997|    266|                                         new_tail};
  998|    266|                        return;
  999|    266|                    }
 1000|    266|                    IMMER_CATCH (...) {
 1001|      0|                        node_t::delete_leaf(new_tail, r.size - remaining);
 1002|      0|                        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1003|      0|                    }
 1004|    266|                }
 1005|    266|                IMMER_CATCH (...) {
 1006|      0|                    node_t::delete_leaf(add_tail, branches<BL>);
 1007|      0|                    IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1008|      0|                }
 1009|    266|            }
 1010|  2.07k|        } else if (l.tail_offset() == 0) {
  ------------------
  |  Branch (1010:20): [True: 645, False: 1.43k]
  ------------------
 1011|    645|            if (supports_transient_concat) {
  ------------------
  |  Branch (1011:17): [Folded, False: 645]
  ------------------
 1012|      0|                auto tail_offst = l.tail_offset();
 1013|      0|                auto tail_size  = l.size - tail_offst;
 1014|      0|                auto concated =
 1015|      0|                    concat_trees_mut(er,
 1016|      0|                                     MemoryPolicy::transience_t::noone,
 1017|      0|                                     l.tail,
 1018|      0|                                     tail_size,
 1019|      0|                                     er,
 1020|      0|                                     r.root,
 1021|      0|                                     r.shift,
 1022|      0|                                     r.tail_offset());
 1023|      0|                IMMER_ASSERT_TAGGED(concated.shift() ==
  ------------------
  |  |   68|      0|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (1023:17): [True: 0, False: 0]
  ------------------
 1024|      0|                                    concated.node()->compute_shift());
 1025|      0|                r.size += l.size;
 1026|      0|                r.shift = concated.shift();
 1027|      0|                r.root  = concated.node();
 1028|      0|                assert(r.check_tree());
  ------------------
  |  Branch (1028:17): [True: 0, False: 0]
  ------------------
 1029|    645|            } else {
 1030|    645|                auto tail_offst = l.tail_offset();
 1031|    645|                auto tail_size  = l.size - tail_offst;
 1032|    645|                auto concated   = concat_trees(
 1033|    645|                    l.tail, tail_size, r.root, r.shift, r.tail_offset());
 1034|    645|                r = {l.size + r.size,
 1035|    645|                     concated.shift(),
 1036|    645|                     concated.node(),
 1037|    645|                     r.tail->inc()};
 1038|    645|                return;
 1039|    645|            }
 1040|  1.43k|        } else {
 1041|  1.43k|            if (supports_transient_concat) {
  ------------------
  |  Branch (1041:17): [Folded, False: 1.43k]
  ------------------
 1042|      0|                auto tail_offst = l.tail_offset();
 1043|      0|                auto tail_size  = l.size - tail_offst;
 1044|      0|                auto concated =
 1045|      0|                    concat_trees_mut(er,
 1046|      0|                                     MemoryPolicy::transience_t::noone,
 1047|      0|                                     l.root,
 1048|      0|                                     l.shift,
 1049|      0|                                     tail_offst,
 1050|      0|                                     l.tail,
 1051|      0|                                     tail_size,
 1052|      0|                                     er,
 1053|      0|                                     r.root,
 1054|      0|                                     r.shift,
 1055|      0|                                     r.tail_offset());
 1056|      0|                IMMER_ASSERT_TAGGED(concated.shift() ==
  ------------------
  |  |   68|      0|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (1056:17): [True: 0, False: 0]
  ------------------
 1057|      0|                                    concated.node()->compute_shift());
 1058|      0|                r.size += l.size;
 1059|      0|                r.shift = concated.shift();
 1060|      0|                r.root  = concated.node();
 1061|      0|                assert(r.check_tree());
  ------------------
  |  Branch (1061:17): [True: 0, False: 0]
  ------------------
 1062|      0|                return;
 1063|  1.43k|            } else {
 1064|  1.43k|                auto tail_offst = l.tail_offset();
 1065|  1.43k|                auto tail_size  = l.size - tail_offst;
 1066|  1.43k|                auto concated   = concat_trees(l.root,
 1067|  1.43k|                                             l.shift,
 1068|  1.43k|                                             tail_offst,
 1069|  1.43k|                                             l.tail,
 1070|  1.43k|                                             tail_size,
 1071|  1.43k|                                             r.root,
 1072|  1.43k|                                             r.shift,
 1073|  1.43k|                                             r.tail_offset());
 1074|  1.43k|                r               = {l.size + r.size,
 1075|  1.43k|                                   concated.shift(),
 1076|  1.43k|                                   concated.node(),
 1077|  1.43k|                                   r.tail->inc()};
 1078|  1.43k|                return;
 1079|  1.43k|            }
 1080|  1.43k|        }
 1081|  3.36k|    }
_ZN5immer6detail4rbts15concat_mut_lr_lERNS1_7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEENS9_5applyIS6_E4type4editESC_SG_:
 1084|  25.2k|    {
 1085|  25.2k|        assert(&l != &r);
  ------------------
  |  Branch (1085:9): [True: 25.2k, False: 0]
  ------------------
 1086|  25.2k|        assert(r.size < (std::numeric_limits<size_t>::max() - l.size));
  ------------------
  |  Branch (1086:9): [True: 25.2k, False: 0]
  ------------------
 1087|  25.2k|        using std::get;
 1088|  25.2k|        if (l.size == 0)
  ------------------
  |  Branch (1088:13): [True: 1.31k, False: 23.9k]
  ------------------
 1089|  1.31k|            l = r;
 1090|  23.9k|        else if (r.size == 0)
  ------------------
  |  Branch (1090:18): [True: 1.62k, False: 22.2k]
  ------------------
 1091|  1.62k|            return;
 1092|  22.2k|        else if (r.tail_offset() == 0) {
  ------------------
  |  Branch (1092:18): [True: 5.10k, False: 17.1k]
  ------------------
 1093|       |            // just concat the tail, similar to push_back
 1094|  5.10k|            auto tail_offst = l.tail_offset();
 1095|  5.10k|            auto tail_size  = l.size - tail_offst;
 1096|  5.10k|            if (tail_size == branches<BL>) {
  ------------------
  |  Branch (1096:17): [True: 876, False: 4.22k]
  ------------------
 1097|    876|                l.push_tail_mut(el, tail_offst, l.tail, tail_size);
 1098|    876|                l.tail = r.tail->inc();
 1099|    876|                l.size += r.size;
 1100|    876|                return;
 1101|  4.22k|            } else if (tail_size + r.size <= branches<BL>) {
  ------------------
  |  Branch (1101:24): [True: 1.72k, False: 2.50k]
  ------------------
 1102|  1.72k|                l.ensure_mutable_tail(el, tail_size);
 1103|  1.72k|                if (r.tail->can_mutate(er))
  ------------------
  |  Branch (1103:21): [True: 627, False: 1.09k]
  ------------------
 1104|    627|                    detail::uninitialized_move(r.tail->leaf(),
 1105|    627|                                               r.tail->leaf() + r.size,
 1106|    627|                                               l.tail->leaf() + tail_size);
 1107|  1.09k|                else
 1108|  1.09k|                    detail::uninitialized_copy(r.tail->leaf(),
 1109|  1.09k|                                               r.tail->leaf() + r.size,
 1110|  1.09k|                                               l.tail->leaf() + tail_size);
 1111|  1.72k|                l.size += r.size;
 1112|  1.72k|                return;
 1113|  2.50k|            } else {
 1114|  2.50k|                auto remaining = branches<BL> - tail_size;
 1115|  2.50k|                l.ensure_mutable_tail(el, tail_size);
 1116|  2.50k|                if (r.tail->can_mutate(er))
  ------------------
  |  Branch (1116:21): [True: 1.06k, False: 1.43k]
  ------------------
 1117|  1.06k|                    detail::uninitialized_move(r.tail->leaf(),
 1118|  1.06k|                                               r.tail->leaf() + remaining,
 1119|  1.06k|                                               l.tail->leaf() + tail_size);
 1120|  1.43k|                else
 1121|  1.43k|                    detail::uninitialized_copy(r.tail->leaf(),
 1122|  1.43k|                                               r.tail->leaf() + remaining,
 1123|  1.43k|                                               l.tail->leaf() + tail_size);
 1124|  2.50k|                IMMER_TRY {
  ------------------
  |  |   49|  2.50k|#define IMMER_TRY try
  ------------------
 1125|  2.50k|                    auto new_tail =
 1126|  2.50k|                        node_t::copy_leaf_e(el, r.tail, remaining, r.size);
 1127|  2.50k|                    IMMER_TRY {
  ------------------
  |  |   49|  2.50k|#define IMMER_TRY try
  ------------------
 1128|  2.50k|                        l.push_tail_mut(el, tail_offst, l.tail, branches<BL>);
 1129|  2.50k|                        l.tail = new_tail;
 1130|  2.50k|                        l.size += r.size;
 1131|  2.50k|                        return;
 1132|  2.50k|                    }
 1133|  2.50k|                    IMMER_CATCH (...) {
 1134|      0|                        node_t::delete_leaf(new_tail, r.size - remaining);
 1135|      0|                        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1136|      0|                    }
 1137|  2.50k|                }
 1138|  2.50k|                IMMER_CATCH (...) {
 1139|      0|                    detail::destroy_n(r.tail->leaf() + tail_size, remaining);
 1140|      0|                    IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
 1141|      0|                }
 1142|  2.50k|            }
 1143|  17.1k|        } else if (l.tail_offset() == 0) {
  ------------------
  |  Branch (1143:20): [True: 3.48k, False: 13.6k]
  ------------------
 1144|  3.48k|            if (supports_transient_concat) {
  ------------------
  |  Branch (1144:17): [Folded, False: 3.48k]
  ------------------
 1145|      0|                auto tail_offst = l.tail_offset();
 1146|      0|                auto tail_size  = l.size - tail_offst;
 1147|      0|                auto concated   = concat_trees_mut(el,
 1148|      0|                                                 el,
 1149|      0|                                                 l.tail,
 1150|      0|                                                 tail_size,
 1151|      0|                                                 er,
 1152|      0|                                                 r.root,
 1153|      0|                                                 r.shift,
 1154|      0|                                                 r.tail_offset());
 1155|      0|                IMMER_ASSERT_TAGGED(concated.shift() ==
  ------------------
  |  |   68|      0|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (1155:17): [True: 0, False: 0]
  ------------------
 1156|      0|                                    concated.node()->compute_shift());
 1157|      0|                l.size += r.size;
 1158|      0|                l.shift = concated.shift();
 1159|      0|                l.root  = concated.node();
 1160|      0|                l.tail  = r.tail;
 1161|      0|                assert(l.check_tree());
  ------------------
  |  Branch (1161:17): [True: 0, False: 0]
  ------------------
 1162|      0|                r.hard_reset();
 1163|      0|                return;
 1164|  3.48k|            } else {
 1165|  3.48k|                auto tail_offst = l.tail_offset();
 1166|  3.48k|                auto tail_size  = l.size - tail_offst;
 1167|  3.48k|                auto concated   = concat_trees(
 1168|  3.48k|                    l.tail, tail_size, r.root, r.shift, r.tail_offset());
 1169|  3.48k|                l = {l.size + r.size,
 1170|  3.48k|                     concated.shift(),
 1171|  3.48k|                     concated.node(),
 1172|  3.48k|                     r.tail->inc()};
 1173|  3.48k|                return;
 1174|  3.48k|            }
 1175|  13.6k|        } else {
 1176|  13.6k|            if (supports_transient_concat) {
  ------------------
  |  Branch (1176:17): [Folded, False: 13.6k]
  ------------------
 1177|      0|                auto tail_offst = l.tail_offset();
 1178|      0|                auto tail_size  = l.size - tail_offst;
 1179|      0|                auto concated   = concat_trees_mut(el,
 1180|      0|                                                 el,
 1181|      0|                                                 l.root,
 1182|      0|                                                 l.shift,
 1183|      0|                                                 tail_offst,
 1184|      0|                                                 l.tail,
 1185|      0|                                                 tail_size,
 1186|      0|                                                 er,
 1187|      0|                                                 r.root,
 1188|      0|                                                 r.shift,
 1189|      0|                                                 r.tail_offset());
 1190|      0|                IMMER_ASSERT_TAGGED(concated.shift() ==
  ------------------
  |  |   68|      0|#define IMMER_ASSERT_TAGGED(assertion) assert(assertion)
  ------------------
  |  Branch (1190:17): [True: 0, False: 0]
  ------------------
 1191|      0|                                    concated.node()->compute_shift());
 1192|      0|                l.size += r.size;
 1193|      0|                l.shift = concated.shift();
 1194|      0|                l.root  = concated.node();
 1195|      0|                l.tail  = r.tail;
 1196|      0|                assert(l.check_tree());
  ------------------
  |  Branch (1196:17): [True: 0, False: 0]
  ------------------
 1197|      0|                r.hard_reset();
 1198|      0|                return;
 1199|  13.6k|            } else {
 1200|  13.6k|                auto tail_offst = l.tail_offset();
 1201|  13.6k|                auto tail_size  = l.size - tail_offst;
 1202|  13.6k|                auto concated   = concat_trees(l.root,
 1203|  13.6k|                                             l.shift,
 1204|  13.6k|                                             tail_offst,
 1205|  13.6k|                                             l.tail,
 1206|  13.6k|                                             tail_size,
 1207|  13.6k|                                             r.root,
 1208|  13.6k|                                             r.shift,
 1209|  13.6k|                                             r.tail_offset());
 1210|  13.6k|                l               = {l.size + r.size,
 1211|  13.6k|                                   concated.shift(),
 1212|  13.6k|                                   concated.node(),
 1213|  13.6k|                                   r.tail->inc()};
 1214|  13.6k|                return;
 1215|  13.6k|            }
 1216|  13.6k|        }
 1217|  25.2k|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE6equalsERKSB_:
  315|  30.1k|    {
  316|  30.1k|        using iter_t = rrbtree_iterator<T, MemoryPolicy, B, BL>;
  317|  30.1k|        if (size != other.size)
  ------------------
  |  Branch (317:13): [True: 9.97k, False: 20.2k]
  ------------------
  318|  9.97k|            return false;
  319|  20.2k|        if (size == 0)
  ------------------
  |  Branch (319:13): [True: 214, False: 20.0k]
  ------------------
  320|    214|            return true;
  321|  20.0k|        auto tail_off       = tail_offset();
  322|  20.0k|        auto tail_off_other = other.tail_offset();
  323|       |        // compare trees
  324|  20.0k|        if (tail_off > 0 && tail_off_other > 0) {
  ------------------
  |  Branch (324:13): [True: 19.0k, False: 917]
  |  Branch (324:29): [True: 18.8k, False: 195]
  ------------------
  325|       |            // other.shift != shift is a theoretical possibility for
  326|       |            // relaxed trees that sadly we haven't managed to exercise
  327|       |            // in tests yet...
  328|  18.8k|            if (other.shift >= shift) {
  ------------------
  |  Branch (328:17): [True: 18.1k, False: 747]
  ------------------
  329|  18.1k|                if (!visit_maybe_relaxed_sub(other.root,
  ------------------
  |  Branch (329:21): [True: 8.70k, False: 9.44k]
  ------------------
  330|  18.1k|                                             other.shift,
  331|  18.1k|                                             tail_off_other,
  332|  18.1k|                                             equals_visitor::rrb{},
  333|  18.1k|                                             iter_t{other},
  334|  18.1k|                                             root,
  335|  18.1k|                                             shift,
  336|  18.1k|                                             tail_off))
  337|  8.70k|                    return false;
  338|  18.1k|            } else {
  339|    747|                if (!visit_maybe_relaxed_sub(root,
  ------------------
  |  Branch (339:21): [True: 394, False: 353]
  ------------------
  340|    747|                                             shift,
  341|    747|                                             tail_off,
  342|    747|                                             equals_visitor::rrb{},
  343|    747|                                             iter_t{*this},
  344|    747|                                             other.root,
  345|    747|                                             other.shift,
  346|    747|                                             tail_off_other))
  347|    394|                    return false;
  348|    747|            }
  349|  18.8k|        }
  350|  10.9k|        return tail_off == tail_off_other
  ------------------
  |  Branch (350:16): [True: 6.95k, False: 3.95k]
  ------------------
  351|  10.9k|                   ? make_leaf_sub_pos(tail, tail_size())
  352|  6.95k|                         .visit(equals_visitor{}, other.tail)
  353|  10.9k|               : tail_off > tail_off_other
  ------------------
  |  Branch (353:18): [True: 1.71k, False: 2.23k]
  ------------------
  354|  3.95k|                   ? std::equal(tail->leaf(),
  355|  1.71k|                                tail->leaf() + (size - tail_off),
  356|  1.71k|                                other.tail->leaf() +
  357|  1.71k|                                    (tail_off - tail_off_other))
  358|       |                   /* otherwise */
  359|  3.95k|                   : std::equal(tail->leaf(),
  360|  2.23k|                                tail->leaf() + (size - tail_off),
  361|  2.23k|                                iter_t{other} + tail_off);
  362|  20.0k|    }
_ZNK5immer6detail4rbts7rrbtreeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE10region_forEm:
  524|  1.44M|    {
  525|  1.44M|        using std::get;
  526|  1.44M|        auto tail_off = tail_offset();
  527|  1.44M|        if (idx >= tail_off) {
  ------------------
  |  Branch (527:13): [True: 4.15k, False: 1.44M]
  ------------------
  528|  4.15k|            return std::make_tuple(tail->leaf(), tail_off, size);
  529|  1.44M|        } else {
  530|  1.44M|            auto subs = visit_maybe_relaxed_sub(
  531|  1.44M|                root, shift, tail_off, region_for_visitor<T>(), idx);
  532|  1.44M|            auto first = idx - get<1>(subs);
  533|  1.44M|            auto end   = first + get<2>(subs);
  534|  1.44M|            return std::make_tuple(get<0>(subs), first, end);
  535|  1.44M|        }
  536|  1.44M|    }

_ZNK5immer6detail4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11dereferenceEv:
   90|  5.83M|    {
   91|  5.83M|        using std::get;
   92|  5.83M|        if (i_ < get<1>(curr_) || i_ >= get<2>(curr_))
  ------------------
  |  Branch (92:13): [True: 38.6k, False: 5.80M]
  |  Branch (92:35): [True: 1.40M, False: 4.39M]
  ------------------
   93|  1.44M|            curr_ = v_->region_for(i_);
   94|  5.83M|        return get<0>(curr_)[i_ - get<1>(curr_)];
   95|  5.83M|    }
_ZN5immer6detail4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE7advanceEl:
   74|   238k|    {
   75|   238k|        using std::get;
   76|   238k|        assert(n <= 0 || i_ + static_cast<size_t>(n) <= v_->size);
  ------------------
  |  Branch (76:9): [True: 425, False: 237k]
  |  Branch (76:9): [True: 237k, False: 0]
  |  Branch (76:9): [True: 238k, False: 0]
  ------------------
   77|   238k|        assert(n >= 0 || static_cast<size_t>(-n) <= i_);
  ------------------
  |  Branch (77:9): [True: 238k, False: 0]
  |  Branch (77:9): [True: 0, False: 0]
  |  Branch (77:9): [True: 238k, False: 0]
  ------------------
   78|   238k|        i_ += n;
   79|   238k|    }
_ZN5immer6detail4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9incrementEv:
   60|  4.41M|    {
   61|  4.41M|        using std::get;
   62|  4.41M|        assert(i_ < v_->size);
  ------------------
  |  Branch (62:9): [True: 4.41M, False: 0]
  ------------------
   63|  4.41M|        ++i_;
   64|  4.41M|    }
_ZN5immer6detail4rbts16rrbtree_iteratorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEC2ERKNS1_7rrbtreeIiSA_Lj2ELj2EEE:
   39|  21.1k|        : v_{&v}
   40|  21.1k|        , i_{0}
   41|  21.1k|        , curr_{nullptr, ~size_t{}, ~size_t{}}
   42|  21.1k|    {
   43|  21.1k|    }

_ZN5immer6detail4rbts12visitor_baseINS1_18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERmEEEDcDpOT_:
   31|  15.5k|    {
   32|  15.5k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  15.5k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERmEEEDcDpOT_:
   31|  44.7k|    {
   32|  44.7k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  44.7k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EEEE13visit_regularIJRNS1_15regular_sub_posISD_EERmEEEDcDpOT_:
   37|  2.19k|    {
   38|  2.19k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  2.19k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb0EEEE13visit_regularIJRNS1_8full_posISD_EEmEEEDcDpOT_:
   37|  5.62k|    {
   38|  5.62k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  5.62k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EEEE13visit_regularIJRNS1_15regular_sub_posISD_EERmEEEDcDpOT_:
   37|  7.47k|    {
   38|  7.47k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  7.47k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EEEE13visit_regularIJRNS1_8full_posISD_EEmEEEDcDpOT_:
   37|  1.63k|    {
   38|  1.63k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  1.63k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18slice_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEELb1EEEE13visit_regularIJRNS1_15regular_sub_posISD_EEmEEEDcDpOT_:
   37|  2.35k|    {
   38|  2.35k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  2.35k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_25concat_trees_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_25singleton_regular_sub_posISD_EENS1_14empty_leaf_posISD_EERPSD_RjRmEEEDcDpOT_:
   37|  8.22k|    {
   38|  8.22k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  8.22k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_25concat_trees_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE11visit_innerIJRNS1_25singleton_regular_sub_posISD_EENS1_14empty_leaf_posISD_EERPSD_RjRmEEEDcDpOT_:
   43|  8.22k|    {
   44|  8.22k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  8.22k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERNS1_25singleton_regular_sub_posISD_EERNS1_14empty_leaf_posISD_EEEEEDcDpOT_:
   31|  5.87k|    {
   32|  5.87k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  5.87k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE11visit_innerIJRNS1_11relaxed_posISD_EERNS1_25singleton_regular_sub_posISD_EERNS1_14empty_leaf_posISD_EEEEEDcDpOT_:
   43|  5.87k|    {
   44|  5.87k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  5.87k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_34concat_rebalance_plan_fill_visitorEE10visit_leafIJRNS1_12leaf_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_21concat_rebalance_planILj2ELj2EEEEEEDcDpOT_:
   49|  2.44M|    {
   50|  2.44M|        return Deriv::visit_node(std::forward<Args>(args)...);
   51|  2.44M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_34concat_rebalance_plan_fill_visitorEE13visit_relaxedIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_21concat_rebalance_planILj2ELj2EEEEEEDcDpOT_:
   31|  21.1M|    {
   32|  21.1M|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  21.1M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_34concat_rebalance_plan_fill_visitorEE11visit_innerIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_21concat_rebalance_planILj2ELj2EEEEEEDcDpOT_:
   43|  21.1M|    {
   44|  21.1M|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  21.1M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_21concat_merger_visitorEE13visit_relaxedIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_13concat_mergerISG_EEEEEDcDpOT_:
   31|  21.1M|    {
   32|  21.1M|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  21.1M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERNS1_25singleton_regular_sub_posISD_EERNS1_14empty_leaf_posISD_EEEEEDcDpOT_:
   31|  17.6k|    {
   32|  17.6k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  17.6k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EERNS1_25singleton_regular_sub_posISD_EERNS1_14empty_leaf_posISD_EEEEEDcDpOT_:
   37|    383|    {
   38|    383|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|    383|    }
_ZN5immer6detail4rbts12visitor_baseINS1_20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_8full_posISD_EERNS1_25singleton_regular_sub_posISD_EERNS1_14empty_leaf_posISD_EEEEEDcDpOT_:
   37|  1.06k|    {
   38|  1.06k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  1.06k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_34concat_rebalance_plan_fill_visitorEE10visit_leafIJRNS1_13full_leaf_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_21concat_rebalance_planILj2ELj2EEEEEEDcDpOT_:
   49|  1.16M|    {
   50|  1.16M|        return Deriv::visit_node(std::forward<Args>(args)...);
   51|  1.16M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_34concat_rebalance_plan_fill_visitorEE13visit_regularIJRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_21concat_rebalance_planILj2ELj2EEEEEEDcDpOT_:
   37|   743k|    {
   38|   743k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   743k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_34concat_rebalance_plan_fill_visitorEE11visit_innerIJRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_21concat_rebalance_planILj2ELj2EEEEEEDcDpOT_:
   43|   743k|    {
   44|   743k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|   743k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_21concat_merger_visitorEE13visit_regularIJRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_13concat_mergerISG_EEEEEDcDpOT_:
   37|   743k|    {
   38|   743k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   743k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_34concat_rebalance_plan_fill_visitorEE13visit_regularIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_21concat_rebalance_planILj2ELj2EEEEEEDcDpOT_:
   37|   732k|    {
   38|   732k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   732k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_34concat_rebalance_plan_fill_visitorEE11visit_innerIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_21concat_rebalance_planILj2ELj2EEEEEEDcDpOT_:
   43|   732k|    {
   44|   732k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|   732k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_21concat_merger_visitorEE13visit_regularIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_13concat_mergerISG_EEEEEDcDpOT_:
   37|   732k|    {
   38|   732k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   732k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EERNS1_25singleton_regular_sub_posISD_EERNS1_14empty_leaf_posISD_EEEEEDcDpOT_:
   37|  2.35k|    {
   38|  2.35k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  2.35k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE11visit_innerIJRNS1_15regular_sub_posISD_EERNS1_25singleton_regular_sub_posISD_EERNS1_14empty_leaf_posISD_EEEEEDcDpOT_:
   43|  2.35k|    {
   44|  2.35k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  2.35k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_25concat_trees_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EENS1_8leaf_posISD_EERPSD_RjRmEEEDcDpOT_:
   31|   515k|    {
   32|   515k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|   515k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_25concat_trees_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE11visit_innerIJRNS1_11relaxed_posISD_EENS1_8leaf_posISD_EERPSD_RjRmEEEDcDpOT_:
   43|   515k|    {
   44|   515k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|   515k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EESJ_RNS1_8leaf_posISD_EEEEEDcDpOT_:
   31|   500k|    {
   32|   500k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|   500k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE11visit_innerIJRNS1_11relaxed_posISD_EESJ_RNS1_8leaf_posISD_EEEEEDcDpOT_:
   43|   500k|    {
   44|   500k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|   500k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERNS1_8leaf_posISD_EESJ_EEEDcDpOT_:
   31|  2.38M|    {
   32|  2.38M|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  2.38M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EERNS1_8leaf_posISD_EERNS1_11relaxed_posISD_EEEEEDcDpOT_:
   37|  5.99k|    {
   38|  5.99k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  5.99k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERNS1_15regular_sub_posISD_EERNS1_8leaf_posISD_EEEEEDcDpOT_:
   31|   699k|    {
   32|   699k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|   699k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EESJ_RNS1_8leaf_posISD_EEEEEDcDpOT_:
   37|   127k|    {
   38|   127k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   127k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EERNS1_8leaf_posISD_EESJ_EEEDcDpOT_:
   37|  1.13k|    {
   38|  1.13k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  1.13k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_8full_posISD_EERNS1_15regular_sub_posISD_EERNS1_8leaf_posISD_EEEEEDcDpOT_:
   37|   122k|    {
   38|   122k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   122k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EERNS1_8leaf_posISD_EERNS1_8full_posISD_EEEEEDcDpOT_:
   37|  59.8k|    {
   38|  59.8k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  59.8k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EERNS1_8leaf_posISD_EESJ_EEEDcDpOT_:
   37|  61.9k|    {
   38|  61.9k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  61.9k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EERNS1_8leaf_posISD_EERNS1_11relaxed_posISD_EEEEEDcDpOT_:
   37|   815k|    {
   38|   815k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   815k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EESJ_RNS1_8leaf_posISD_EEEEEDcDpOT_:
   31|  1.80M|    {
   32|  1.80M|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  1.80M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EERNS1_11relaxed_posISD_EERNS1_8leaf_posISD_EEEEEDcDpOT_:
   37|    636|    {
   38|    636|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|    636|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERNS1_8leaf_posISD_EERNS1_15regular_sub_posISD_EEEEEDcDpOT_:
   31|  54.9k|    {
   32|  54.9k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  54.9k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_20concat_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_8full_posISD_EERNS1_11relaxed_posISD_EERNS1_8leaf_posISD_EEEEEDcDpOT_:
   37|  1.82k|    {
   38|  1.82k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  1.82k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERNS1_8leaf_posISD_EERNS1_8full_posISD_EEEEEDcDpOT_:
   31|    350|    {
   32|    350|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|    350|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERNS1_8leaf_posISD_EERNS1_15regular_sub_posISD_EEEEEDcDpOT_:
   31|    364|    {
   32|    364|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|    364|    }
_ZN5immer6detail4rbts12visitor_baseINS1_19concat_both_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERNS1_8leaf_posISD_EESJ_EEEDcDpOT_:
   31|  1.72M|    {
   32|  1.72M|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  1.72M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EERNS1_11relaxed_posISD_EERNS1_8leaf_posISD_EEEEEDcDpOT_:
   37|  15.1k|    {
   38|  15.1k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  15.1k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE11visit_innerIJRNS1_15regular_sub_posISD_EERNS1_11relaxed_posISD_EERNS1_8leaf_posISD_EEEEEDcDpOT_:
   43|  15.1k|    {
   44|  15.1k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  15.1k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_25concat_trees_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EENS1_8leaf_posISD_EERPSD_RjRmEEEDcDpOT_:
   37|  14.8k|    {
   38|  14.8k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  14.8k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_25concat_trees_left_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE11visit_innerIJRNS1_15regular_sub_posISD_EENS1_8leaf_posISD_EERPSD_RjRmEEEDcDpOT_:
   43|  14.8k|    {
   44|  14.8k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  14.8k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_relaxedIJRNS1_11relaxed_posISD_EERNS1_15regular_sub_posISD_EERNS1_8leaf_posISD_EEEEEDcDpOT_:
   31|  6.78k|    {
   32|  6.78k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  6.78k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE11visit_innerIJRNS1_11relaxed_posISD_EERNS1_15regular_sub_posISD_EERNS1_8leaf_posISD_EEEEEDcDpOT_:
   43|  6.78k|    {
   44|  6.78k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  6.78k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE13visit_regularIJRNS1_15regular_sub_posISD_EESJ_RNS1_8leaf_posISD_EEEEEDcDpOT_:
   37|  8.09k|    {
   38|  8.09k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  8.09k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_26concat_trees_right_visitorINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEEE11visit_innerIJRNS1_15regular_sub_posISD_EESJ_RNS1_8leaf_posISD_EEEEEDcDpOT_:
   43|  8.09k|    {
   44|  8.09k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  8.09k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor3rrbEE13visit_relaxedIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERKPSH_RKjRmEEEDcDpOT_:
   31|  12.2k|    {
   32|  12.2k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  12.2k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor3rrbEE11visit_innerIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERKPSH_RKjRmEEEDcDpOT_:
   43|  12.2k|    {
   44|  12.2k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  12.2k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor10this_aux_tEE13visit_relaxedIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERjSJ_RNS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERmEEEDcDpOT_:
   31|  21.3k|    {
   32|  21.3k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  21.3k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor10this_aux_tEE13visit_relaxedIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERjRNS1_15regular_sub_posISH_EERNS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERmEEEDcDpOT_:
   31|  2.23k|    {
   32|  2.23k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  2.23k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor10this_aux_tEE13visit_relaxedIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERjRNS1_8full_posISH_EERNS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERmEEEDcDpOT_:
   31|    887|    {
   32|    887|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|    887|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor10this_aux_tEE13visit_regularIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERjRNS1_8full_posISH_EERNS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERmEEEDcDpOT_:
   37|  1.13k|    {
   38|  1.13k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  1.13k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18region_for_visitorIiEEE13visit_relaxedIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERmEEEDcDpOT_:
   31|  9.73M|    {
   32|  9.73M|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  9.73M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18region_for_visitorIiEEE13visit_regularIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERmEEEDcDpOT_:
   37|   417k|    {
   38|   417k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   417k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18region_for_visitorIiEEE13visit_regularIJRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERmEEEDcDpOT_:
   37|  1.14M|    {
   38|  1.14M|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  1.14M|    }
_ZN5immer6detail4rbts12visitor_baseINS1_18region_for_visitorIiEEE13visit_regularIJRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERmEEEDcDpOT_:
   37|   125k|    {
   38|   125k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   125k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_24for_each_chunk_p_visitorEE13visit_regularIJRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSF_Lj2ELj2EEEEEDaOT_EUlSN_T0_E_EEEDcDpOT_:
   37|   105k|    {
   38|   105k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|   105k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor10this_aux_tEE13visit_regularIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERjSJ_RNS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERmEEEDcDpOT_:
   37|    749|    {
   38|    749|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|    749|    }
_ZN5immer6detail4rbts12visitor_baseINS1_24for_each_chunk_p_visitorEE13visit_regularIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSF_Lj2ELj2EEEEEDaOT_EUlSN_T0_E_EEEDcDpOT_:
   37|  22.8k|    {
   38|  22.8k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  22.8k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_24for_each_chunk_p_visitorEE13visit_regularIJRNS1_11regular_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSF_Lj2ELj2EEEEEDaOT_EUlSN_T0_E_EEEDcDpOT_:
   37|  6.70k|    {
   38|  6.70k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  6.70k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor10this_aux_tEE13visit_regularIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERjRNS1_11relaxed_posISH_EERNS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERmEEEDcDpOT_:
   37|  2.61k|    {
   38|  2.61k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  2.61k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor10this_aux_tEE13visit_regularIJRNS1_8full_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERjRNS1_11relaxed_posISH_EERNS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERmEEEDcDpOT_:
   37|  3.18k|    {
   38|  3.18k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  3.18k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_24for_each_chunk_p_visitorEE13visit_relaxedIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERZNS1_14equals_visitor13equal_chunk_pINS1_16rrbtree_iteratorIiSF_Lj2ELj2EEEEEDaOT_EUlSN_T0_E_EEEDcDpOT_:
   31|   628k|    {
   32|   628k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|   628k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor3rrbEE13visit_relaxedIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERPSH_RjRmEEEDcDpOT_:
   31|  1.40k|    {
   32|  1.40k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   33|  1.40k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor3rrbEE11visit_innerIJRNS1_11relaxed_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEERNS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERPSH_RjRmEEEDcDpOT_:
   43|  1.40k|    {
   44|  1.40k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  1.40k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor3rrbEE13visit_regularIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERKPSH_RKjRmEEEDcDpOT_:
   37|  6.67k|    {
   38|  6.67k|        return Deriv::visit_inner(std::forward<Args>(args)...);
   39|  6.67k|    }
_ZN5immer6detail4rbts12visitor_baseINS1_14equals_visitor3rrbEE11visit_innerIJRNS1_15regular_sub_posINS1_4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEEENS1_16rrbtree_iteratorIiSG_Lj2ELj2EEERKPSH_RKjRmEEEDcDpOT_:
   43|  6.67k|    {
   44|  6.67k|        return Deriv::visit_node(std::forward<Args>(args)...);
   45|  6.67k|    }

_ZN5immer6detail15auto_const_castINS_15refcount_policyEEERT_RKS3_:
  143|   121M|{
  144|   121M|    return const_cast<T&>(x);
  145|   121M|}
_ZN5immer6detail21with_trailing_storageINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE7inner_tEPSC_Lb0EE15get_storage_ptrEv:
  113|   114M|    {
  114|   114M|        check_base();
  115|   114M|        auto* base = static_cast<Derived*>(this);
  116|   114M|        return reinterpret_cast<T*>(base + 1);
  117|   114M|    }
_ZN5immer6detail21with_trailing_storageINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE7inner_tEPSC_Lb0EE10check_baseEv:
  134|   114M|    {
  135|   114M|        static_assert(std::is_standard_layout<Derived>::value &&
  136|   114M|                          !std::is_empty<Derived>::value,
  137|   114M|                      "Please add 'true' if the derived class is emtpy");
  138|   114M|    }
_ZN5immer6detail9static_ifILb1EZNS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14delete_inner_rEPSC_jEUlT_E_EENSt3__19enable_ifIXT_EvE4typeEOT0_:
  329|  12.1M|{
  330|  12.1M|    std::forward<F>(f)(empty_t{});
  331|  12.1M|}
_ZN5immer6detail9destroy_nIPijEENSt3__19enable_ifIX20can_trivially_detroyIT_EES5_E4typeES5_T0_:
  188|  1.52M|{
  189|  1.52M|    return first + n;
  190|  1.52M|}
_ZN5immer6detail21with_trailing_storageINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE6leaf_tEiLb1EE15get_storage_ptrEv:
   75|  10.9M|    {
   76|  10.9M|        check_base();
   77|  10.9M|        return reinterpret_cast<T*>(this);
   78|  10.9M|    }
_ZN5immer6detail21with_trailing_storageINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE6leaf_tEiLb1EE10check_baseEv:
   94|  10.9M|    {
   95|       |        // is_standard_layout requires that only one class in the hierarchy
   96|       |        // contains non-static data members. Since this class contains one
   97|       |        // member, the static_assert will only hold when the derived class is
   98|       |        // empty.
   99|  10.9M|        static_assert(std::is_standard_layout<Derived>::value,
  100|  10.9M|                      "Please remove 'true' if the derived class is non emtpy");
  101|  10.9M|    }
_ZN5immer6detail18uninitialized_copyIPiS2_S2_EENSt3__19enable_ifIX18can_trivially_copyIT_T1_EES6_E4typeES5_T0_S6_:
  236|  1.90M|{
  237|  1.90M|    return std::copy(first, last, out);
  238|  1.90M|}
_ZN5immer6detail9static_ifILb0EPNS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEZNSC_15make_inner_sr_nEjPNS0_3csl10member_twoINSC_14relaxed_data_tENSE_6memberIS8_NSE_7inheritINSA_5applyIS7_E4type5owneeEvE4typeEE4typeEE4typeEEUlT_E_ZNSC_15make_inner_sr_nEjST_EUlSU_E0_EENSt3__19enable_ifIXntT_ET0_E4typeEOT1_OT2_:
  344|   313k|{
  345|   313k|    return std::forward<F2>(f2)(empty_t{});
  346|   313k|}
_ZN5immer6detail4ipowImEET_S2_j:
  323|  71.3M|{
  324|  71.3M|    return pow == 0 ? 1 : num * ipow(num, pow - 1);
  ------------------
  |  Branch (324:12): [True: 2.22M, False: 69.1M]
  ------------------
  325|  71.3M|}
_ZN5immer6detail9static_ifILb0EPNS0_3csl10member_twoINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14relaxed_data_tENS2_6memberISA_NS2_7inheritINSC_5applyIS9_E4type5owneeEvE4typeEE4typeEE4typeEZNSE_24ensure_mutable_relaxed_nENSK_4editEjEUlT_E_ZNSE_24ensure_mutable_relaxed_nEST_jEUlSU_E0_EENSt3__19enable_ifIXntT_ET0_E4typeEOT1_OT2_:
  344|  78.8k|{
  345|  78.8k|    return std::forward<F2>(f2)(empty_t{});
  346|  78.8k|}
_ZN5immer6detail9static_ifILb1EZNS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14make_inner_r_eENSA_5applyIS7_E4type4editEEUlT_E_EENSt3__19enable_ifIXT_EvE4typeEOT0_:
  329|  96.4k|{
  330|  96.4k|    std::forward<F>(f)(empty_t{});
  331|  96.4k|}
_ZN5immer6detail9static_ifILb0EPNS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEZNSC_15make_inner_sr_eENSA_5applyIS7_E4type4editEPNS0_3csl10member_twoINSC_14relaxed_data_tENSI_6memberIS8_NSI_7inheritINSG_5owneeEvE4typeEE4typeEE4typeEEUlT_E_ZNSC_15make_inner_sr_eESH_SU_EUlSV_E0_EENSt3__19enable_ifIXntT_ET0_E4typeEOT1_OT2_:
  344|  11.1k|{
  345|  11.1k|    return std::forward<F2>(f2)(empty_t{});
  346|  11.1k|}
_ZN5immer6detail9destroy_nIPimEENSt3__19enable_ifIX20can_trivially_detroyIT_EES5_E4typeES5_T0_:
  188|    457|{
  189|    457|    return first + n;
  190|    457|}
_ZN5immer6detail9static_ifILb0EPNS0_3csl10member_twoINS0_4rbts4nodeIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14relaxed_data_tENS2_6memberISA_NS2_7inheritINSC_5applyIS9_E4type5owneeEvE4typeEE4typeEE4typeEZNSE_22ensure_mutable_relaxedENSK_4editEEUlT_E_ZNSE_22ensure_mutable_relaxedEST_EUlSU_E0_EENSt3__19enable_ifIXntT_ET0_E4typeEOT1_OT2_:
  344|   167k|{
  345|   167k|    return std::forward<F2>(f2)(empty_t{});
  346|   167k|}
_ZN5immer6detail18uninitialized_moveIPiS2_EENSt3__19enable_ifIX18can_trivially_copyIT_T0_EES6_E4typeES5_S5_S6_:
  210|  1.69k|{
  211|  1.69k|    return std::copy(first, last, out);
  212|  1.69k|}
_ZN5immer6detail8as_constIiEEPKT_PS2_:
   29|  1.41M|{
   30|  1.41M|    return x;
   31|  1.41M|}
_ZN5immer6detail4makeINS_15debug_size_heapINS_8cpp_heapEEENS_3boxIiNS_13memory_policyINS_21free_list_heap_policyIS3_Lm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEEE6holderEJiEEEPT0_DpOT1_:
  260|  19.9k|{
  261|  19.9k|    auto ptr = Heap::allocate(sizeof(T));
  262|  19.9k|    IMMER_TRY {
  ------------------
  |  |   49|  19.9k|#define IMMER_TRY try
  ------------------
  263|  19.9k|        return new (ptr) T(std::forward<Args>(args)...);
  264|  19.9k|    }
  265|  19.9k|    IMMER_CATCH (...) {
  266|      0|        Heap::deallocate(sizeof(T), ptr);
  267|      0|        IMMER_RETHROW;
  ------------------
  |  |   52|      0|#define IMMER_RETHROW throw
  ------------------
  268|      0|    }
  269|  19.9k|}

_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEC2Ev:
   96|  73.9k|    flex_vector() = default;
_ZNKR5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9push_backEi:
  246|   432k|    {
  247|   432k|        return impl_.push_back(std::move(value));
  248|   432k|    }
_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEC2ENS_6detail4rbts7rrbtreeIiS8_Lj2ELj2EEE:
  536|  1.54M|        : impl_(std::move(impl))
  537|  1.54M|    {
  538|       |#if IMMER_DEBUG_PRINT
  539|       |        // force the compiler to generate debug_print, so we can call
  540|       |        // it from a debugger
  541|       |        [](volatile auto) {}(&flex_vector::debug_print);
  542|       |#endif
  543|  1.54M|    }
_ZNK5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4sizeEv:
  181|  2.94M|    IMMER_NODISCARD size_type size() const { return impl_.size; }
flex-vector.cpp:_ZNKR5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE6updateIZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSE_E_EES9_mOSE_:
  323|   115k|    {
  324|   115k|        return impl_.update(index, std::forward<FnT>(fn));
  325|   115k|    }
_ZNKR5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4takeEm:
  350|  25.2k|    {
  351|  25.2k|        return impl_.take(elems);
  352|  25.2k|    }
_ZNKR5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4dropEm:
  376|  26.8k|    {
  377|  26.8k|        return impl_.drop(elems);
  378|  26.8k|    }
_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE8max_sizeEv:
   90|  1.28M|    constexpr static size_type max_size() { return impl_t::max_size(); }
_ZN5immerplERKNS_11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEESB_:
  403|   940k|    {
  404|   940k|        return l.impl_.concat(r.impl_);
  405|   940k|    }
_ZNO5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9push_backEi:
  251|  33.0k|    {
  252|  33.0k|        return push_back_move(move_t{}, std::move(value));
  253|  33.0k|    }
_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE14push_back_moveENSt3__117integral_constantIbLb1EEEi:
  547|  33.0k|    {
  548|  33.0k|        impl_.push_back_mut({}, std::move(value));
  549|  33.0k|        return std::move(*this);
  550|  33.0k|    }
flex-vector.cpp:_ZNO5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE6updateIZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSE_E0_EEDcmOSE_:
  329|  72.0k|    {
  330|  72.0k|        return update_move(move_t{}, index, std::forward<FnT>(fn));
  331|  72.0k|    }
flex-vector.cpp:_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11update_moveIZZ22LLVMFuzzerTestOneInputENK3$_6clI12fuzzer_inputEEDaRT_EUlSE_E0_EEOS9_NSt3__117integral_constantIbLb1EEEmOSE_:
  568|  72.0k|    {
  569|  72.0k|        impl_.update_mut({}, index, std::forward<Fn>(fn));
  570|  72.0k|        return std::move(*this);
  571|  72.0k|    }
_ZNO5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4takeEm:
  355|  39.6k|    {
  356|  39.6k|        return take_move(move_t{}, elems);
  357|  39.6k|    }
_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9take_moveENSt3__117integral_constantIbLb1EEEm:
  579|  39.6k|    {
  580|  39.6k|        impl_.take_mut({}, elems);
  581|  39.6k|        return std::move(*this);
  582|  39.6k|    }
_ZNO5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE4dropEm:
  381|  40.3k|    {
  382|  40.3k|        return drop_move(move_t{}, elems);
  383|  40.3k|    }
_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE9drop_moveENSt3__117integral_constantIbLb1EEEm:
  589|  40.3k|    {
  590|  40.3k|        impl_.drop_mut({}, elems);
  591|  40.3k|        return std::move(*this);
  592|  40.3k|    }
_ZN5immerplEONS_11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEERKS9_:
  409|   278k|    {
  410|   278k|        return concat_move(move_t{}, std::move(l), r);
  411|   278k|    }
_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11concat_moveENSt3__117integral_constantIbLb1EEEOS9_RKS9_:
  600|   278k|    {
  601|   278k|        concat_mut_l(l.impl_, {}, r.impl_);
  602|   278k|        return std::move(l);
  603|   278k|    }
_ZN5immerplERKNS_11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEEOS9_:
  415|  3.36k|    {
  416|  3.36k|        return concat_move(move_t{}, l, std::move(r));
  417|  3.36k|    }
_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11concat_moveENSt3__117integral_constantIbLb1EEERKS9_OS9_:
  606|  3.36k|    {
  607|  3.36k|        concat_mut_r(l.impl_, r.impl_, {});
  608|  3.36k|        return std::move(r);
  609|  3.36k|    }
_ZN5immerplEONS_11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEESA_:
  421|  25.2k|    {
  422|  25.2k|        return concat_move(move_t{}, std::move(l), std::move(r));
  423|  25.2k|    }
_ZN5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE11concat_moveENSt3__117integral_constantIbLb1EEEOS9_SD_:
  612|  25.2k|    {
  613|  25.2k|        concat_mut_lr_l(l.impl_, {}, r.impl_, {});
  614|  25.2k|        return std::move(l);
  615|  25.2k|    }
_ZNK5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EEeqERKS9_:
  222|  30.1k|    {
  223|  30.1k|        return impl_.equals(other.impl_);
  224|  30.1k|    }
_ZNKR5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE5eraseEm:
  480|  3.54k|    {
  481|  3.54k|        return take(pos) + drop(pos + 1);
  482|  3.54k|    }
_ZNKR5immer11flex_vectorIiNS_13memory_policyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEENS_15refcount_policyENS_15spinlock_policyENS_20no_transience_policyELb0ELb1EEELj2ELj2EE6insertEmi:
  442|  19.9k|    {
  443|  19.9k|        return take(pos).push_back(std::move(value)) + drop(pos);
  444|  19.9k|    }

_ZN5immer8cpp_heap10deallocateEmPv:
   36|  10.7M|    static void deallocate(std::size_t, void* data) { ::operator delete(data); }
_ZN5immer8cpp_heap8allocateIJEEEPvmDpT_:
   27|  10.7M|    {
   28|  10.7M|        return ::operator new(size);
   29|  10.7M|    }

_ZN5immer15debug_size_heapINS_8cpp_heapEE10deallocateIJEEEvmPvDpT_:
   57|  10.7M|    {
   58|  10.7M|        auto p = (std::size_t*) (((char*) data) - extra_size);
   59|  10.7M|        assert(*p == size);
  ------------------
  |  Branch (59:9): [True: 10.7M, False: 0]
  ------------------
   60|  10.7M|        Base::deallocate(size + extra_size, p, tags...);
   61|  10.7M|    }
_ZN5immer15debug_size_heapINS_8cpp_heapEE8allocateIJEEEPvmDpT_:
   49|  10.7M|    {
   50|  10.7M|        auto p = (std::size_t*) Base::allocate(size + extra_size, tags...);
   51|  10.7M|        new (p) std::size_t{size};
   52|  10.7M|        return ((char*) p) + extra_size;
   53|  10.7M|    }

_ZN5immer14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEE10deallocateIJEEEvmPvDpT_:
   56|  11.3M|    {
   57|  11.3M|        assert(size <= Size);
  ------------------
  |  Branch (57:9): [True: 11.3M, False: 0]
  ------------------
   58|       |
   59|       |        // we use relaxed, because we are fine with temporarily having
   60|       |        // a few more/less buffers in free list
   61|  11.3M|        if (head().count.load(std::memory_order_relaxed) >= Limit) {
  ------------------
  |  Branch (61:13): [True: 10.7M, False: 611k]
  ------------------
   62|  10.7M|            base_t::deallocate(Size, data);
   63|  10.7M|        } else {
   64|   611k|            auto n = static_cast<node_t*>(data);
   65|   611k|            do {
   66|   611k|                n->next = head().data;
   67|   611k|            } while (!head().data.compare_exchange_weak(n->next, n));
  ------------------
  |  Branch (67:22): [True: 0, False: 611k]
  ------------------
   68|   611k|            head().count.fetch_add(1u, std::memory_order_relaxed);
   69|   611k|        }
   70|  11.3M|    }
_ZN5immer14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEE4headEv:
   80|  25.7M|    {
   81|  25.7M|        static head_t head_{{nullptr}, {0}};
   82|  25.7M|        return head_;
   83|  25.7M|    }
_ZN5immer14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEE8allocateIJEEEPvmDpT_:
   39|  11.3M|    {
   40|  11.3M|        assert(size <= Size);
  ------------------
  |  Branch (40:9): [True: 11.3M, False: 0]
  ------------------
   41|       |
   42|  11.3M|        node_t* n;
   43|  11.3M|        do {
   44|  11.3M|            n = head().data;
   45|  11.3M|            if (!n) {
  ------------------
  |  Branch (45:17): [True: 10.7M, False: 610k]
  ------------------
   46|  10.7M|                auto p = base_t::allocate(Size);
   47|  10.7M|                return p;
   48|  10.7M|            }
   49|  11.3M|        } while (!head().data.compare_exchange_weak(n, n->next));
  ------------------
  |  Branch (49:18): [True: 0, False: 610k]
  ------------------
   50|   610k|        head().count.fetch_sub(1u, std::memory_order_relaxed);
   51|   610k|        return n;
   52|  11.3M|    }

_ZN5immer10split_heapILm56ENS_27thread_local_free_list_heapILm56ELm1024ENS_14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEEEEES5_E10deallocateIJEEEvmPvDpT_:
   33|  28.7M|    {
   34|  28.7M|        if (size <= Size)
  ------------------
  |  Branch (34:13): [True: 28.7M, False: 0]
  ------------------
   35|  28.7M|            SmallHeap::deallocate(size, data, tags...);
   36|      0|        else
   37|      0|            BigHeap::deallocate(size, data, tags...);
   38|  28.7M|    }
_ZN5immer10split_heapILm56ENS_27thread_local_free_list_heapILm56ELm1024ENS_14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEEEEES5_E8allocateIJEEEPvmDpT_:
   26|  16.9M|    {
   27|  16.9M|        return size <= Size ? SmallHeap::allocate(size, tags...)
  ------------------
  |  Branch (27:16): [True: 16.9M, False: 0]
  ------------------
   28|  16.9M|                            : BigHeap::allocate(size, tags...);
   29|  16.9M|    }
_ZN5immer10split_heapILm56ENS_27thread_local_free_list_heapILm56ELm1024ENS_14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEEEEES5_E8allocateIJNS_10norefs_tagEEEEPvmDpT_:
   26|  11.8M|    {
   27|  11.8M|        return size <= Size ? SmallHeap::allocate(size, tags...)
  ------------------
  |  Branch (27:16): [True: 11.8M, False: 0]
  ------------------
   28|  11.8M|                            : BigHeap::allocate(size, tags...);
   29|  11.8M|    }

_ZN5immer6detail30thread_local_free_list_storageINS0_26unsafe_free_list_heap_implIS1_Lm56ELm1024ENS_14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEEEEEE4headEv:
   35|   144M|    {
   36|   144M|        thread_local static head_t head_{nullptr, 0};
   37|   144M|        return head_;
   38|   144M|    }
_ZN5immer6detail30thread_local_free_list_storageINS0_26unsafe_free_list_heap_implIS1_Lm56ELm1024ENS_14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEEEEEE6head_tD2Ev:
   31|      1|        ~head_t() { Heap::clear(); }

_ZN5immer6detail26unsafe_free_list_heap_implINS0_30thread_local_free_list_storageELm56ELm1024ENS_14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEEEE10deallocateIJEEEvmPvDpT_:
   72|  28.7M|    {
   73|  28.7M|        assert(size <= Size);
  ------------------
  |  Branch (73:9): [True: 28.7M, False: 0]
  ------------------
   74|       |
   75|  28.7M|        if (storage::head().count >= Limit)
  ------------------
  |  Branch (75:13): [True: 11.3M, False: 17.4M]
  ------------------
   76|  11.3M|            base_t::deallocate(Size, data);
   77|  17.4M|        else {
   78|  17.4M|            auto n               = static_cast<node_t*>(data);
   79|  17.4M|            n->next              = storage::head().data;
   80|  17.4M|            storage::head().data = n;
   81|  17.4M|            ++storage::head().count;
   82|  17.4M|        }
   83|  28.7M|    }
_ZN5immer6detail26unsafe_free_list_heap_implINS0_30thread_local_free_list_storageELm56ELm1024ENS_14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEEEE5clearEv:
   86|      1|    {
   87|  1.02k|        while (storage::head().data) {
  ------------------
  |  Branch (87:16): [True: 1.02k, False: 1]
  ------------------
   88|  1.02k|            auto n = storage::head().data->next;
   89|  1.02k|            base_t::deallocate(Size, storage::head().data);
   90|  1.02k|            storage::head().data = n;
   91|  1.02k|            --storage::head().count;
   92|  1.02k|        }
   93|      1|    }
_ZN5immer6detail26unsafe_free_list_heap_implINS0_30thread_local_free_list_storageELm56ELm1024ENS_14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEEEE8allocateIJEEEPvmDpT_:
   57|  16.9M|    {
   58|  16.9M|        assert(size <= Size);
  ------------------
  |  Branch (58:9): [True: 16.9M, False: 0]
  ------------------
   59|       |
   60|  16.9M|        auto n = storage::head().data;
   61|  16.9M|        if (!n) {
  ------------------
  |  Branch (61:13): [True: 5.81M, False: 11.1M]
  ------------------
   62|  5.81M|            auto p = base_t::allocate(Size);
   63|  5.81M|            return p;
   64|  5.81M|        }
   65|  11.1M|        --storage::head().count;
   66|  11.1M|        storage::head().data = n->next;
   67|  11.1M|        return n;
   68|  16.9M|    }
_ZN5immer6detail26unsafe_free_list_heap_implINS0_30thread_local_free_list_storageELm56ELm1024ENS_14free_list_heapILm56ELm1024ENS_15debug_size_heapINS_8cpp_heapEEEEEE8allocateIJNS_10norefs_tagEEEEPvmDpT_:
   57|  11.8M|    {
   58|  11.8M|        assert(size <= Size);
  ------------------
  |  Branch (58:9): [True: 11.8M, False: 0]
  ------------------
   59|       |
   60|  11.8M|        auto n = storage::head().data;
   61|  11.8M|        if (!n) {
  ------------------
  |  Branch (61:13): [True: 5.51M, False: 6.32M]
  ------------------
   62|  5.51M|            auto p = base_t::allocate(Size);
   63|  5.51M|            return p;
   64|  5.51M|        }
   65|  6.32M|        --storage::head().count;
   66|  6.32M|        storage::head().data = n->next;
   67|  6.32M|        return n;
   68|  11.8M|    }

_ZN5immer15refcount_policyC2Ev:
   28|  28.7M|        : refcount{1} {};
_ZN5immer15refcount_policy3incEv:
   34|  45.1M|    void inc() { refcount.fetch_add(1, std::memory_order_relaxed); }
_ZN5immer15refcount_policy3decEv:
   36|  73.9M|    bool dec() { return 1 == refcount.fetch_sub(1, std::memory_order_acq_rel); }
_ZN5immer15refcount_policy6uniqueEv:
   38|  2.19M|    bool unique() { return refcount == 1; }

_ZNK5immer20no_transience_policy5applyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEEE4type5ownee5ownedEv:
   36|  28.7M|                bool owned() const { return false; }
_ZNK5immer20no_transience_policy5applyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEEE4type5ownee10can_mutateENS6_4editE:
   35|   117k|                bool can_mutate(edit) const { return false; }
_ZN5immer20no_transience_policy5applyINS_21free_list_heap_policyINS_8cpp_heapELm1024EEEE4type5owneeaSENS6_4editE:
   34|   554k|                ownee& operator=(edit) { return *this; };

