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