ROSE  0.11.96.11
rex_llvm.h
1 
2 enum tgt_map_type {
3  // No flags
4  OMP_TGT_MAPTYPE_NONE = 0x000,
5  // copy data from host to device
6  OMP_TGT_MAPTYPE_TO = 0x001,
7  // copy data from device to host
8  OMP_TGT_MAPTYPE_FROM = 0x002,
9  // copy regardless of the reference count
10  OMP_TGT_MAPTYPE_ALWAYS = 0x004,
11  // force unmapping of data
12  OMP_TGT_MAPTYPE_DELETE = 0x008,
13  // map the pointer as well as the pointee
14  OMP_TGT_MAPTYPE_PTR_AND_OBJ = 0x010,
15  // pass device base address to kernel
16  OMP_TGT_MAPTYPE_TARGET_PARAM = 0x020,
17  // return base device address of mapped data
18  OMP_TGT_MAPTYPE_RETURN_PARAM = 0x040,
19  // private variable - not mapped
20  OMP_TGT_MAPTYPE_PRIVATE = 0x080,
21  // copy by value - not mapped
22  OMP_TGT_MAPTYPE_LITERAL = 0x100,
23  // mapping is implicit
24  OMP_TGT_MAPTYPE_IMPLICIT = 0x200,
25  // copy data to device
26  OMP_TGT_MAPTYPE_CLOSE = 0x400,
27  // runtime error if not already allocated
28  OMP_TGT_MAPTYPE_PRESENT = 0x1000,
29  // descriptor for non-contiguous target-update
30  OMP_TGT_MAPTYPE_NON_CONTIG = 0x100000000000,
31  // member of struct, member given by [16 MSBs] - 1
32  OMP_TGT_MAPTYPE_MEMBER_OF = 0xffff000000000000
33 };
34 
35 typedef enum kmp_sched_t {
36  kmp_sched_static_chunk = 33,
37  kmp_sched_static_nochunk = 34,
38  kmp_sched_dynamic = 35,
39  kmp_sched_guided = 36,
40  kmp_sched_runtime = 37,
41  kmp_sched_auto = 38,
42 
43  kmp_sched_static_balanced_chunk = 45,
44 
45  kmp_sched_static_ordered = 65,
46  kmp_sched_static_nochunk_ordered = 66,
47  kmp_sched_dynamic_ordered = 67,
48  kmp_sched_guided_ordered = 68,
49  kmp_sched_runtime_ordered = 69,
50  kmp_sched_auto_ordered = 70,
51 
52  kmp_sched_distr_static_chunk = 91,
53  kmp_sched_distr_static_nochunk = 92,
54  kmp_sched_distr_static_chunk_sched_static_chunkone = 93,
55 
56  kmp_sched_default = kmp_sched_static_nochunk,
57  kmp_sched_unordered_first = kmp_sched_static_chunk,
58  kmp_sched_unordered_last = kmp_sched_auto,
59  kmp_sched_ordered_first = kmp_sched_static_ordered,
60  kmp_sched_ordered_last = kmp_sched_auto_ordered,
61  kmp_sched_distribute_first = kmp_sched_distr_static_chunk,
62  kmp_sched_distribute_last =
63  kmp_sched_distr_static_chunk_sched_static_chunkone,
64 
65  /* Support for OpenMP 4.5 monotonic and nonmonotonic schedule modifiers.
66  * Since we need to distinguish the three possible cases (no modifier,
67  * monotonic modifier, nonmonotonic modifier), we need separate bits for
68  * each modifier. The absence of monotonic does not imply nonmonotonic,
69  * especially since 4.5 says that the behaviour of the "no modifier" case
70  * is implementation defined in 4.5, but will become "nonmonotonic" in 5.0.
71  *
72  * Since we're passing a full 32 bit value, we can use a couple of high
73  * bits for these flags; out of paranoia we avoid the sign bit.
74  *
75  * These modifiers can be or-ed into non-static schedules by the compiler
76  * to pass the additional information. They will be stripped early in the
77  * processing in __kmp_dispatch_init when setting up schedules, so
78  * most of the code won't ever see schedules with these bits set.
79  */
80  kmp_sched_modifier_monotonic = (1 << 29),
82  kmp_sched_modifier_nonmonotonic = (1 << 30),
85 #define SCHEDULE_WITHOUT_MODIFIERS(s) \
86  (enum kmp_sched_t)( \
87  (s) & ~(kmp_sched_modifier_nonmonotonic | kmp_sched_modifier_monotonic))
88 #define SCHEDULE_HAS_MONOTONIC(s) (((s)&kmp_sched_modifier_monotonic) != 0)
89 #define SCHEDULE_HAS_NONMONOTONIC(s) \
90  (((s)&kmp_sched_modifier_nonmonotonic) != 0)
91 #define SCHEDULE_HAS_NO_MODIFIERS(s) \
92  (((s) & (kmp_sched_modifier_nonmonotonic | kmp_sched_modifier_monotonic)) == \
93  0)
94 
95 } kmp_sched_t;