summaryrefslogtreecommitdiff
path: root/liboffloadmic/runtime/offload_util.cpp
blob: 5217e91c20545e5b7a4f01c2a2c21a0ef3b267ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
    Copyright (c) 2014-2015 Intel Corporation.  All Rights Reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:

      * Redistributions of source code must retain the above copyright
        notice, this list of conditions and the following disclaimer.
      * Redistributions in binary form must reproduce the above copyright
        notice, this list of conditions and the following disclaimer in the
        documentation and/or other materials provided with the distribution.
      * Neither the name of Intel Corporation nor the names of its
        contributors may be used to endorse or promote products derived
        from this software without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


#include "offload_util.h"
#include <errno.h>
#include "liboffload_error_codes.h"

#ifdef TARGET_WINNT
void *thread_getspecific(pthread_key_t key)
{
    if (key == 0) {
        return NULL;
    }
    else {
        return TlsGetValue(key);
    }
}

int thread_setspecific(pthread_key_t key, const void *value)
{
    return (TlsSetValue(key, (LPVOID)value)) ? 0 : GetLastError();
}
#endif // TARGET_WINNT

bool __offload_parse_size_string(const char *str, uint64_t &new_size)
{
    uint64_t val;
    char *suffix;

    errno = 0;
#ifdef TARGET_WINNT
    val = strtoul(str, &suffix, 10);
#else // TARGET_WINNT
    val = strtoull(str, &suffix, 10);
#endif // TARGET_WINNT
    if (errno != 0 || suffix == str) {
        return false;
    }

    if (suffix[0] == '\0') {
        // default is Kilobytes
        new_size = val * 1024;
        return true;
    }
    else if (suffix[1] == '\0') {
        // Optional suffixes: B (bytes), K (Kilobytes), M (Megabytes),
        // G (Gigabytes), or T (Terabytes) specify the units.
        switch (suffix[0]) {
            case 'b':
            case 'B':
                new_size = val;
                break;

            case 'k':
            case 'K':
                new_size = val * 1024;
                break;

            case 'm':
            case 'M':
                new_size = val * 1024 * 1024;
                break;

            case 'g':
            case 'G':
                new_size = val * 1024 * 1024 * 1024;
                break;

            case 't':
            case 'T':
                new_size = val * 1024 * 1024 * 1024 * 1024;
                break;

            default:
                return false;
        }
        return true;
    }

    return false;
}

bool __offload_parse_int_string(const char *str, int64_t &value)
{
    int64_t val;
    char *suffix;

    errno = 0;
#ifdef TARGET_WINNT
    val = strtol(str, &suffix, 0);
#else
    val = strtoll(str, &suffix, 0);
#endif
    if (errno == 0 && suffix != str && *suffix == '\0') {
        value = val;
        return true;
    }
    return false;
}

#ifdef TARGET_WINNT
extern void* DL_open(const char *path)
{
    void *handle;
    int error_mode;

    /*
     * do not display message box with error if it the call below fails to
     * load dynamic library.
     */
    error_mode = SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);

    /* load dynamic library */
    handle = (void*) LoadLibrary(path);

    /* restore error mode */
    SetErrorMode(error_mode);

    return handle;
}

extern int DL_addr(const void *addr, Dl_info *dl_info)
{
    MEMORY_BASIC_INFORMATION mem_info;
    char mod_name[MAX_PATH];
    HMODULE mod_handle;

    /* Fill MEMORY_BASIC_INFORMATION struct */
    if (!VirtualQuery(addr, &mem_info, sizeof(mem_info))) {
        return 0;
    }
    mod_handle = (HMODULE)mem_info.AllocationBase;

    /* ANSI file name for module */
    if (!GetModuleFileNameA(mod_handle, (char*) mod_name, sizeof(mod_name))) {
        return 0;
    }
    strcpy(dl_info->dli_fname, mod_name);
    dl_info->dli_fbase = mem_info.BaseAddress;
    dl_info->dli_saddr = addr;
    strcpy(dl_info->dli_sname, mod_name);
    return 1;
}

// Run once
static BOOL CALLBACK __offload_run_once_wrapper(
    PINIT_ONCE initOnce,
    PVOID parameter,
    PVOID *context
)
{
    void (*init_routine)(void) = (void(*)(void)) parameter;
    init_routine();
    return true;
}

void __offload_run_once(OffloadOnceControl *ctrl, void (*func)(void))
{
    InitOnceExecuteOnce(ctrl, __offload_run_once_wrapper, (void*) func, 0);
}
#endif // TARGET_WINNT

/* ARGSUSED */ // version is not used on windows
void* DL_sym(void *handle, const char *name, const char *version)
{
#ifdef TARGET_WINNT
    return GetProcAddress((HMODULE) handle, name);
#else // TARGET_WINNT
    if (version == 0) {
        return dlsym(handle, name);
    }
    else {
        return dlvsym(handle, name, version);
    }
#endif // TARGET_WINNT
}

int64_t get_el_value(
                     char *base,
                     int64_t offset,
                     int64_t size)
{
    int64_t val = 0;
    switch (size) {
        case 1:
            val = static_cast<int64_t>(*((char *)(base + offset)));
            break;
        case 2:
            val = static_cast<int64_t>(*((short *)(base + offset)));
            break;
        case 4:
            val = static_cast<int64_t>(*((int *)(base + offset)));
            break;
        default:
            val = *((int64_t *)(base + offset));
            break;
    }
    return val;
}