Coverage Report

Created: 2026-04-02 03:37

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exec/common/template_helpers.hpp
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include <limits>
21
#include <variant>
22
23
namespace doris {
24
25
template <typename LoopType, LoopType start, LoopType end, template <LoopType> typename Reducer>
26
struct constexpr_loop_match {
27
    template <typename... TArgs>
28
46.9k
    static void run(LoopType target, TArgs&&... args) {
29
46.9k
        if constexpr (start <= end) {
30
42.1k
            if (start == target) {
31
2.33k
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
39.8k
            } else {
33
39.8k
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
39.8k
                        target, std::forward<TArgs>(args)...);
35
39.8k
            }
36
42.1k
        }
37
46.9k
    }
_ZN5doris20constexpr_loop_matchIiLi1ELi8ENS_19PackNullmapsReducerEE3runIJPPKhPhRmmS7_EEEviDpOT_
Line
Count
Source
28
7.14k
    static void run(LoopType target, TArgs&&... args) {
29
7.14k
        if constexpr (start <= end) {
30
7.14k
            if (start == target) {
31
1.46k
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
5.67k
            } else {
33
5.67k
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
5.67k
                        target, std::forward<TArgs>(args)...);
35
5.67k
            }
36
7.14k
        }
37
7.14k
    }
_ZN5doris20constexpr_loop_matchIiLi2ELi8ENS_19PackNullmapsReducerEE3runIJPPKhPhRmmS7_EEEviDpOT_
Line
Count
Source
28
5.67k
    static void run(LoopType target, TArgs&&... args) {
29
5.67k
        if constexpr (start <= end) {
30
5.67k
            if (start == target) {
31
478
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
5.20k
            } else {
33
5.20k
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
5.20k
                        target, std::forward<TArgs>(args)...);
35
5.20k
            }
36
5.67k
        }
37
5.67k
    }
_ZN5doris20constexpr_loop_matchIiLi3ELi8ENS_19PackNullmapsReducerEE3runIJPPKhPhRmmS7_EEEviDpOT_
Line
Count
Source
28
5.20k
    static void run(LoopType target, TArgs&&... args) {
29
5.20k
        if constexpr (start <= end) {
30
5.20k
            if (start == target) {
31
353
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
4.84k
            } else {
33
4.84k
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
4.84k
                        target, std::forward<TArgs>(args)...);
35
4.84k
            }
36
5.20k
        }
37
5.20k
    }
_ZN5doris20constexpr_loop_matchIiLi4ELi8ENS_19PackNullmapsReducerEE3runIJPPKhPhRmmS7_EEEviDpOT_
Line
Count
Source
28
4.84k
    static void run(LoopType target, TArgs&&... args) {
29
4.84k
        if constexpr (start <= end) {
30
4.84k
            if (start == target) {
31
16
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
4.83k
            } else {
33
4.83k
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
4.83k
                        target, std::forward<TArgs>(args)...);
35
4.83k
            }
36
4.84k
        }
37
4.84k
    }
_ZN5doris20constexpr_loop_matchIiLi5ELi8ENS_19PackNullmapsReducerEE3runIJPPKhPhRmmS7_EEEviDpOT_
Line
Count
Source
28
4.83k
    static void run(LoopType target, TArgs&&... args) {
29
4.83k
        if constexpr (start <= end) {
30
4.83k
            if (start == target) {
31
10
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
4.82k
            } else {
33
4.82k
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
4.82k
                        target, std::forward<TArgs>(args)...);
35
4.82k
            }
36
4.83k
        }
37
4.83k
    }
_ZN5doris20constexpr_loop_matchIiLi6ELi8ENS_19PackNullmapsReducerEE3runIJPPKhPhRmmS7_EEEviDpOT_
Line
Count
Source
28
4.82k
    static void run(LoopType target, TArgs&&... args) {
29
4.82k
        if constexpr (start <= end) {
30
4.82k
            if (start == target) {
31
11
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
4.81k
            } else {
33
4.81k
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
4.81k
                        target, std::forward<TArgs>(args)...);
35
4.81k
            }
36
4.82k
        }
37
4.82k
    }
_ZN5doris20constexpr_loop_matchIiLi7ELi8ENS_19PackNullmapsReducerEE3runIJPPKhPhRmmS7_EEEviDpOT_
Line
Count
Source
28
4.81k
    static void run(LoopType target, TArgs&&... args) {
29
4.81k
        if constexpr (start <= end) {
30
4.81k
            if (start == target) {
31
0
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
4.81k
            } else {
33
4.81k
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
4.81k
                        target, std::forward<TArgs>(args)...);
35
4.81k
            }
36
4.81k
        }
37
4.81k
    }
_ZN5doris20constexpr_loop_matchIiLi8ELi8ENS_19PackNullmapsReducerEE3runIJPPKhPhRmmS7_EEEviDpOT_
Line
Count
Source
28
4.81k
    static void run(LoopType target, TArgs&&... args) {
29
4.81k
        if constexpr (start <= end) {
30
4.81k
            if (start == target) {
31
0
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
4.81k
            } else {
33
4.81k
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
4.81k
                        target, std::forward<TArgs>(args)...);
35
4.81k
            }
36
4.81k
        }
37
4.81k
    }
_ZN5doris20constexpr_loop_matchIiLi9ELi8ENS_19PackNullmapsReducerEE3runIJPPKhPhRmmS7_EEEviDpOT_
Line
Count
Source
28
4.81k
    static void run(LoopType target, TArgs&&... args) {
29
        if constexpr (start <= end) {
30
            if (start == target) {
31
                Reducer<start>::run(std::forward<TArgs>(args)...);
32
            } else {
33
                constexpr_loop_match<LoopType, start + 1, end, Reducer>::run(
34
                        target, std::forward<TArgs>(args)...);
35
            }
36
        }
37
4.81k
    }
38
};
39
40
template <int start, int end, template <int> typename Reducer>
41
using constexpr_int_match = constexpr_loop_match<int, start, end, Reducer>;
42
43
45.9M
std::variant<std::false_type, std::true_type> inline make_bool_variant(bool condition) {
44
45.9M
    if (condition) {
45
475k
        return std::true_type {};
46
45.4M
    } else {
47
45.4M
        return std::false_type {};
48
45.4M
    }
49
45.9M
}
50
51
template <typename... Callables>
52
struct Overload : Callables... {
53
    using Callables::operator()...;
54
};
55
56
template <typename... Callables>
57
Overload(Callables&&... callables) -> Overload<Callables...>;
58
59
} // namespace  doris