author | serb |
Sun, 24 Jun 2018 16:35:21 -0700 | |
changeset 50834 | 9cf279436b9d |
parent 48861 | 47f19ff9903c |
permissions | -rw-r--r-- |
43972 | 1 |
suite = { |
2 |
"mxversion" : "5.6.5", |
|
3 |
"name" : "graal", |
|
4 |
||
5 |
"defaultLicense" : "GPLv2-CPE", |
|
6 |
||
7 |
# This puts mx/ as a sibling of the JDK build configuration directories |
|
8 |
# (e.g., macosx-x86_64-normal-server-release). |
|
47618
57cdc5222925
8189183: [AOT] Fix eclipse project generation after repo consolidation
iveresov
parents:
47216
diff
changeset
|
9 |
"outputRoot" : "../../build/mx/hotspot", |
43972 | 10 |
|
44836 | 11 |
"jdklibraries" : { |
12 |
"JVMCI_SERVICES" : { |
|
13 |
"path" : "lib/jvmci-services.jar", |
|
14 |
"sourcePath" : "lib/jvmci-services.src.zip", |
|
15 |
"optional" : False, |
|
16 |
"jdkStandardizedSince" : "9", |
|
17 |
"module" : "jdk.internal.vm.ci" |
|
18 |
}, |
|
19 |
"JVMCI_API" : { |
|
20 |
"path" : "lib/jvmci/jvmci-api.jar", |
|
21 |
"sourcePath" : "lib/jvmci/jvmci-api.src.zip", |
|
22 |
"dependencies" : [ |
|
23 |
"JVMCI_SERVICES", |
|
24 |
], |
|
25 |
"optional" : False, |
|
26 |
"jdkStandardizedSince" : "9", |
|
27 |
"module" : "jdk.internal.vm.ci" |
|
28 |
}, |
|
29 |
"JVMCI_HOTSPOT" : { |
|
30 |
"path" : "lib/jvmci/jvmci-hotspot.jar", |
|
31 |
"sourcePath" : "lib/jvmci/jvmci-hotspot.src.zip", |
|
32 |
"dependencies" : [ |
|
33 |
"JVMCI_API", |
|
34 |
], |
|
35 |
"optional" : False, |
|
36 |
"jdkStandardizedSince" : "9", |
|
37 |
"module" : "jdk.internal.vm.ci" |
|
38 |
}, |
|
39 |
}, |
|
40 |
||
43972 | 41 |
"libraries" : { |
42 |
||
43 |
# ------------- Libraries ------------- |
|
44 |
||
45 |
"JAVA_ALLOCATION_INSTRUMENTER" : { |
|
46 |
"urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/java-allocation-instrumenter/java-allocation-instrumenter-8f0db117e64e.jar"], |
|
47 |
"sha1" : "476d9a44cd19d6b55f81571077dfa972a4f8a083", |
|
48 |
"bootClassPathAgent" : "true", |
|
49 |
}, |
|
46344 | 50 |
|
44836 | 51 |
"ASM5" : { |
52 |
"sha1" : "0da08b8cce7bbf903602a25a3a163ae252435795", |
|
53 |
"urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/asm-5.0.4.jar"], |
|
54 |
}, |
|
55 |
||
56 |
"ASM_TREE5" : { |
|
57 |
"sha1" : "396ce0c07ba2b481f25a70195c7c94922f0d1b0b", |
|
58 |
"urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/asm-tree-5.0.4.jar"], |
|
59 |
"dependencies" : ["ASM5"], |
|
60 |
}, |
|
43972 | 61 |
}, |
62 |
||
63 |
"projects" : { |
|
46536 | 64 |
# -------------- SDK -------------- |
65 |
"org.graalvm.options" : { |
|
66 |
"subDir" : "share/classes", |
|
67 |
"sourceDirs" : ["src"], |
|
68 |
"dependencies" : [], |
|
69 |
"uses" : [], |
|
70 |
"exports" : [ |
|
71 |
"<package-info>", # exports all packages containing package-info.java |
|
72 |
], |
|
46640 | 73 |
"checkstyle" : "org.graalvm.word", |
46536 | 74 |
"javaCompliance" : "1.8", |
75 |
"workingSets" : "API,SDK", |
|
76 |
}, |
|
46640 | 77 |
"org.graalvm.word" : { |
46536 | 78 |
"subDir" : "share/classes", |
79 |
"sourceDirs" : ["src"], |
|
80 |
"dependencies" : [], |
|
46640 | 81 |
"checkstyle" : "org.graalvm.word", |
46536 | 82 |
"javaCompliance" : "1.8", |
83 |
"workingSets" : "API,SDK", |
|
84 |
}, |
|
48861 | 85 |
"org.graalvm.collections" : { |
86 |
"subDir" : "share/classes", |
|
87 |
"sourceDirs" : ["src"], |
|
88 |
"checkstyle" : "org.graalvm.word", |
|
89 |
"javaCompliance" : "1.8", |
|
90 |
"workingSets" : "API,SDK", |
|
91 |
}, |
|
92 |
"org.graalvm.collections.test" : { |
|
93 |
"subDir" : "share/classes", |
|
94 |
"sourceDirs" : ["src"], |
|
95 |
"dependencies" : [ |
|
96 |
"mx:JUNIT", |
|
97 |
"org.graalvm.collections", |
|
98 |
], |
|
99 |
"checkstyle" : "org.graalvm.word", |
|
100 |
"javaCompliance" : "1.8", |
|
101 |
"workingSets" : "API,SDK,Test", |
|
102 |
}, |
|
43972 | 103 |
|
104 |
# ------------- Graal ------------- |
|
105 |
||
106 |
"org.graalvm.compiler.serviceprovider" : { |
|
107 |
"subDir" : "share/classes", |
|
44836 | 108 |
"dependencies" : ["JVMCI_SERVICES"], |
43972 | 109 |
"sourceDirs" : ["src"], |
110 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
111 |
"javaCompliance" : "1.8", |
|
112 |
"workingSets" : "API,Graal", |
|
113 |
}, |
|
114 |
||
115 |
"org.graalvm.compiler.serviceprovider.processor" : { |
|
116 |
"subDir" : "share/classes", |
|
117 |
"sourceDirs" : ["src"], |
|
118 |
"dependencies" : ["org.graalvm.compiler.serviceprovider"], |
|
119 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
120 |
"javaCompliance" : "1.8", |
|
121 |
"workingSets" : "Graal,Codegen", |
|
122 |
}, |
|
123 |
||
124 |
"org.graalvm.compiler.options" : { |
|
125 |
"subDir" : "share/classes", |
|
46536 | 126 |
"dependencies" : ["JVMCI_SERVICES", "JVMCI_API", "org.graalvm.util"], |
43972 | 127 |
"sourceDirs" : ["src"], |
128 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
46344 | 129 |
"uses" : ["org.graalvm.compiler.options.OptionDescriptors"], |
43972 | 130 |
"javaCompliance" : "1.8", |
131 |
"workingSets" : "Graal", |
|
132 |
}, |
|
133 |
||
134 |
"org.graalvm.compiler.options.processor" : { |
|
135 |
"subDir" : "share/classes", |
|
136 |
"sourceDirs" : ["src"], |
|
137 |
"dependencies" : [ |
|
138 |
"org.graalvm.compiler.options", |
|
139 |
], |
|
140 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
141 |
"javaCompliance" : "1.8", |
|
142 |
"workingSets" : "Graal,Codegen", |
|
143 |
}, |
|
144 |
||
145 |
"org.graalvm.compiler.options.test" : { |
|
146 |
"subDir" : "share/classes", |
|
147 |
"sourceDirs" : ["src"], |
|
148 |
"dependencies" : [ |
|
149 |
"org.graalvm.compiler.options", |
|
150 |
"mx:JUNIT", |
|
151 |
], |
|
152 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
153 |
"javaCompliance" : "1.8", |
|
154 |
"workingSets" : "Graal", |
|
155 |
}, |
|
156 |
||
157 |
"org.graalvm.compiler.debug" : { |
|
158 |
"subDir" : "share/classes", |
|
159 |
"sourceDirs" : ["src"], |
|
160 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
46344 | 161 |
"uses" : [ |
46640 | 162 |
"org.graalvm.compiler.debug.DebugHandlersFactory", |
46344 | 163 |
"org.graalvm.compiler.debug.TTYStreamProvider", |
164 |
], |
|
43972 | 165 |
"dependencies" : [ |
44836 | 166 |
"JVMCI_API", |
43972 | 167 |
"org.graalvm.compiler.serviceprovider", |
48398 | 168 |
"org.graalvm.graphio", |
43972 | 169 |
"org.graalvm.compiler.options" |
170 |
], |
|
171 |
"annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"], |
|
172 |
"javaCompliance" : "1.8", |
|
173 |
"workingSets" : "Graal,Debug", |
|
174 |
}, |
|
175 |
||
176 |
"org.graalvm.compiler.debug.test" : { |
|
177 |
"subDir" : "share/classes", |
|
178 |
"sourceDirs" : ["src"], |
|
179 |
"dependencies" : [ |
|
180 |
"mx:JUNIT", |
|
181 |
"org.graalvm.compiler.debug", |
|
182 |
], |
|
183 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
184 |
"javaCompliance" : "1.8", |
|
185 |
"workingSets" : "Graal,Debug,Test", |
|
186 |
}, |
|
187 |
||
188 |
"org.graalvm.compiler.code" : { |
|
189 |
"subDir" : "share/classes", |
|
190 |
"sourceDirs" : ["src"], |
|
191 |
"dependencies" : [ |
|
192 |
"org.graalvm.compiler.graph", |
|
193 |
], |
|
194 |
"annotationProcessors" : ["GRAAL_SERVICEPROVIDER_PROCESSOR"], |
|
195 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
196 |
"javaCompliance" : "1.8", |
|
197 |
"workingSets" : "Graal", |
|
198 |
}, |
|
199 |
||
46762 | 200 |
"org.graalvm.graphio" : { |
201 |
"subDir" : "share/classes", |
|
202 |
"sourceDirs" : ["src"], |
|
203 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
204 |
"javaCompliance" : "1.8", |
|
205 |
"workingSets" : "API,Graal", |
|
206 |
}, |
|
207 |
||
46344 | 208 |
"org.graalvm.util" : { |
43972 | 209 |
"subDir" : "share/classes", |
210 |
"sourceDirs" : ["src"], |
|
48861 | 211 |
"dependencies" : [ |
212 |
"org.graalvm.collections", |
|
213 |
], |
|
43972 | 214 |
"checkstyle" : "org.graalvm.compiler.graph", |
215 |
"javaCompliance" : "1.8", |
|
216 |
"workingSets" : "API,Graal", |
|
217 |
}, |
|
218 |
||
46344 | 219 |
"org.graalvm.util.test" : { |
220 |
"subDir" : "share/classes", |
|
221 |
"sourceDirs" : ["src"], |
|
222 |
"dependencies" : [ |
|
223 |
"mx:JUNIT", |
|
224 |
"org.graalvm.util", |
|
48861 | 225 |
"org.graalvm.compiler.core.test", |
46344 | 226 |
], |
227 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
228 |
"javaCompliance" : "1.8", |
|
229 |
"workingSets" : "API,Graal", |
|
230 |
}, |
|
231 |
||
43972 | 232 |
"org.graalvm.compiler.api.directives" : { |
233 |
"subDir" : "share/classes", |
|
234 |
"sourceDirs" : ["src"], |
|
235 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
236 |
"javaCompliance" : "1.8", |
|
237 |
"workingSets" : "API,Graal", |
|
238 |
}, |
|
239 |
||
240 |
"org.graalvm.compiler.api.directives.test" : { |
|
241 |
"subDir" : "share/classes", |
|
242 |
"sourceDirs" : ["src"], |
|
243 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
244 |
"dependencies" : [ |
|
44836 | 245 |
"JVMCI_HOTSPOT", |
43972 | 246 |
"org.graalvm.compiler.core.test", |
247 |
], |
|
248 |
"javaCompliance" : "1.8", |
|
249 |
"workingSets" : "API,Graal", |
|
250 |
}, |
|
251 |
||
252 |
"org.graalvm.compiler.api.runtime" : { |
|
253 |
"subDir" : "share/classes", |
|
254 |
"sourceDirs" : ["src"], |
|
44836 | 255 |
"dependencies" : [ |
256 |
"JVMCI_API", |
|
257 |
], |
|
43972 | 258 |
"checkstyle" : "org.graalvm.compiler.graph", |
259 |
"javaCompliance" : "1.8", |
|
260 |
"workingSets" : "API,Graal", |
|
261 |
}, |
|
262 |
||
263 |
"org.graalvm.compiler.api.test" : { |
|
264 |
"subDir" : "share/classes", |
|
265 |
"sourceDirs" : ["src"], |
|
266 |
"dependencies" : [ |
|
267 |
"mx:JUNIT", |
|
44836 | 268 |
"JVMCI_SERVICES", |
43972 | 269 |
"org.graalvm.compiler.api.runtime", |
270 |
], |
|
271 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
272 |
"javaCompliance" : "1.8", |
|
273 |
"workingSets" : "API,Graal,Test", |
|
274 |
}, |
|
275 |
||
276 |
"org.graalvm.compiler.api.replacements" : { |
|
277 |
"subDir" : "share/classes", |
|
278 |
"sourceDirs" : ["src"], |
|
44836 | 279 |
"dependencies" : ["JVMCI_API"], |
43972 | 280 |
"checkstyle" : "org.graalvm.compiler.graph", |
281 |
"javaCompliance" : "1.8", |
|
282 |
"workingSets" : "API,Graal,Replacements", |
|
283 |
}, |
|
284 |
||
285 |
"org.graalvm.compiler.hotspot" : { |
|
286 |
"subDir" : "share/classes", |
|
287 |
"sourceDirs" : ["src"], |
|
288 |
"dependencies" : [ |
|
44836 | 289 |
"JVMCI_HOTSPOT", |
43972 | 290 |
"org.graalvm.compiler.api.runtime", |
291 |
"org.graalvm.compiler.replacements", |
|
46393 | 292 |
"org.graalvm.compiler.printer", |
43972 | 293 |
"org.graalvm.compiler.runtime", |
294 |
], |
|
46344 | 295 |
"imports" : [ |
296 |
# All other internal packages are exported dynamically - |
|
297 |
# see org.graalvm.compiler.hotspot.HotSpotGraalJVMCIServiceLocator |
|
298 |
"jdk.internal.module", |
|
299 |
], |
|
43972 | 300 |
"checkstyle" : "org.graalvm.compiler.graph", |
301 |
"annotationProcessors" : [ |
|
302 |
"GRAAL_NODEINFO_PROCESSOR", |
|
303 |
"GRAAL_COMPILER_MATCH_PROCESSOR", |
|
304 |
"GRAAL_REPLACEMENTS_VERIFIER", |
|
305 |
"GRAAL_OPTIONS_PROCESSOR", |
|
306 |
"GRAAL_SERVICEPROVIDER_PROCESSOR", |
|
307 |
], |
|
308 |
"javaCompliance" : "1.8", |
|
309 |
"workingSets" : "Graal,HotSpot", |
|
310 |
}, |
|
311 |
||
312 |
"org.graalvm.compiler.hotspot.aarch64" : { |
|
313 |
"subDir" : "share/classes", |
|
314 |
"sourceDirs" : ["src"], |
|
315 |
"dependencies" : [ |
|
316 |
"org.graalvm.compiler.hotspot", |
|
317 |
"org.graalvm.compiler.replacements.aarch64", |
|
318 |
], |
|
319 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
320 |
"annotationProcessors" : [ |
|
321 |
"GRAAL_SERVICEPROVIDER_PROCESSOR", |
|
322 |
"GRAAL_NODEINFO_PROCESSOR" |
|
323 |
], |
|
324 |
"javaCompliance" : "1.8", |
|
325 |
"workingSets" : "Graal,HotSpot,AArch64", |
|
326 |
}, |
|
327 |
||
328 |
"org.graalvm.compiler.hotspot.amd64" : { |
|
329 |
"subDir" : "share/classes", |
|
330 |
"sourceDirs" : ["src"], |
|
331 |
"dependencies" : [ |
|
332 |
"org.graalvm.compiler.core.amd64", |
|
333 |
"org.graalvm.compiler.hotspot", |
|
334 |
"org.graalvm.compiler.replacements.amd64", |
|
335 |
], |
|
336 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
337 |
"annotationProcessors" : [ |
|
338 |
"GRAAL_SERVICEPROVIDER_PROCESSOR", |
|
339 |
"GRAAL_NODEINFO_PROCESSOR" |
|
340 |
], |
|
341 |
"javaCompliance" : "1.8", |
|
342 |
"workingSets" : "Graal,HotSpot,AMD64", |
|
343 |
}, |
|
344 |
||
345 |
"org.graalvm.compiler.hotspot.sparc" : { |
|
346 |
"subDir" : "share/classes", |
|
347 |
"sourceDirs" : ["src"], |
|
348 |
"dependencies" : [ |
|
349 |
"org.graalvm.compiler.hotspot", |
|
350 |
"org.graalvm.compiler.core.sparc", |
|
351 |
"org.graalvm.compiler.replacements.sparc", |
|
352 |
], |
|
353 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
354 |
"annotationProcessors" : ["GRAAL_SERVICEPROVIDER_PROCESSOR"], |
|
355 |
"javaCompliance" : "1.8", |
|
356 |
"workingSets" : "Graal,HotSpot,SPARC", |
|
357 |
}, |
|
358 |
||
359 |
"org.graalvm.compiler.hotspot.test" : { |
|
360 |
"subDir" : "share/classes", |
|
361 |
"sourceDirs" : ["src"], |
|
362 |
"dependencies" : [ |
|
363 |
"org.graalvm.compiler.replacements.test", |
|
364 |
"org.graalvm.compiler.hotspot", |
|
365 |
], |
|
366 |
"annotationProcessors" : [ |
|
367 |
"GRAAL_NODEINFO_PROCESSOR" |
|
368 |
], |
|
369 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
370 |
"javaCompliance" : "1.8", |
|
371 |
"workingSets" : "Graal,HotSpot,Test", |
|
372 |
}, |
|
373 |
||
374 |
"org.graalvm.compiler.hotspot.lir.test" : { |
|
375 |
"subDir" : "share/classes", |
|
376 |
"sourceDirs" : ["src"], |
|
377 |
"dependencies" : [ |
|
378 |
"org.graalvm.compiler.hotspot", |
|
379 |
"org.graalvm.compiler.lir.jtt", |
|
380 |
"org.graalvm.compiler.lir.test", |
|
44836 | 381 |
"JVMCI_API", |
382 |
"JVMCI_HOTSPOT", |
|
43972 | 383 |
], |
384 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
385 |
"javaCompliance" : "1.8", |
|
386 |
"workingSets" : "Graal,HotSpot,Test", |
|
387 |
}, |
|
388 |
||
389 |
"org.graalvm.compiler.hotspot.aarch64.test" : { |
|
390 |
"subDir" : "share/classes", |
|
391 |
"sourceDirs" : ["src"], |
|
392 |
"dependencies" : [ |
|
393 |
"org.graalvm.compiler.asm.aarch64", |
|
394 |
"org.graalvm.compiler.hotspot.test", |
|
395 |
], |
|
396 |
"annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], |
|
397 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
398 |
"javaCompliance" : "1.8", |
|
399 |
"workingSets" : "Graal,HotSpot,AArch64,Test", |
|
400 |
}, |
|
401 |
||
402 |
"org.graalvm.compiler.hotspot.amd64.test" : { |
|
403 |
"subDir" : "share/classes", |
|
404 |
"sourceDirs" : ["src"], |
|
405 |
"dependencies" : [ |
|
406 |
"org.graalvm.compiler.asm.amd64", |
|
407 |
"org.graalvm.compiler.hotspot.test", |
|
408 |
"org.graalvm.compiler.lir.amd64", |
|
409 |
"org.graalvm.compiler.lir.jtt", |
|
410 |
], |
|
411 |
"annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], |
|
412 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
413 |
"javaCompliance" : "1.8", |
|
414 |
"workingSets" : "Graal,HotSpot,AMD64,Test", |
|
415 |
}, |
|
416 |
||
417 |
"org.graalvm.compiler.nodeinfo" : { |
|
418 |
"subDir" : "share/classes", |
|
419 |
"sourceDirs" : ["src"], |
|
420 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
421 |
"javaCompliance" : "1.8", |
|
422 |
"workingSets" : "Graal,Graph", |
|
423 |
}, |
|
424 |
||
425 |
"org.graalvm.compiler.nodeinfo.processor" : { |
|
426 |
"subDir" : "share/classes", |
|
427 |
"sourceDirs" : ["src"], |
|
428 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
429 |
"dependencies" : [ |
|
430 |
"org.graalvm.compiler.nodeinfo", |
|
431 |
], |
|
432 |
"javaCompliance" : "1.8", |
|
433 |
"workingSets" : "Graal,Graph", |
|
434 |
}, |
|
435 |
||
436 |
"org.graalvm.compiler.graph" : { |
|
437 |
"subDir" : "share/classes", |
|
438 |
"sourceDirs" : ["src"], |
|
439 |
"dependencies" : [ |
|
440 |
"org.graalvm.compiler.nodeinfo", |
|
441 |
"org.graalvm.compiler.core.common", |
|
442 |
], |
|
443 |
"javaCompliance" : "1.8", |
|
444 |
"annotationProcessors" : [ |
|
445 |
"GRAAL_OPTIONS_PROCESSOR", |
|
446 |
"GRAAL_NODEINFO_PROCESSOR" |
|
447 |
], |
|
448 |
"workingSets" : "Graal,Graph", |
|
449 |
}, |
|
450 |
||
451 |
"org.graalvm.compiler.graph.test" : { |
|
452 |
"subDir" : "share/classes", |
|
453 |
"sourceDirs" : ["src"], |
|
454 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
455 |
"dependencies" : [ |
|
456 |
"mx:JUNIT", |
|
457 |
"org.graalvm.compiler.api.test", |
|
458 |
"org.graalvm.compiler.graph", |
|
48398 | 459 |
"org.graalvm.graphio", |
43972 | 460 |
], |
461 |
"annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], |
|
462 |
"javaCompliance" : "1.8", |
|
463 |
"workingSets" : "Graal,Graph,Test", |
|
464 |
}, |
|
465 |
||
466 |
"org.graalvm.compiler.asm" : { |
|
467 |
"subDir" : "share/classes", |
|
468 |
"sourceDirs" : ["src"], |
|
44836 | 469 |
"dependencies" : [ |
470 |
"JVMCI_API", |
|
46344 | 471 |
"org.graalvm.compiler.core.common" |
44836 | 472 |
], |
43972 | 473 |
"checkstyle" : "org.graalvm.compiler.graph", |
474 |
"javaCompliance" : "1.8", |
|
475 |
"workingSets" : "Graal,Assembler", |
|
476 |
}, |
|
477 |
||
478 |
"org.graalvm.compiler.asm.aarch64" : { |
|
479 |
"subDir" : "share/classes", |
|
480 |
"sourceDirs" : ["src"], |
|
481 |
"dependencies" : [ |
|
482 |
"org.graalvm.compiler.asm", |
|
483 |
], |
|
484 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
485 |
"javaCompliance" : "1.8", |
|
486 |
"workingSets" : "Graal,Assembler,AArch64", |
|
487 |
}, |
|
488 |
||
489 |
"org.graalvm.compiler.asm.amd64" : { |
|
490 |
"subDir" : "share/classes", |
|
491 |
"sourceDirs" : ["src"], |
|
492 |
"dependencies" : [ |
|
493 |
"org.graalvm.compiler.asm", |
|
494 |
], |
|
495 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
496 |
"javaCompliance" : "1.8", |
|
497 |
"workingSets" : "Graal,Assembler,AMD64", |
|
498 |
}, |
|
499 |
||
500 |
"org.graalvm.compiler.asm.sparc" : { |
|
501 |
"subDir" : "share/classes", |
|
502 |
"sourceDirs" : ["src"], |
|
503 |
"dependencies" : [ |
|
504 |
"org.graalvm.compiler.asm", |
|
505 |
], |
|
506 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
507 |
"javaCompliance" : "1.8", |
|
508 |
"workingSets" : "Graal,Assembler,SPARC", |
|
509 |
}, |
|
510 |
||
511 |
"org.graalvm.compiler.asm.sparc.test" : { |
|
512 |
"subDir" : "share/classes", |
|
513 |
"sourceDirs" : ["src"], |
|
514 |
"dependencies" : [ |
|
515 |
"org.graalvm.compiler.asm.test", |
|
516 |
"org.graalvm.compiler.asm.sparc", |
|
517 |
], |
|
518 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
519 |
"javaCompliance" : "1.8", |
|
520 |
"workingSets" : "Graal,Assembler,SPARC,Test", |
|
521 |
}, |
|
522 |
||
523 |
"org.graalvm.compiler.bytecode" : { |
|
524 |
"subDir" : "share/classes", |
|
525 |
"sourceDirs" : ["src"], |
|
44836 | 526 |
"dependencies" : ["JVMCI_API"], |
43972 | 527 |
"checkstyle" : "org.graalvm.compiler.graph", |
528 |
"javaCompliance" : "1.8", |
|
529 |
"workingSets" : "Graal,Java", |
|
530 |
}, |
|
531 |
||
532 |
"org.graalvm.compiler.asm.test" : { |
|
533 |
"subDir" : "share/classes", |
|
534 |
"sourceDirs" : ["src"], |
|
535 |
"dependencies" : [ |
|
536 |
"org.graalvm.compiler.api.test", |
|
537 |
"org.graalvm.compiler.code", |
|
538 |
"org.graalvm.compiler.runtime", |
|
539 |
"org.graalvm.compiler.test", |
|
540 |
"org.graalvm.compiler.debug", |
|
541 |
], |
|
542 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
543 |
"javaCompliance" : "1.8", |
|
544 |
"workingSets" : "Graal,Assembler,Test", |
|
545 |
}, |
|
546 |
||
547 |
"org.graalvm.compiler.asm.aarch64.test" : { |
|
548 |
"subDir" : "share/classes", |
|
549 |
"sourceDirs" : ["src"], |
|
550 |
"dependencies" : [ |
|
551 |
"org.graalvm.compiler.asm.test", |
|
552 |
"org.graalvm.compiler.asm.aarch64", |
|
553 |
], |
|
554 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
555 |
"javaCompliance" : "1.8", |
|
556 |
"workingSets" : "Graal,Assembler,AArch64,Test", |
|
557 |
}, |
|
558 |
||
559 |
"org.graalvm.compiler.asm.amd64.test" : { |
|
560 |
"subDir" : "share/classes", |
|
561 |
"sourceDirs" : ["src"], |
|
562 |
"dependencies" : [ |
|
563 |
"org.graalvm.compiler.asm.test", |
|
564 |
"org.graalvm.compiler.asm.amd64", |
|
565 |
], |
|
566 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
567 |
"javaCompliance" : "1.8", |
|
568 |
"workingSets" : "Graal,Assembler,AMD64,Test", |
|
569 |
}, |
|
570 |
||
571 |
"org.graalvm.compiler.lir" : { |
|
572 |
"subDir" : "share/classes", |
|
573 |
"sourceDirs" : ["src"], |
|
574 |
"dependencies" : [ |
|
575 |
"org.graalvm.compiler.asm", |
|
576 |
"org.graalvm.compiler.code", |
|
577 |
], |
|
578 |
"annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"], |
|
579 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
580 |
"javaCompliance" : "1.8", |
|
581 |
"workingSets" : "Graal,LIR", |
|
582 |
}, |
|
583 |
||
584 |
"org.graalvm.compiler.lir.jtt" : { |
|
585 |
"subDir" : "share/classes", |
|
586 |
"sourceDirs" : ["src"], |
|
587 |
"dependencies" : [ |
|
588 |
"org.graalvm.compiler.jtt", |
|
589 |
], |
|
590 |
"annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], |
|
591 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
592 |
"javaCompliance" : "1.8", |
|
593 |
"workingSets" : "Graal,LIR", |
|
594 |
"findbugs" : "false", |
|
595 |
}, |
|
596 |
||
597 |
"org.graalvm.compiler.lir.test" : { |
|
598 |
"subDir" : "share/classes", |
|
599 |
"sourceDirs" : ["src"], |
|
600 |
"dependencies" : [ |
|
601 |
"mx:JUNIT", |
|
602 |
"org.graalvm.compiler.lir", |
|
603 |
], |
|
604 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
605 |
"javaCompliance" : "1.8", |
|
606 |
"workingSets" : "Graal,LIR", |
|
607 |
}, |
|
608 |
||
609 |
"org.graalvm.compiler.lir.aarch64" : { |
|
610 |
"subDir" : "share/classes", |
|
611 |
"sourceDirs" : ["src"], |
|
612 |
"dependencies" : [ |
|
613 |
"org.graalvm.compiler.lir", |
|
614 |
"org.graalvm.compiler.asm.aarch64", |
|
615 |
], |
|
616 |
"annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"], |
|
617 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
618 |
"javaCompliance" : "1.8", |
|
619 |
"workingSets" : "Graal,LIR,AArch64", |
|
620 |
}, |
|
621 |
||
622 |
"org.graalvm.compiler.lir.amd64" : { |
|
623 |
"subDir" : "share/classes", |
|
624 |
"sourceDirs" : ["src"], |
|
625 |
"dependencies" : [ |
|
626 |
"org.graalvm.compiler.lir", |
|
627 |
"org.graalvm.compiler.asm.amd64", |
|
628 |
], |
|
629 |
"annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"], |
|
630 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
631 |
"javaCompliance" : "1.8", |
|
632 |
"workingSets" : "Graal,LIR,AMD64", |
|
633 |
}, |
|
634 |
||
635 |
"org.graalvm.compiler.lir.sparc" : { |
|
636 |
"subDir" : "share/classes", |
|
637 |
"sourceDirs" : ["src"], |
|
638 |
"dependencies" : [ |
|
639 |
"org.graalvm.compiler.asm.sparc", |
|
640 |
"org.graalvm.compiler.lir", |
|
641 |
], |
|
642 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
643 |
"javaCompliance" : "1.8", |
|
644 |
"workingSets" : "Graal,LIR,SPARC", |
|
645 |
}, |
|
646 |
||
647 |
"org.graalvm.compiler.word" : { |
|
648 |
"subDir" : "share/classes", |
|
649 |
"sourceDirs" : ["src"], |
|
650 |
"dependencies" : ["org.graalvm.compiler.nodes"], |
|
651 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
652 |
"javaCompliance" : "1.8", |
|
653 |
"annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], |
|
654 |
"workingSets" : "API,Graal", |
|
655 |
}, |
|
656 |
||
657 |
"org.graalvm.compiler.replacements" : { |
|
658 |
"subDir" : "share/classes", |
|
659 |
"sourceDirs" : ["src"], |
|
660 |
"dependencies" : [ |
|
661 |
"org.graalvm.compiler.api.directives", |
|
662 |
"org.graalvm.compiler.java", |
|
663 |
"org.graalvm.compiler.loop.phases", |
|
664 |
"org.graalvm.compiler.word", |
|
665 |
], |
|
666 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
667 |
"javaCompliance" : "1.8", |
|
668 |
"annotationProcessors" : [ |
|
669 |
"GRAAL_OPTIONS_PROCESSOR", |
|
670 |
"GRAAL_REPLACEMENTS_VERIFIER", |
|
671 |
"GRAAL_NODEINFO_PROCESSOR", |
|
672 |
], |
|
673 |
"workingSets" : "Graal,Replacements", |
|
674 |
}, |
|
675 |
||
676 |
"org.graalvm.compiler.replacements.aarch64" : { |
|
677 |
"subDir" : "share/classes", |
|
678 |
"sourceDirs" : ["src"], |
|
679 |
"dependencies" : [ |
|
680 |
"org.graalvm.compiler.replacements", |
|
681 |
"org.graalvm.compiler.lir.aarch64", |
|
682 |
], |
|
683 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
684 |
"javaCompliance" : "1.8", |
|
685 |
"annotationProcessors" : [ |
|
686 |
"GRAAL_NODEINFO_PROCESSOR", |
|
687 |
"GRAAL_REPLACEMENTS_VERIFIER", |
|
688 |
], |
|
689 |
"workingSets" : "Graal,Replacements,AArch64", |
|
690 |
}, |
|
691 |
||
692 |
"org.graalvm.compiler.replacements.amd64" : { |
|
693 |
"subDir" : "share/classes", |
|
694 |
"sourceDirs" : ["src"], |
|
695 |
"dependencies" : [ |
|
696 |
"org.graalvm.compiler.replacements", |
|
697 |
"org.graalvm.compiler.lir.amd64", |
|
698 |
], |
|
699 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
700 |
"javaCompliance" : "1.8", |
|
701 |
"annotationProcessors" : [ |
|
702 |
"GRAAL_NODEINFO_PROCESSOR", |
|
703 |
"GRAAL_REPLACEMENTS_VERIFIER", |
|
704 |
], |
|
705 |
"workingSets" : "Graal,Replacements,AMD64", |
|
706 |
}, |
|
707 |
||
708 |
"org.graalvm.compiler.replacements.sparc" : { |
|
709 |
"subDir" : "share/classes", |
|
710 |
"sourceDirs" : ["src"], |
|
711 |
"dependencies" : [ |
|
712 |
"org.graalvm.compiler.replacements", |
|
713 |
], |
|
714 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
715 |
"javaCompliance" : "1.8", |
|
716 |
"workingSets" : "Graal,Replacements,SPARC", |
|
717 |
}, |
|
718 |
||
719 |
"org.graalvm.compiler.replacements.test" : { |
|
720 |
"subDir" : "share/classes", |
|
721 |
"sourceDirs" : ["src"], |
|
722 |
"dependencies" : [ |
|
723 |
"org.graalvm.compiler.core.test", |
|
724 |
"org.graalvm.compiler.replacements", |
|
725 |
], |
|
726 |
"annotationProcessors" : [ |
|
727 |
"GRAAL_NODEINFO_PROCESSOR", |
|
728 |
"GRAAL_REPLACEMENTS_VERIFIER" |
|
729 |
], |
|
730 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
731 |
"javaCompliance" : "1.8", |
|
732 |
"workingSets" : "Graal,Replacements,Test", |
|
733 |
"jacoco" : "exclude", |
|
734 |
}, |
|
735 |
||
736 |
"org.graalvm.compiler.replacements.verifier" : { |
|
737 |
"subDir" : "share/classes", |
|
738 |
"sourceDirs" : ["src"], |
|
739 |
"dependencies" : [ |
|
740 |
"org.graalvm.compiler.api.replacements", |
|
741 |
"org.graalvm.compiler.graph", |
|
742 |
], |
|
743 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
744 |
"javaCompliance" : "1.8", |
|
745 |
"workingSets" : "Graal,Replacements", |
|
746 |
}, |
|
747 |
||
748 |
"org.graalvm.compiler.nodes" : { |
|
749 |
"subDir" : "share/classes", |
|
750 |
"sourceDirs" : ["src"], |
|
751 |
"dependencies" : [ |
|
752 |
"org.graalvm.compiler.api.replacements", |
|
753 |
"org.graalvm.compiler.bytecode", |
|
754 |
"org.graalvm.compiler.lir", |
|
755 |
], |
|
756 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
757 |
"javaCompliance" : "1.8", |
|
758 |
"annotationProcessors" : [ |
|
759 |
"GRAAL_NODEINFO_PROCESSOR", |
|
760 |
"GRAAL_REPLACEMENTS_VERIFIER", |
|
761 |
"GRAAL_OPTIONS_PROCESSOR", |
|
762 |
], |
|
763 |
"workingSets" : "Graal,Graph", |
|
764 |
}, |
|
765 |
||
766 |
"org.graalvm.compiler.nodes.test" : { |
|
767 |
"subDir" : "share/classes", |
|
768 |
"sourceDirs" : ["src"], |
|
769 |
"dependencies" : ["org.graalvm.compiler.core.test"], |
|
770 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
771 |
"javaCompliance" : "1.8", |
|
772 |
"workingSets" : "Graal,Graph", |
|
773 |
}, |
|
774 |
||
775 |
"org.graalvm.compiler.phases" : { |
|
776 |
"subDir" : "share/classes", |
|
777 |
"sourceDirs" : ["src"], |
|
778 |
"dependencies" : ["org.graalvm.compiler.nodes"], |
|
779 |
"annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"], |
|
780 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
781 |
"javaCompliance" : "1.8", |
|
782 |
"workingSets" : "Graal,Phases", |
|
783 |
}, |
|
784 |
||
785 |
"org.graalvm.compiler.phases.common" : { |
|
786 |
"subDir" : "share/classes", |
|
787 |
"sourceDirs" : ["src"], |
|
788 |
"dependencies" : ["org.graalvm.compiler.phases"], |
|
789 |
"annotationProcessors" : [ |
|
790 |
"GRAAL_NODEINFO_PROCESSOR", |
|
791 |
"GRAAL_OPTIONS_PROCESSOR" |
|
792 |
], |
|
793 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
794 |
"javaCompliance" : "1.8", |
|
795 |
"workingSets" : "Graal,Phases", |
|
796 |
}, |
|
797 |
||
798 |
"org.graalvm.compiler.phases.common.test" : { |
|
799 |
"subDir" : "share/classes", |
|
800 |
"sourceDirs" : ["src"], |
|
801 |
"dependencies" : [ |
|
802 |
"org.graalvm.compiler.api.test", |
|
803 |
"org.graalvm.compiler.runtime", |
|
804 |
"mx:JUNIT", |
|
805 |
], |
|
806 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
807 |
"javaCompliance" : "1.8", |
|
808 |
"workingSets" : "Graal,Test", |
|
809 |
}, |
|
810 |
||
811 |
"org.graalvm.compiler.virtual" : { |
|
812 |
"subDir" : "share/classes", |
|
813 |
"sourceDirs" : ["src"], |
|
814 |
"dependencies" : ["org.graalvm.compiler.phases.common"], |
|
815 |
"annotationProcessors" : [ |
|
816 |
"GRAAL_OPTIONS_PROCESSOR", |
|
817 |
"GRAAL_NODEINFO_PROCESSOR" |
|
818 |
], |
|
819 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
820 |
"javaCompliance" : "1.8", |
|
821 |
"workingSets" : "Graal,Phases", |
|
822 |
}, |
|
823 |
||
46640 | 824 |
"org.graalvm.compiler.virtual.bench" : { |
825 |
"subDir" : "share/classes", |
|
826 |
"sourceDirs" : ["src"], |
|
827 |
"dependencies" : ["mx:JMH_1_18", "org.graalvm.compiler.microbenchmarks"], |
|
828 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
829 |
"javaCompliance" : "1.8", |
|
830 |
"annotationProcessors" : ["mx:JMH_1_18"], |
|
831 |
"findbugsIgnoresGenerated" : True, |
|
832 |
"workingSets" : "Graal,Bench", |
|
833 |
"isTestProject" : True, |
|
834 |
}, |
|
835 |
||
836 |
"org.graalvm.compiler.microbenchmarks" : { |
|
837 |
"subDir" : "share/classes", |
|
838 |
"sourceDirs" : ["src"], |
|
839 |
"dependencies" : [ |
|
840 |
"mx:JMH_1_18", |
|
841 |
"org.graalvm.compiler.api.test", |
|
842 |
"org.graalvm.compiler.java", |
|
843 |
"org.graalvm.compiler.runtime", |
|
844 |
], |
|
845 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
846 |
"javaCompliance" : "1.8", |
|
847 |
"checkPackagePrefix" : "false", |
|
848 |
"annotationProcessors" : ["mx:JMH_1_18"], |
|
849 |
"findbugsIgnoresGenerated" : True, |
|
850 |
"workingSets" : "Graal,Bench", |
|
851 |
"isTestProject" : True, |
|
852 |
}, |
|
853 |
||
43972 | 854 |
"org.graalvm.compiler.loop" : { |
855 |
"subDir" : "share/classes", |
|
856 |
"sourceDirs" : ["src"], |
|
857 |
"dependencies" : ["org.graalvm.compiler.nodes"], |
|
858 |
"annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"], |
|
859 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
860 |
"javaCompliance" : "1.8", |
|
861 |
"workingSets" : "Graal", |
|
862 |
}, |
|
863 |
||
46344 | 864 |
"org.graalvm.compiler.loop.test" : { |
865 |
"subDir" : "share/classes", |
|
866 |
"sourceDirs" : ["src"], |
|
867 |
"dependencies" : [ |
|
868 |
"org.graalvm.compiler.loop", |
|
869 |
"org.graalvm.compiler.core.test" |
|
870 |
], |
|
871 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
872 |
"javaCompliance" : "1.8", |
|
873 |
"workingSets" : "Graal,Test", |
|
874 |
}, |
|
875 |
||
43972 | 876 |
"org.graalvm.compiler.loop.phases" : { |
877 |
"subDir" : "share/classes", |
|
878 |
"sourceDirs" : ["src"], |
|
879 |
"dependencies" : [ |
|
880 |
"org.graalvm.compiler.loop", |
|
881 |
"org.graalvm.compiler.phases.common", |
|
882 |
], |
|
883 |
"annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"], |
|
884 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
885 |
"javaCompliance" : "1.8", |
|
886 |
"workingSets" : "Graal,Phases", |
|
887 |
}, |
|
888 |
||
889 |
"org.graalvm.compiler.core" : { |
|
890 |
"subDir" : "share/classes", |
|
891 |
"sourceDirs" : ["src"], |
|
892 |
"dependencies" : [ |
|
893 |
"org.graalvm.compiler.virtual", |
|
894 |
"org.graalvm.compiler.loop.phases", |
|
895 |
], |
|
46344 | 896 |
"uses" : ["org.graalvm.compiler.core.match.MatchStatementSet"], |
43972 | 897 |
"checkstyle" : "org.graalvm.compiler.graph", |
898 |
"javaCompliance" : "1.8", |
|
899 |
"annotationProcessors" : [ |
|
900 |
"GRAAL_SERVICEPROVIDER_PROCESSOR", |
|
901 |
"GRAAL_OPTIONS_PROCESSOR", |
|
902 |
], |
|
903 |
"workingSets" : "Graal", |
|
904 |
}, |
|
905 |
||
906 |
"org.graalvm.compiler.core.match.processor" : { |
|
907 |
"subDir" : "share/classes", |
|
908 |
"sourceDirs" : ["src"], |
|
909 |
"dependencies" : [ |
|
910 |
"org.graalvm.compiler.core", |
|
911 |
], |
|
912 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
913 |
"javaCompliance" : "1.8", |
|
914 |
"workingSets" : "Graal,Codegen", |
|
915 |
}, |
|
916 |
||
917 |
"org.graalvm.compiler.core.aarch64" : { |
|
918 |
"subDir" : "share/classes", |
|
919 |
"sourceDirs" : ["src"], |
|
920 |
"dependencies" : [ |
|
921 |
"org.graalvm.compiler.core", |
|
922 |
"org.graalvm.compiler.lir.aarch64", |
|
923 |
"org.graalvm.compiler.java", |
|
924 |
], |
|
925 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
926 |
"annotationProcessors" : [ |
|
927 |
"GRAAL_NODEINFO_PROCESSOR", |
|
928 |
"GRAAL_COMPILER_MATCH_PROCESSOR", |
|
929 |
], |
|
930 |
"javaCompliance" : "1.8", |
|
931 |
"workingSets" : "Graal,AArch64", |
|
932 |
}, |
|
933 |
||
934 |
"org.graalvm.compiler.core.aarch64.test" : { |
|
935 |
"subDir" : "share/classes", |
|
936 |
"sourceDirs" : ["src"], |
|
937 |
"dependencies" : [ |
|
938 |
"org.graalvm.compiler.lir.jtt", |
|
939 |
"org.graalvm.compiler.lir.aarch64", |
|
44836 | 940 |
"JVMCI_HOTSPOT" |
43972 | 941 |
], |
942 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
943 |
"javaCompliance" : "1.8", |
|
944 |
"workingSets" : "Graal,AArch64,Test", |
|
945 |
}, |
|
946 |
||
947 |
"org.graalvm.compiler.core.amd64" : { |
|
948 |
"subDir" : "share/classes", |
|
949 |
"sourceDirs" : ["src"], |
|
950 |
"dependencies" : [ |
|
951 |
"org.graalvm.compiler.core", |
|
952 |
"org.graalvm.compiler.lir.amd64", |
|
953 |
"org.graalvm.compiler.java", |
|
954 |
], |
|
955 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
956 |
"annotationProcessors" : [ |
|
957 |
"GRAAL_NODEINFO_PROCESSOR", |
|
958 |
"GRAAL_COMPILER_MATCH_PROCESSOR", |
|
959 |
], |
|
960 |
"javaCompliance" : "1.8", |
|
961 |
"workingSets" : "Graal,AMD64", |
|
962 |
}, |
|
963 |
||
964 |
"org.graalvm.compiler.core.amd64.test" : { |
|
965 |
"subDir" : "share/classes", |
|
966 |
"sourceDirs" : ["src"], |
|
967 |
"dependencies" : [ |
|
968 |
"org.graalvm.compiler.lir.jtt", |
|
969 |
"org.graalvm.compiler.lir.amd64", |
|
48398 | 970 |
"org.graalvm.compiler.core.amd64", |
44836 | 971 |
"JVMCI_HOTSPOT" |
43972 | 972 |
], |
973 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
974 |
"javaCompliance" : "1.8", |
|
975 |
"workingSets" : "Graal,AMD64,Test", |
|
976 |
}, |
|
977 |
||
978 |
"org.graalvm.compiler.core.sparc" : { |
|
979 |
"subDir" : "share/classes", |
|
980 |
"sourceDirs" : ["src"], |
|
981 |
"dependencies" : [ |
|
982 |
"org.graalvm.compiler.core", |
|
983 |
"org.graalvm.compiler.lir.sparc", |
|
984 |
"org.graalvm.compiler.java" |
|
985 |
], |
|
986 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
987 |
"annotationProcessors" : [ |
|
988 |
"GRAAL_NODEINFO_PROCESSOR", |
|
989 |
"GRAAL_COMPILER_MATCH_PROCESSOR", |
|
990 |
], |
|
991 |
"javaCompliance" : "1.8", |
|
992 |
"workingSets" : "Graal,SPARC", |
|
993 |
}, |
|
994 |
||
48861 | 995 |
"org.graalvm.compiler.hotspot.sparc.test" : { |
43972 | 996 |
"subDir" : "share/classes", |
997 |
"sourceDirs" : ["src"], |
|
998 |
"dependencies" : [ |
|
48861 | 999 |
"org.graalvm.compiler.hotspot", |
43972 | 1000 |
"org.graalvm.compiler.lir.jtt", |
44836 | 1001 |
"JVMCI_HOTSPOT" |
43972 | 1002 |
], |
1003 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
1004 |
"javaCompliance" : "1.8", |
|
1005 |
"workingSets" : "Graal,SPARC,Test", |
|
1006 |
}, |
|
1007 |
||
1008 |
"org.graalvm.compiler.runtime" : { |
|
1009 |
"subDir" : "share/classes", |
|
1010 |
"sourceDirs" : ["src"], |
|
1011 |
"dependencies" : ["org.graalvm.compiler.core"], |
|
1012 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
1013 |
"javaCompliance" : "1.8", |
|
1014 |
"workingSets" : "Graal", |
|
1015 |
}, |
|
1016 |
||
1017 |
"org.graalvm.compiler.java" : { |
|
1018 |
"subDir" : "share/classes", |
|
1019 |
"sourceDirs" : ["src"], |
|
1020 |
"dependencies" : [ |
|
1021 |
"org.graalvm.compiler.phases", |
|
1022 |
], |
|
1023 |
"annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"], |
|
1024 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
1025 |
"javaCompliance" : "1.8", |
|
1026 |
"workingSets" : "Graal,Java", |
|
1027 |
}, |
|
1028 |
||
1029 |
"org.graalvm.compiler.core.common" : { |
|
1030 |
"subDir" : "share/classes", |
|
1031 |
"sourceDirs" : ["src"], |
|
1032 |
"dependencies" : [ |
|
48861 | 1033 |
"org.graalvm.collections", |
43972 | 1034 |
"org.graalvm.compiler.debug", |
46640 | 1035 |
"org.graalvm.word", |
43972 | 1036 |
], |
1037 |
"annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"], |
|
1038 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
1039 |
"javaCompliance" : "1.8", |
|
1040 |
"workingSets" : "Graal,Java", |
|
1041 |
}, |
|
1042 |
||
1043 |
"org.graalvm.compiler.printer" : { |
|
1044 |
"subDir" : "share/classes", |
|
1045 |
"sourceDirs" : ["src"], |
|
1046 |
"dependencies" : [ |
|
1047 |
"org.graalvm.compiler.core", |
|
1048 |
"org.graalvm.compiler.java", |
|
1049 |
], |
|
1050 |
"annotationProcessors" : [ |
|
1051 |
"GRAAL_OPTIONS_PROCESSOR", |
|
1052 |
"GRAAL_SERVICEPROVIDER_PROCESSOR" |
|
1053 |
], |
|
1054 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
1055 |
"javaCompliance" : "1.8", |
|
1056 |
"workingSets" : "Graal,Graph", |
|
1057 |
}, |
|
1058 |
||
1059 |
"org.graalvm.compiler.test" : { |
|
1060 |
"subDir" : "share/classes", |
|
1061 |
"sourceDirs" : ["src"], |
|
1062 |
"dependencies" : [ |
|
46640 | 1063 |
"org.graalvm.compiler.debug", |
43972 | 1064 |
"mx:JUNIT", |
1065 |
], |
|
1066 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
1067 |
"javaCompliance" : "1.8", |
|
1068 |
"workingSets" : "Graal,Test", |
|
1069 |
}, |
|
1070 |
||
1071 |
"org.graalvm.compiler.core.test" : { |
|
1072 |
"subDir" : "share/classes", |
|
1073 |
"sourceDirs" : ["src"], |
|
1074 |
"dependencies" : [ |
|
1075 |
"org.graalvm.compiler.api.directives", |
|
1076 |
"org.graalvm.compiler.java", |
|
1077 |
"org.graalvm.compiler.test", |
|
1078 |
"org.graalvm.compiler.runtime", |
|
1079 |
"org.graalvm.compiler.graph.test", |
|
1080 |
"org.graalvm.compiler.printer", |
|
1081 |
"JAVA_ALLOCATION_INSTRUMENTER", |
|
44836 | 1082 |
"ASM_TREE5", |
43972 | 1083 |
], |
46344 | 1084 |
"uses" : ["org.graalvm.compiler.options.OptionDescriptors"], |
43972 | 1085 |
"annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], |
1086 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
1087 |
"javaCompliance" : "1.8", |
|
1088 |
"workingSets" : "Graal,Test", |
|
1089 |
"jacoco" : "exclude", |
|
1090 |
}, |
|
1091 |
||
1092 |
"org.graalvm.compiler.jtt" : { |
|
1093 |
"subDir" : "share/classes", |
|
1094 |
"sourceDirs" : ["src"], |
|
1095 |
"dependencies" : [ |
|
1096 |
"org.graalvm.compiler.core.test", |
|
1097 |
], |
|
1098 |
"checkstyle" : "org.graalvm.compiler.graph", |
|
1099 |
"javaCompliance" : "1.8", |
|
1100 |
"workingSets" : "Graal,Test", |
|
1101 |
"jacoco" : "exclude", |
|
1102 |
"findbugs" : "false", |
|
1103 |
}, |
|
1104 |
||
1105 |
# ------------- AOT ------------- |
|
1106 |
||
1107 |
"jdk.tools.jaotc" : { |
|
1108 |
"subDir" : "../jdk.aot/share/classes", |
|
1109 |
"sourceDirs" : ["src"], |
|
1110 |
"dependencies" : [ |
|
1111 |
"jdk.tools.jaotc.binformat", |
|
1112 |
"org.graalvm.compiler.asm.amd64", |
|
1113 |
], |
|
1114 |
"checkstyle" : "jdk.tools.jaotc", |
|
1115 |
"javaCompliance" : "1.8", |
|
1116 |
}, |
|
1117 |
||
1118 |
"jdk.tools.jaotc.test" : { |
|
47638 | 1119 |
"subDir" : "../../test/hotspot/jtreg/compiler/aot", |
43972 | 1120 |
"sourceDirs" : ["src"], |
1121 |
"dependencies" : [ |
|
1122 |
"mx:JUNIT", |
|
1123 |
"jdk.tools.jaotc", |
|
1124 |
], |
|
1125 |
"checkstyle" : "jdk.tools.jaotc", |
|
1126 |
"javaCompliance" : "1.8", |
|
1127 |
}, |
|
1128 |
||
1129 |
"jdk.tools.jaotc.binformat" : { |
|
1130 |
"subDir" : "../jdk.aot/share/classes", |
|
1131 |
"sourceDirs" : ["src"], |
|
1132 |
"generatedDependencies" : [ |
|
1133 |
"org.graalvm.compiler.hotspot", |
|
1134 |
], |
|
1135 |
"checkstyle" : "jdk.tools.jaotc", |
|
1136 |
"javaCompliance" : "1.8", |
|
1137 |
}, |
|
1138 |
}, |
|
1139 |
||
1140 |
"distributions" : { |
|
1141 |
||
1142 |
# ------------- Distributions ------------- |
|
1143 |
||
1144 |
"GRAAL_OPTIONS" : { |
|
1145 |
"subDir" : "share/classes", |
|
1146 |
"dependencies" : ["org.graalvm.compiler.options"], |
|
1147 |
"distDependencies" : [ |
|
1148 |
], |
|
1149 |
}, |
|
1150 |
||
46762 | 1151 |
"GRAAL_GRAPHIO" : { |
1152 |
"subDir" : "share/classes", |
|
1153 |
"dependencies" : ["org.graalvm.graphio"], |
|
1154 |
"distDependencies" : [ |
|
1155 |
], |
|
1156 |
}, |
|
1157 |
||
43972 | 1158 |
"GRAAL_OPTIONS_PROCESSOR" : { |
1159 |
"subDir" : "share/classes", |
|
1160 |
"dependencies" : ["org.graalvm.compiler.options.processor"], |
|
1161 |
"distDependencies" : [ |
|
1162 |
"GRAAL_OPTIONS", |
|
1163 |
], |
|
1164 |
}, |
|
1165 |
||
1166 |
"GRAAL_NODEINFO" : { |
|
1167 |
"subDir" : "share/classes", |
|
1168 |
"dependencies" : [ |
|
1169 |
"org.graalvm.compiler.nodeinfo", |
|
1170 |
], |
|
1171 |
}, |
|
1172 |
||
1173 |
"GRAAL_SERVICEPROVIDER" : { |
|
1174 |
"subDir" : "graal", |
|
1175 |
"dependencies" : ["org.graalvm.compiler.serviceprovider"], |
|
1176 |
"distDependencies" : [ |
|
1177 |
"GRAAL_NODEINFO", |
|
1178 |
], |
|
1179 |
}, |
|
1180 |
||
1181 |
"GRAAL_API" : { |
|
1182 |
"subDir" : "share/classes", |
|
1183 |
"dependencies" : [ |
|
1184 |
"org.graalvm.compiler.api.replacements", |
|
1185 |
"org.graalvm.compiler.api.runtime", |
|
1186 |
"org.graalvm.compiler.graph", |
|
1187 |
], |
|
1188 |
"distDependencies" : [ |
|
1189 |
"GRAAL_NODEINFO", |
|
1190 |
"GRAAL_OPTIONS", |
|
1191 |
"GRAAL_SERVICEPROVIDER", |
|
1192 |
], |
|
1193 |
}, |
|
1194 |
||
1195 |
"GRAAL_COMPILER" : { |
|
1196 |
"subDir" : "share/classes", |
|
1197 |
"dependencies" : [ |
|
1198 |
"org.graalvm.compiler.core", |
|
1199 |
], |
|
1200 |
"distDependencies" : [ |
|
1201 |
"GRAAL_API", |
|
1202 |
"GRAAL_SERVICEPROVIDER", |
|
1203 |
], |
|
1204 |
}, |
|
1205 |
||
1206 |
"GRAAL_RUNTIME" : { |
|
1207 |
"subDir" : "share/classes", |
|
1208 |
"dependencies" : [ |
|
1209 |
"org.graalvm.compiler.replacements", |
|
1210 |
"org.graalvm.compiler.runtime", |
|
1211 |
"org.graalvm.compiler.code", |
|
1212 |
"org.graalvm.compiler.printer", |
|
1213 |
"org.graalvm.compiler.core.aarch64", |
|
1214 |
"org.graalvm.compiler.replacements.aarch64", |
|
1215 |
"org.graalvm.compiler.core.amd64", |
|
1216 |
"org.graalvm.compiler.replacements.amd64", |
|
1217 |
"org.graalvm.compiler.core.sparc", |
|
1218 |
"org.graalvm.compiler.replacements.sparc", |
|
1219 |
], |
|
1220 |
"distDependencies" : [ |
|
1221 |
"GRAAL_API", |
|
1222 |
"GRAAL_COMPILER", |
|
46762 | 1223 |
"GRAAL_GRAPHIO", |
43972 | 1224 |
], |
1225 |
}, |
|
1226 |
||
1227 |
"GRAAL_HOTSPOT" : { |
|
1228 |
"subDir" : "share/classes", |
|
1229 |
"dependencies" : [ |
|
1230 |
"org.graalvm.compiler.hotspot.aarch64", |
|
1231 |
"org.graalvm.compiler.hotspot.amd64", |
|
1232 |
"org.graalvm.compiler.hotspot.sparc", |
|
1233 |
"org.graalvm.compiler.hotspot", |
|
1234 |
], |
|
1235 |
"distDependencies" : [ |
|
1236 |
"GRAAL_COMPILER", |
|
1237 |
"GRAAL_RUNTIME", |
|
1238 |
], |
|
1239 |
}, |
|
1240 |
||
1241 |
"GRAAL_TEST" : { |
|
1242 |
"subDir" : "share/classes", |
|
1243 |
"dependencies" : [ |
|
1244 |
"org.graalvm.compiler.api.test", |
|
1245 |
"org.graalvm.compiler.api.directives.test", |
|
1246 |
"org.graalvm.compiler.asm.sparc.test", |
|
1247 |
"org.graalvm.compiler.asm.aarch64.test", |
|
1248 |
"org.graalvm.compiler.asm.amd64.test", |
|
1249 |
"org.graalvm.compiler.core.aarch64.test", |
|
1250 |
"org.graalvm.compiler.core.amd64.test", |
|
1251 |
"org.graalvm.compiler.debug.test", |
|
1252 |
"org.graalvm.compiler.hotspot.aarch64.test", |
|
1253 |
"org.graalvm.compiler.hotspot.amd64.test", |
|
1254 |
"org.graalvm.compiler.hotspot.lir.test", |
|
48861 | 1255 |
"org.graalvm.compiler.hotspot.sparc.test", |
43972 | 1256 |
"org.graalvm.compiler.options.test", |
1257 |
"org.graalvm.compiler.jtt", |
|
1258 |
"org.graalvm.compiler.lir.jtt", |
|
1259 |
"org.graalvm.compiler.lir.test", |
|
1260 |
"org.graalvm.compiler.nodes.test", |
|
1261 |
"org.graalvm.compiler.phases.common.test", |
|
1262 |
], |
|
1263 |
"distDependencies" : [ |
|
1264 |
"GRAAL_HOTSPOT", |
|
1265 |
], |
|
1266 |
"exclude" : [ |
|
1267 |
"mx:JUNIT", |
|
1268 |
"JAVA_ALLOCATION_INSTRUMENTER", |
|
1269 |
], |
|
1270 |
}, |
|
1271 |
||
1272 |
"GRAAL_SERVICEPROVIDER" : { |
|
1273 |
"subDir" : "share/classes", |
|
1274 |
"dependencies" : ["org.graalvm.compiler.serviceprovider"], |
|
1275 |
"distDependencies" : [ |
|
1276 |
"GRAAL_NODEINFO", |
|
1277 |
], |
|
1278 |
}, |
|
1279 |
||
1280 |
"GRAAL_SERVICEPROVIDER_PROCESSOR" : { |
|
1281 |
"subDir" : "share/classes", |
|
1282 |
"dependencies" : ["org.graalvm.compiler.serviceprovider.processor"], |
|
1283 |
"distDependencies" : [ |
|
1284 |
"GRAAL_SERVICEPROVIDER", |
|
1285 |
], |
|
1286 |
}, |
|
1287 |
||
1288 |
"GRAAL_NODEINFO_PROCESSOR" : { |
|
1289 |
"subDir" : "share/classes", |
|
1290 |
"dependencies" : ["org.graalvm.compiler.nodeinfo.processor"], |
|
1291 |
"distDependencies" : [ |
|
1292 |
"GRAAL_NODEINFO", |
|
1293 |
], |
|
1294 |
}, |
|
1295 |
||
1296 |
"GRAAL_REPLACEMENTS_VERIFIER" : { |
|
1297 |
"subDir" : "share/classes", |
|
1298 |
"dependencies" : ["org.graalvm.compiler.replacements.verifier"], |
|
1299 |
"distDependencies" : [ |
|
1300 |
"GRAAL_API", |
|
1301 |
"GRAAL_SERVICEPROVIDER", |
|
1302 |
"GRAAL_SERVICEPROVIDER_PROCESSOR", |
|
1303 |
], |
|
1304 |
}, |
|
1305 |
||
1306 |
"GRAAL_COMPILER_MATCH_PROCESSOR" : { |
|
1307 |
"subDir" : "share/classes", |
|
1308 |
"dependencies" : ["org.graalvm.compiler.core.match.processor"], |
|
1309 |
"distDependencies" : [ |
|
1310 |
"GRAAL_COMPILER", |
|
1311 |
"GRAAL_SERVICEPROVIDER_PROCESSOR", |
|
1312 |
] |
|
1313 |
}, |
|
1314 |
||
1315 |
"GRAAL" : { |
|
1316 |
"subDir" : "share/classes", |
|
1317 |
"overlaps" : [ |
|
46762 | 1318 |
"GRAAL_GRAPHIO", |
43972 | 1319 |
"GRAAL_OPTIONS", |
1320 |
"GRAAL_NODEINFO", |
|
1321 |
"GRAAL_API", |
|
1322 |
"GRAAL_COMPILER", |
|
1323 |
"GRAAL_RUNTIME", |
|
1324 |
"GRAAL_HOTSPOT", |
|
1325 |
"GRAAL_SERVICEPROVIDER", |
|
1326 |
], |
|
1327 |
"dependencies" : [ |
|
1328 |
"org.graalvm.compiler.options", |
|
1329 |
"org.graalvm.compiler.nodeinfo", |
|
1330 |
"org.graalvm.compiler.api.replacements", |
|
1331 |
"org.graalvm.compiler.api.runtime", |
|
1332 |
"org.graalvm.compiler.graph", |
|
1333 |
"org.graalvm.compiler.core", |
|
1334 |
"org.graalvm.compiler.replacements", |
|
1335 |
"org.graalvm.compiler.runtime", |
|
1336 |
"org.graalvm.compiler.code", |
|
1337 |
"org.graalvm.compiler.printer", |
|
1338 |
"org.graalvm.compiler.core.aarch64", |
|
1339 |
"org.graalvm.compiler.replacements.aarch64", |
|
1340 |
"org.graalvm.compiler.core.amd64", |
|
1341 |
"org.graalvm.compiler.replacements.amd64", |
|
1342 |
"org.graalvm.compiler.core.sparc", |
|
1343 |
"org.graalvm.compiler.replacements.sparc", |
|
1344 |
"org.graalvm.compiler.hotspot.aarch64", |
|
1345 |
"org.graalvm.compiler.hotspot.amd64", |
|
1346 |
"org.graalvm.compiler.hotspot.sparc", |
|
1347 |
"org.graalvm.compiler.hotspot", |
|
1348 |
], |
|
1349 |
"distDependencies" : [ |
|
1350 |
] |
|
1351 |
}, |
|
1352 |
||
1353 |
||
1354 |
}, |
|
1355 |
} |