Remove assert in get_def_bb_for_const
[official-gcc.git] / liboffloadmic / ChangeLog
blobb866cf13adfb8f71c0081eda88d673743f1a3cf2
1 2016-05-26  Chung-Lin Tang  <cltang@codesourcery.com>
3         * plugin/libgomp-plugin-intelmic.cpp (offload): Change return type
4         to bool, adjust return code.
5         (GOMP_OFFLOAD_init_device): Likewise.
6         (GOMP_OFFLOAD_fini_device): Likewise.
7         (get_target_table): Likewise.
8         (offload_image): Likwise.
9         (GOMP_OFFLOAD_load_image): Adjust call to offload_image(), change
10         to return -1 on error.
11         (GOMP_OFFLOAD_unload_image): Change return type to bool, adjust return
12         code.
13         (GOMP_OFFLOAD_alloc): Likewise.
14         (GOMP_OFFLOAD_free): Likewise.
15         (GOMP_OFFLOAD_host2dev): Likewise.
16         (GOMP_OFFLOAD_dev2host): Likewise.
17         (GOMP_OFFLOAD_dev2dev): Likewise.
19 2016-01-20  Ilya Verbin  <ilya.verbin@intel.com>
21         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_run): Pass extra NULL
22         to GOMP_OFFLOAD_async_run.
24 2016-01-19  Martin Jambor  <mjambor@suse.cz>
26         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_async_run): New
27         unused parameter.
28         (GOMP_OFFLOAD_run): Likewise.
30 2015-12-14  Ilya Verbin  <ilya.verbin@intel.com>
32         * plugin/libgomp-plugin-intelmic.cpp (unregister_main_image): Remove.
33         (register_main_image): Do not call unregister_main_image at exit.
34         (GOMP_OFFLOAD_fini_device): Allow for OpenMP.  Unregister main image.
36 2015-11-19  Ilya Verbin  <ilya.verbin@intel.com>
38         * plugin/libgomp-plugin-intelmic.cpp (struct TargetImageDesc): New.
39         (ImgDescMap): New typedef.
40         (image_descriptors): New static var.
41         (init): Allocate image_descriptors.
42         (offload): Remove vars2 argument.  Pass NULL to __offload_offload1
43         instead of vars2.
44         (unregister_main_image): New static function.
45         (register_main_image): Call unregister_main_image at exit.
46         (GOMP_OFFLOAD_init_device): Print device number, fix offload args.
47         (GOMP_OFFLOAD_fini_device): Likewise.
48         (get_target_table): Remove vd1g and vd2g, don't pass them to offload.
49         (offload_image): Remove declaration of the struct TargetImage.
50         Free table.  Insert new descriptor into image_descriptors.
51         (GOMP_OFFLOAD_unload_image): Call __offload_unregister_image, free
52         the corresponding descriptor, and remove it from address_table and
53         image_descriptors.
54         (GOMP_OFFLOAD_alloc): Print device number, remove vd1g.
55         (GOMP_OFFLOAD_free): Likewise.
56         (GOMP_OFFLOAD_host2dev): Print device number, remove vd1g and vd2g.
57         (GOMP_OFFLOAD_dev2host): Likewise.
58         (GOMP_OFFLOAD_run): Print device number, remove vd1g.
59         * plugin/offload_target_main.cpp (__offload_target_table_p1): Remove
60         vd2, don't pass it to __offload_target_enter.
61         (__offload_target_table_p2): Likewise.
62         (__offload_target_alloc): Likewise.
63         (__offload_target_free): Likewise.
64         (__offload_target_host2tgt_p1): Likewise.
65         (__offload_target_host2tgt_p2): Likewise.
66         (__offload_target_tgt2host_p1): Likewise.
67         (__offload_target_tgt2host_p2): Likewise.
68         (__offload_target_run): Likewise.
69         (__offload_target_tgt2tgt): Remove vd1g, don't pass it to
70         __offload_target_enter.
72 2015-11-14  Ilya Verbin  <ilya.verbin@intel.com>
74         * runtime/offload_host.cpp (task_completion_callback): New
75         variable.
76         (offload_proxy_task_completed_ooo): Call task_completion_callback.
77         (__offload_register_task_callback): New function.
78         * runtime/offload_host.h (__offload_register_task_callback): New
79         declaration.
80         * plugin/libgomp-plugin-intelmic.cpp (offload): Add async_data
81         argument, handle async offloading.
82         (register_main_image): Call register_main_image.
83         (GOMP_OFFLOAD_init_device, get_target_table, GOMP_OFFLOAD_alloc,
84         GOMP_OFFLOAD_free, GOMP_OFFLOAD_host2dev, GOMP_OFFLOAD_dev2host,
85         GOMP_OFFLOAD_dev2dev): Adjust offload callers.
86         (GOMP_OFFLOAD_async_run): New function.
87         (GOMP_OFFLOAD_run): Implement using GOMP_OFFLOAD_async_run.
89 2015-10-26  Ilya Verbin  <ilya.verbin@intel.com>
90             Aleksander Ivanushenko  <aleksander.ivanushenko@intel.com>
92         * runtime/offload_host.cpp (OffloadDescriptor::setup_misc_data): Use
93         calloc instead of malloc.
94         (__offload_fini_library): Set mic_engines_total to zero.
96 2015-10-13  Ilya Verbin  <ilya.verbin@intel.com>
98         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_dev2dev): New
99         function.
100         * plugin/offload_target_main.cpp (__offload_target_tgt2tgt): New
101         static function, register it in liboffloadmic.
103 2015-10-08  Ilya Verbin  <ilya.verbin@intel.com>
105         * runtime/offload_engine.cpp (Engine::init_process): Use strdup instead
106         of sizeof+malloc+sprintf, check for return value.
107         * runtime/offload_env.cpp (MicEnvVar::get_env_var_kind): Check for
108         strdup return value.
109         * runtime/offload_host.cpp (__offload_init_library_once): Check for
110         strdup return value.  Fix size calculation of COI_HOST_THREAD_AFFINITY.
111         * runtime/emulator/coi_device.cpp (COIProcessWaitForShutdown): Check for
112         malloc return value.
114 2015-09-29  Ilya Verbin  <ilya.verbin@intel.com>
116         * plugin/libgomp-plugin-intelmic.cpp (OFFLOAD_ACTIVE_WAIT_ENV): New
117         define.
118         (init): Set OFFLOAD_ACTIVE_WAIT env var to 0, if it is not set.
119         * runtime/emulator/coi_common.h (PIPE_HOST_PATH): Replace with ...
120         (PIPE_HOST2TGT_NAME): ... this.
121         (PIPE_TARGET_PATH): Replace with ...
122         (PIPE_TGT2HOST_NAME): ... this.
123         (MALLOCN): New define.
124         (READN): Likewise.
125         (WRITEN): Likewise.
126         (enum cmd_t): Replace CMD_RUN_FUNCTION with CMD_PIPELINE_RUN_FUNCTION.
127         Add CMD_PIPELINE_CREATE, CMD_PIPELINE_DESTROY.
128         * runtime/emulator/coi_device.cpp (engine_dir): New static variable.
129         (pipeline_thread_routine): New static function.
130         (COIProcessWaitForShutdown): Use global engine_dir instead of mic_dir.
131         Rename pipe_host and pipe_target to pipe_host2tgt and pipe_tgt2host.
132         If cmd is CMD_PIPELINE_CREATE, create a new thread for the pipeline.
133         Remove cmd == CMD_RUN_FUNCTION case.
134         * runtime/emulator/coi_device.h (COIERRORN): New define.
135         * runtime/emulator/coi_host.cpp: Include set, map, queue.
136         Replace typedefs with enums and structs.
137         (struct Function): Remove name, add num_buffers, bufs_size,
138         bufs_data_target, misc_data_len, misc_data, return_value_len,
139         return_value, completion_event.
140         (struct Callback): New.
141         (struct Process): Remove pipeline.  Add pipe_host2tgt and pipe_tgt2host.
142         (struct Pipeline): Remove pipe_host and pipe_target.  Add thread,
143         destroy, is_destroyed, pipe_host2tgt_path, pipe_tgt2host_path,
144         pipe_host2tgt, pipe_tgt2host, queue, process.
145         (max_pipeline_num): New static variable.
146         (pipelines): Likewise.
147         (max_event_num): Likewise.
148         (non_signalled_events): Likewise.
149         (errored_events): Likewise.
150         (callbacks): Likewise.
151         (cleanup): Do not check tmp_dirs before free.
152         (start_critical_section): New static function.
153         (finish_critical_section): Likewise.
154         (pipeline_is_destroyed): Likewise.
155         (maybe_invoke_callback): Likewise.
156         (signal_event): Likewise.
157         (get_event_result): Likewise.
158         (COIBufferCopy): Rename arguments according to headers.  Add asserts.
159         Use process' main pipes, instead of pipeline's pipes.  Signal completion
160         event.
161         (COIBufferCreate): Rename arguments according to headers.  Add asserts.
162         Use process' main pipes, instead of pipeline's pipes.
163         (COIBufferCreateFromMemory): Rename arguments according to headers.
164         Add asserts.
165         (COIBufferDestroy): Rename arguments according to headers.  Add asserts.
166         Use process' main pipes, instead of pipeline's pipes.
167         (COIBufferGetSinkAddress): Rename arguments according to headers.
168         Add asserts.
169         (COIBufferMap): Rename arguments according to headers.  Add asserts.
170         Signal completion event.
171         (COIBufferRead): Likewise.
172         (COIBufferSetState): Likewise.
173         (COIBufferUnmap): Likewise.
174         (COIBufferWrite): Likewise.
175         (COIEngineGetCount): Add assert.
176         (COIEngineGetHandle): Rename arguments according to headers.
177         Add assert.
178         (COIEventWait): Rename arguments according to headers.  Add asserts.
179         Implement waiting for events with zero or infinite timeout.
180         (COIEventRegisterCallback): New function.
181         (pipeline_thread_routine): New static function.
182         (COIPipelineCreate): Create a new thread for the pipeline.
183         (COIPipelineDestroy): Exit pipeline thread.
184         (COIPipelineRunFunction): Add the function into pipeline's queue,
185         instead running it here.  Wait for it's completion in case of
186         synchronous execution.
187         (COIProcessCreateFromMemory): Rename arguments according to headers.
188         Add asserts.  Create process' main pipes, instead of pipeline's pipes.
189         (COIProcessDestroy): Rename arguments according to headers.
190         Add asserts.  Destroy all undestroyed pipelines.
191         (COIProcessGetFunctionHandles): Rename arguments according to headers.
192         Add asserts.  Use process' main pipes, instead of pipeline's pipes.
193         Remove useless function names.
194         (COIProcessLoadLibraryFromMemory): Add asserts.  Use process' main
195         pipes, instead of pipeline's pipes.
196         (COIProcessUnloadLibrary): Likewise.
197         (COIEngineGetInfo): Add assert.
198         * runtime/emulator/coi_host.h (COIERRORN): New define.
200 2015-09-28  Ilya Verbin  <ilya.verbin@intel.com>
202         PR other/67652
203         * runtime/offload_engine.cpp (Engine::init_process): Fix sizeof.
205 2015-09-08  Ilya Verbin  <ilya.verbin@intel.com>
207         * Makefile.am (liboffloadmic_host_la_DEPENDENCIES): Remove libcoi_host
208         and libmyo-client.  liboffloadmic_host loads them dynamically.
209         * Makefile.in: Regenerate.
210         * doc/doxygen/header.tex: Merge from upstream, version 20150803
211         <https://openmprtl.org/sites/default/files/liboffload_oss_20150803.tgz>.
212         * runtime/cean_util.cpp: Likewise.
213         * runtime/cean_util.h: Likewise.
214         * runtime/coi/coi_client.cpp: Likewise.
215         * runtime/coi/coi_client.h: Likewise.
216         * runtime/coi/coi_server.cpp: Likewise.
217         * runtime/coi/coi_server.h: Likewise.
218         * runtime/compiler_if_host.cpp: Likewise.
219         * runtime/compiler_if_host.h: Likewise.
220         * runtime/compiler_if_target.cpp: Likewise.
221         * runtime/compiler_if_target.h: Likewise.
222         * runtime/dv_util.cpp: Likewise.
223         * runtime/dv_util.h: Likewise.
224         * runtime/liboffload_error.c: Likewise.
225         * runtime/liboffload_error_codes.h: Likewise.
226         * runtime/liboffload_msg.c: Likewise.
227         * runtime/liboffload_msg.h: Likewise.
228         * runtime/mic_lib.f90: Likewise.
229         * runtime/offload.h: Likewise.
230         * runtime/offload_common.cpp: Likewise.
231         * runtime/offload_common.h: Likewise.
232         * runtime/offload_engine.cpp: Likewise.
233         * runtime/offload_engine.h: Likewise.
234         * runtime/offload_env.cpp: Likewise.
235         * runtime/offload_env.h: Likewise.
236         * runtime/offload_host.cpp: Likewise.
237         * runtime/offload_host.h: Likewise.
238         * runtime/offload_iterator.h: Likewise.
239         * runtime/offload_myo_host.cpp: Likewise.
240         * runtime/offload_myo_host.h: Likewise.
241         * runtime/offload_myo_target.cpp: Likewise.
242         * runtime/offload_myo_target.h: Likewise.
243         * runtime/offload_omp_host.cpp: Likewise.
244         * runtime/offload_omp_target.cpp: Likewise.
245         * runtime/offload_orsl.cpp: Likewise.
246         * runtime/offload_orsl.h: Likewise.
247         * runtime/offload_table.cpp: Likewise.
248         * runtime/offload_table.h: Likewise.
249         * runtime/offload_target.cpp: Likewise.
250         * runtime/offload_target.h: Likewise.
251         * runtime/offload_target_main.cpp: Likewise.
252         * runtime/offload_timer.h: Likewise.
253         * runtime/offload_timer_host.cpp: Likewise.
254         * runtime/offload_timer_target.cpp: Likewise.
255         * runtime/offload_trace.cpp: Likewise.
256         * runtime/offload_trace.h: Likewise.
257         * runtime/offload_util.cpp: Likewise.
258         * runtime/offload_util.h: Likewise.
259         * runtime/ofldbegin.cpp: Likewise.
260         * runtime/ofldend.cpp: Likewise.
261         * runtime/orsl-lite/include/orsl-lite.h: Likewise.
262         * runtime/orsl-lite/lib/orsl-lite.c: Likewise.
263         * runtime/use_mpss2.txt: Likewise.
264         * include/coi/common/COIEngine_common.h: Merge from upstream, MPSS
265         version 3.5
266         <http://registrationcenter.intel.com/irc_nas/7445/mpss-src-3.5.tar>.
267         * include/coi/common/COIEvent_common.h: Likewise.
268         * include/coi/common/COIMacros_common.h: Likewise.
269         * include/coi/common/COIPerf_common.h: Likewise.
270         * include/coi/common/COIResult_common.h: Likewise.
271         * include/coi/common/COISysInfo_common.h: Likewise.
272         * include/coi/common/COITypes_common.h: Likewise.
273         * include/coi/sink/COIBuffer_sink.h: Likewise.
274         * include/coi/sink/COIPipeline_sink.h: Likewise.
275         * include/coi/sink/COIProcess_sink.h: Likewise.
276         * include/coi/source/COIBuffer_source.h: Likewise.
277         * include/coi/source/COIEngine_source.h: Likewise.
278         * include/coi/source/COIEvent_source.h: Likewise.
279         * include/coi/source/COIPipeline_source.h: Likewise.
280         * include/coi/source/COIProcess_source.h: Likewise.
281         * include/myo/myo.h: Likewise.
282         * include/myo/myoimpl.h: Likewise.
283         * include/myo/myotypes.h: Likewise.
284         * plugin/Makefile.am (myo_inc_dir): Remove.
285         (libgomp_plugin_intelmic_la_CPPFLAGS): Do not define MYO_SUPPORT.
286         (AM_CPPFLAGS): Likewise for offload_target_main.
287         * plugin/Makefile.in: Regenerate.
288         * runtime/emulator/coi_common.h: Update copyright years.
289         (OFFLOAD_EMUL_KNC_NUM_ENV): Replace with ...
290         (OFFLOAD_EMUL_NUM_ENV): ... this.
291         (enum cmd_t): Add CMD_CLOSE_LIBRARY.
292         * runtime/emulator/coi_device.cpp: Update copyright years.
293         (COIProcessWaitForShutdown): Add space between string constants.
294         Return handle to host in CMD_OPEN_LIBRARY.
295         Support CMD_CLOSE_LIBRARY.
296         * runtime/emulator/coi_device.h: Update copyright years.
297         * runtime/emulator/coi_host.cpp: Update copyright years.
298         (knc_engines_num): Replace with ...
299         (num_engines): ... this.
300         (init): Replace OFFLOAD_EMUL_KNC_NUM_ENV with OFFLOAD_EMUL_NUM_ENV.
301         (COIEngineGetCount): Replace COI_ISA_KNC with COI_ISA_MIC, and
302         knc_engines_num with num_engines.
303         (COIEngineGetHandle): Likewise.
304         (COIProcessCreateFromMemory): Add space between string constants.
305         (COIProcessCreateFromFile): New function.
306         (COIProcessLoadLibraryFromMemory): Rename arguments according to
307         COIProcess_source.h.  Return handle, received from target.
308         (COIProcessUnloadLibrary): New function.
309         (COIPipelineClearCPUMask): New function.
310         (COIPipelineSetCPUMask): New function.
311         (COIEngineGetInfo): New function.
312         * runtime/emulator/coi_host.h: Update copyright years.
313         * runtime/emulator/coi_version_asm.h: Regenerate.
314         * runtime/emulator/coi_version_linker_script.map: Regenerate.
315         * runtime/emulator/myo_client.cpp: Update copyright years.
316         * runtime/emulator/myo_service.cpp: Update copyright years.
317         (myoArenaRelease): New function.
318         (myoArenaAcquire): New function.
319         (myoArenaAlignedFree): New function.
320         (myoArenaAlignedMalloc): New function.
321         * runtime/emulator/myo_service.h: Update copyright years.
322         * runtime/emulator/myo_version_asm.h: Regenerate.
323         * runtime/emulator/myo_version_linker_script.map: Regenerate.
325 2015-08-24  Nathan Sidwell  <nathan@codesourcery.com>
327         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_version): New.
328         (GOMP_OFFLOAD_load_image): Add version arg and check it.
329         (GOMP_OFFLOAD_unload_image): Likewise.
331 2015-08-24  Thomas Schwinge  <thomas@codesourcery.com>
333         * plugin/Makefile.am (include_src_dir): Set.
334         [PLUGIN_HOST] (libgomp_plugin_intelmic_la_CPPFLAGS): Use it.
335         * plugin/Makefile.in: Regenerate.
336         * plugin/libgomp-plugin-intelmic.cpp: Include "gomp-constants.h".
338 2015-07-24  Micahel Darling  <darlingm@gmail.com>
340         PR other/66259
341         * configure: Reflects renaming of configure.in to configure.ac
343 2015-07-17  Nathan Sidwell  <nathan@acm.org>
344             Ilya Verbin  <ilya.verbin@intel.com>
346         * plugin/libgomp-plugin-intelmic.cpp (ImgDevAddrMap): Constify.
347         (offload_image, GOMP_OFFLOAD_load_image,
348         GOMP_OFFLOAD_unload_image): Constify target data.
350 2015-07-08  Thomas Schwinge  <thomas@codesourcery.com>
352         * plugin/Makefile.am (main_target_image.h): Change type of data
353         member of struct MainTargetImage to uint8_t.
354         * plugin/Makefile.in: Regenerate.
356 2015-05-13  Michael Haubenwallner  <michael.haubenwallner@ssi-schaefer.com>
358         * Makefile.in: Regenerated with automake-1.11.6.
359         * aclocal.m4: Likewise.
360         * configure: Likewise.
361         * plugin/Makefile.in: Likewise.
362         * plugin/aclocal.m4: Likewise.
363         * plugin/configure: Likewise.
365 2015-04-06  Ilya Verbin  <ilya.verbin@intel.com>
367         * plugin/libgomp-plugin-intelmic.cpp: Include map.
368         (AddrVect, DevAddrVect, ImgDevAddrMap): New typedefs.
369         (num_devices, num_images, address_table): New static vars.
370         (num_libraries, lib_descrs): Remove static vars.
371         (set_mic_lib_path): Rename to ...
372         (init): ... this.  Allocate address_table and get num_devices.
373         (GOMP_OFFLOAD_get_num_devices): return num_devices.
374         (load_lib_and_get_table): Remove static function.
375         (offload_image): New static function.
376         (GOMP_OFFLOAD_get_table): Remove function.
377         (GOMP_OFFLOAD_load_image, GOMP_OFFLOAD_unload_image): New functions.
379 2015-01-15  Thomas Schwinge  <thomas@codesourcery.com>
381         * plugin/libgomp-plugin-intelmic.cpp (GOMP_OFFLOAD_get_name)
382         (GOMP_OFFLOAD_get_caps, GOMP_OFFLOAD_fini_device): New functions.
384 2014-11-13  Ilya Verbin  <ilya.verbin@intel.com>
385             Andrey Turetskiy  <andrey.turetskiy@intel.com>
387         * Makefile.in: Regenerate.
388         * configure: Regenerate.
389         * configure.ac: Add subdirectory 'plugin'.
390         * plugin/Makefile.am: New file.
391         * plugin/Makefile.in: New file, generated by automake.
392         * plugin/aclocal.m4: New file, generated by aclocal.
393         * plugin/configure: New file, generated by autoconf.
394         * plugin/configure.ac: New file.
395         * plugin/libgomp-plugin-intelmic.cpp: New file.
396         * plugin/offload_target_main.cpp: New file.
398 2014-11-13  Kirill Yukhin  <kirill.yukhin@intel.com>
400         Initial commit.  Imported from upstream:
401         https://www.openmprtl.org/sites/default/files/liboffload_oss.tgz
402         * Makefile.am: New file.
403         * Makefile.in: New file, generated by automake.
404         * aclocal.m4: New file, generated by aclocal.
405         * configure: New file, generated by autoconf.
406         * configure.ac: New file.
407         * configure.tgt: Ditto.
408         * doc/doxygen/config: Ditto.
409         * doc/doxygen/header.tex: Ditto.
410         * include/coi/common/COIEngine_common.h: Ditto.
411         * include/coi/common/COIMacros_common.h: Ditto.
412         * include/coi/common/COIPerf_common.h : Ditto.
413         * include/coi/common/COIResult_common.h : Ditto.
414         * include/coi/common/COITypes_common.h: Ditto.
415         * include/coi/sink/COIBuffer_sink.h: Ditto.
416         * include/coi/sink/COIPipeline_sink.h: Ditto.
417         * include/coi/sink/COIProcess_sink.h: Ditto.
418         * include/coi/source/COIBuffer_source.h: Ditto.
419         * include/coi/source/COIEngine_source.h: Ditto.
420         * include/coi/source/COIEvent_source.h: Ditto.
421         * include/coi/source/COIPipeline_source.h: Ditto.
422         * include/coi/source/COIProcess_source.h: Ditto.
423         * include/myo/myo.h: Ditto.
424         * include/myo/myoimpl.h: Ditto.
425         * include/myo/myotypes.h: Ditto.
426         * liboffloadmic_host.spec.in: Ditto.
427         * liboffloadmic_target.spec.in: Ditto.
428         * runtime/cean_util.cpp: Ditto.
429         * runtime/cean_util.h: Ditto.
430         * runtime/coi/coi_client.cpp: Ditto.
431         * runtime/coi/coi_client.h: Ditto.
432         * runtime/coi/coi_server.cpp: Ditto.
433         * runtime/coi/coi_server.h: Ditto.
434         * runtime/compiler_if_host.cpp: Ditto.
435         * runtime/compiler_if_host.h: Ditto.
436         * runtime/compiler_if_target.cpp: Ditto.
437         * runtime/compiler_if_target.h: Ditto.
438         * runtime/dv_util.cpp: Ditto.
439         * runtime/dv_util.h: Ditto.
440         * runtime/emulator/coi_common.h: Ditto.
441         * runtime/emulator/coi_device.cpp: Ditto.
442         * runtime/emulator/coi_device.h: Ditto.
443         * runtime/emulator/coi_host.cpp: Ditto.
444         * runtime/emulator/coi_host.h: Ditto.
445         * runtime/emulator/coi_version_asm.h: Ditto.
446         * runtime/emulator/coi_version_linker_script.map: Ditto.
447         * runtime/emulator/myo_client.cpp: Ditto.
448         * runtime/emulator/myo_service.cpp: Ditto.
449         * runtime/emulator/myo_service.h: Ditto.
450         * runtime/emulator/myo_version_asm.h: Ditto.
451         * runtime/emulator/myo_version_linker_script.map: Ditto.
452         * runtime/liboffload_error.c: Ditto.
453         * runtime/liboffload_error_codes.h: Ditto.
454         * runtime/liboffload_msg.c: Ditto.
455         * runtime/liboffload_msg.h: Ditto.
456         * runtime/mic_lib.f90: Ditto.
457         * runtime/offload.h: Ditto.
458         * runtime/offload_common.cpp: Ditto.
459         * runtime/offload_common.h: Ditto.
460         * runtime/offload_engine.cpp: Ditto.
461         * runtime/offload_engine.h: Ditto.
462         * runtime/offload_env.cpp: Ditto.
463         * runtime/offload_env.h: Ditto.
464         * runtime/offload_host.cpp: Ditto.
465         * runtime/offload_host.h: Ditto.
466         * runtime/offload_myo_host.cpp: Ditto.
467         * runtime/offload_myo_host.h: Ditto.
468         * runtime/offload_myo_target.cpp: Ditto.
469         * runtime/offload_myo_target.h: Ditto.
470         * runtime/offload_omp_host.cpp: Ditto.
471         * runtime/offload_omp_target.cpp: Ditto.
472         * runtime/offload_orsl.cpp: Ditto.
473         * runtime/offload_orsl.h: Ditto.
474         * runtime/offload_table.cpp: Ditto.
475         * runtime/offload_table.h: Ditto.
476         * runtime/offload_target.cpp: Ditto.
477         * runtime/offload_target.h: Ditto.
478         * runtime/offload_target_main.cpp: Ditto.
479         * runtime/offload_timer.h: Ditto.
480         * runtime/offload_timer_host.cpp: Ditto.
481         * runtime/offload_timer_target.cpp: Ditto.
482         * runtime/offload_trace.cpp: Ditto.
483         * runtime/offload_trace.h: Ditto.
484         * runtime/offload_util.cpp: Ditto.
485         * runtime/offload_util.h: Ditto.
486         * runtime/ofldbegin.cpp: Ditto.
487         * runtime/ofldend.cpp: Ditto.
488         * runtime/orsl-lite/include/orsl-lite.h: Ditto.
489         * runtime/orsl-lite/lib/orsl-lite.c: Ditto.
490         * runtime/orsl-lite/version.txt: Ditto.
491         * runtime/use_mpss2.txt: Ditto.