rob.hpp 2.5 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
Paul's avatar
Paul committed
24
25
#ifndef MIGRAPHX_GUARD_ROB_HPP
#define MIGRAPHX_GUARD_ROB_HPP
26
27
28
29
30
31
32
33
34
35

#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wglobal-constructors"
#endif

// Used to access private member variables
template <class Tag>
struct stowed
{
36
    // NOLINTNEXTLINE
Paul's avatar
Paul committed
37
38
39
    static typename Tag::type value;
};
template <class Tag>
40
// NOLINTNEXTLINE
41
42
typename Tag::type stowed<Tag>::value;

Paul's avatar
Paul committed
43
template <class Tag, typename Tag::type X>
44
45
struct stow_private
{
Paul's avatar
Paul committed
46
    stow_private() noexcept { stowed<Tag>::value = X; }
47
    // NOLINTNEXTLINE
Paul's avatar
Paul committed
48
    static stow_private instance;
49
};
Paul's avatar
Paul committed
50
template <class Tag, typename Tag::type X>
51
// NOLINTNEXTLINE
Paul's avatar
Paul committed
52
stow_private<Tag, X> stow_private<Tag, X>::instance;
53

Paul's avatar
Paul committed
54
55
56
template <class C, class T>
struct mem_data_ptr
{
Paul's avatar
Paul committed
57
    using type = T C::*;
Paul's avatar
Paul committed
58
};
59

Paul's avatar
Paul committed
60
// NOLINTNEXTLINE
Paul's avatar
Paul committed
61
#define MIGRAPHX_ROB(name, Type, C, mem)               \
Paul's avatar
Paul committed
62
63
64
65
66
67
68
69
70
    struct name##_tag : mem_data_ptr<C, Type>          \
    {                                                  \
    };                                                 \
    template struct stow_private<name##_tag, &C::mem>; \
    template <class T>                                 \
    auto& name(T&& x)                                  \
    {                                                  \
        return x.*stowed<name##_tag>::value;           \
    }
71
72
73
74
75
76

#ifdef __clang__
#pragma clang diagnostic pop
#endif

#endif