comparison mx.graal/suite.py @ 22915:c5aa3f4aac72

revert javaCompliance for Graal projects to 1.8
author Doug Simon <doug.simon@oracle.com>
date Sat, 31 Oct 2015 12:49:00 +0100
parents 6ecf989e8556
children be55d92d4cb6
comparison
equal deleted inserted replaced
22914:194f209f7641 22915:c5aa3f4aac72
1 import mx 1 import mx
2 JDK9 = mx.get_jdk(tag='default').javaCompliance >= "1.9" 2 JDK9 = mx.get_jdk(tag='default').javaCompliance >= "1.9"
3 _8_9 = "1.9" if JDK9 else "1.8"
4 3
5 def deps(l): 4 def deps(l):
6 """ 5 """
7 If using JDK9, replaces dependencies starting with 'jvmci:' with 'JVMCI'. 6 If using JDK9, replaces dependencies starting with 'jvmci:' with 'JVMCI'.
8 Otherwise, excludes "JVMCI". 7 Otherwise, excludes "JVMCI".
89 "sha1" : "be2e08e6776191e9c559a65b7d34e92e86b4fa5c", 88 "sha1" : "be2e08e6776191e9c559a65b7d34e92e86b4fa5c",
90 "urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/jmh/jmh-runner-1.10.4.jar"], 89 "urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/jmh/jmh-runner-1.10.4.jar"],
91 }, 90 },
92 91
93 # Library that allows Graal to compile against JVMCI without the jvmci suite. 92 # Library that allows Graal to compile against JVMCI without the jvmci suite.
94 # This library is not added to the boot class path at run time. 93 # This library is not added to the boot class path at run time and so code
94 # compiled against this library must be run on (JVMCI enabled) JDK9.
95 "JVMCI" : { 95 "JVMCI" : {
96 "sha1" : "f4f0d6cfa751fa644163008810d5123c4c298104", 96 "sha1" : "f4f0d6cfa751fa644163008810d5123c4c298104",
97 "urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/jvmci-b0e383e27552.jar"], 97 "urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/jvmci-b0e383e27552.jar"],
98 }, 98 },
99 }), 99 }),
116 "com.oracle.nfi", 116 "com.oracle.nfi",
117 "jvmci:JVMCI_API", 117 "jvmci:JVMCI_API",
118 "mx:JUNIT", 118 "mx:JUNIT",
119 ]), 119 ]),
120 "checkstyle" : "com.oracle.graal.graph", 120 "checkstyle" : "com.oracle.graal.graph",
121 "javaCompliance" : _8_9, 121 "javaCompliance" : "1.8",
122 }, 122 },
123 123
124 # ------------- Graal ------------- 124 # ------------- Graal -------------
125 125
126 "com.oracle.graal.debug" : { 126 "com.oracle.graal.debug" : {
129 "checkstyle" : "com.oracle.graal.graph", 129 "checkstyle" : "com.oracle.graal.graph",
130 "dependencies" : deps([ 130 "dependencies" : deps([
131 "jvmci:JVMCI_API", 131 "jvmci:JVMCI_API",
132 ]), 132 ]),
133 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]), 133 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
134 "javaCompliance" : _8_9, 134 "javaCompliance" : "1.8",
135 "workingSets" : "JVMCI,Debug", 135 "workingSets" : "JVMCI,Debug",
136 }, 136 },
137 137
138 "com.oracle.graal.debug.test" : { 138 "com.oracle.graal.debug.test" : {
139 "subDir" : "graal", 139 "subDir" : "graal",
141 "dependencies" : [ 141 "dependencies" : [
142 "mx:JUNIT", 142 "mx:JUNIT",
143 "com.oracle.graal.debug", 143 "com.oracle.graal.debug",
144 ], 144 ],
145 "checkstyle" : "com.oracle.graal.graph", 145 "checkstyle" : "com.oracle.graal.graph",
146 "javaCompliance" : _8_9, 146 "javaCompliance" : "1.8",
147 "workingSets" : "JVMCI,Debug,Test", 147 "workingSets" : "JVMCI,Debug,Test",
148 }, 148 },
149 149
150 "com.oracle.graal.code" : { 150 "com.oracle.graal.code" : {
151 "subDir" : "graal", 151 "subDir" : "graal",
154 "jvmci:JVMCI_SERVICE", 154 "jvmci:JVMCI_SERVICE",
155 "jvmci:JVMCI_API", 155 "jvmci:JVMCI_API",
156 ]), 156 ]),
157 "annotationProcessors" : deps(["jvmci:JVMCI_SERVICE_PROCESSOR"]), 157 "annotationProcessors" : deps(["jvmci:JVMCI_SERVICE_PROCESSOR"]),
158 "checkstyle" : "com.oracle.graal.graph", 158 "checkstyle" : "com.oracle.graal.graph",
159 "javaCompliance" : _8_9, 159 "javaCompliance" : "1.8",
160 "workingSets" : "Graal", 160 "workingSets" : "Graal",
161 }, 161 },
162 162
163 "com.oracle.graal.api.collections" : { 163 "com.oracle.graal.api.collections" : {
164 "subDir" : "graal", 164 "subDir" : "graal",
165 "sourceDirs" : ["src"], 165 "sourceDirs" : ["src"],
166 "checkstyle" : "com.oracle.graal.graph", 166 "checkstyle" : "com.oracle.graal.graph",
167 "javaCompliance" : _8_9, 167 "javaCompliance" : "1.8",
168 "workingSets" : "API,Graal", 168 "workingSets" : "API,Graal",
169 }, 169 },
170 170
171 "com.oracle.graal.api.directives" : { 171 "com.oracle.graal.api.directives" : {
172 "subDir" : "graal", 172 "subDir" : "graal",
173 "sourceDirs" : ["src"], 173 "sourceDirs" : ["src"],
174 "checkstyle" : "com.oracle.graal.graph", 174 "checkstyle" : "com.oracle.graal.graph",
175 "javaCompliance" : _8_9, 175 "javaCompliance" : "1.8",
176 "workingSets" : "API,Graal", 176 "workingSets" : "API,Graal",
177 }, 177 },
178 178
179 "com.oracle.graal.api.directives.test" : { 179 "com.oracle.graal.api.directives.test" : {
180 "subDir" : "graal", 180 "subDir" : "graal",
181 "sourceDirs" : ["src"], 181 "sourceDirs" : ["src"],
182 "checkstyle" : "com.oracle.graal.graph", 182 "checkstyle" : "com.oracle.graal.graph",
183 "dependencies" : [ 183 "dependencies" : [
184 "com.oracle.graal.compiler.test", 184 "com.oracle.graal.compiler.test",
185 ], 185 ],
186 "javaCompliance" : _8_9, 186 "javaCompliance" : "1.8",
187 "workingSets" : "API,Graal", 187 "workingSets" : "API,Graal",
188 }, 188 },
189 189
190 "com.oracle.graal.api.runtime" : { 190 "com.oracle.graal.api.runtime" : {
191 "subDir" : "graal", 191 "subDir" : "graal",
192 "sourceDirs" : ["src"], 192 "sourceDirs" : ["src"],
193 "dependencies" : deps([ 193 "dependencies" : deps([
194 "jvmci:JVMCI_API", 194 "jvmci:JVMCI_API",
195 ]), 195 ]),
196 "checkstyle" : "com.oracle.graal.graph", 196 "checkstyle" : "com.oracle.graal.graph",
197 "javaCompliance" : _8_9, 197 "javaCompliance" : "1.8",
198 "workingSets" : "API,Graal", 198 "workingSets" : "API,Graal",
199 }, 199 },
200 200
201 "com.oracle.graal.api.test" : { 201 "com.oracle.graal.api.test" : {
202 "subDir" : "graal", 202 "subDir" : "graal",
204 "dependencies" : [ 204 "dependencies" : [
205 "mx:JUNIT", 205 "mx:JUNIT",
206 "com.oracle.graal.api.runtime", 206 "com.oracle.graal.api.runtime",
207 ], 207 ],
208 "checkstyle" : "com.oracle.graal.graph", 208 "checkstyle" : "com.oracle.graal.graph",
209 "javaCompliance" : _8_9, 209 "javaCompliance" : "1.8",
210 "workingSets" : "API,Graal,Test", 210 "workingSets" : "API,Graal,Test",
211 }, 211 },
212 212
213 "com.oracle.graal.api.replacements" : { 213 "com.oracle.graal.api.replacements" : {
214 "subDir" : "graal", 214 "subDir" : "graal",
215 "sourceDirs" : ["src"], 215 "sourceDirs" : ["src"],
216 "dependencies" : deps(["jvmci:JVMCI_API"]), 216 "dependencies" : deps(["jvmci:JVMCI_API"]),
217 "checkstyle" : "com.oracle.graal.graph", 217 "checkstyle" : "com.oracle.graal.graph",
218 "javaCompliance" : _8_9, 218 "javaCompliance" : "1.8",
219 "workingSets" : "API,Graal,Replacements", 219 "workingSets" : "API,Graal,Replacements",
220 }, 220 },
221 221
222 "com.oracle.graal.hotspot" : { 222 "com.oracle.graal.hotspot" : {
223 "subDir" : "graal", 223 "subDir" : "graal",
235 "GRAAL_COMPILER_MATCH_PROCESSOR", 235 "GRAAL_COMPILER_MATCH_PROCESSOR",
236 "GRAAL_REPLACEMENTS_VERIFIER", 236 "GRAAL_REPLACEMENTS_VERIFIER",
237 "jvmci:JVMCI_OPTIONS_PROCESSOR", 237 "jvmci:JVMCI_OPTIONS_PROCESSOR",
238 "jvmci:JVMCI_SERVICE_PROCESSOR", 238 "jvmci:JVMCI_SERVICE_PROCESSOR",
239 ]), 239 ]),
240 "javaCompliance" : _8_9, 240 "javaCompliance" : "1.8",
241 "workingSets" : "Graal,HotSpot", 241 "workingSets" : "Graal,HotSpot",
242 }, 242 },
243 243
244 "com.oracle.graal.hotspot.amd64" : { 244 "com.oracle.graal.hotspot.amd64" : {
245 "subDir" : "graal", 245 "subDir" : "graal",
252 "checkstyle" : "com.oracle.graal.graph", 252 "checkstyle" : "com.oracle.graal.graph",
253 "annotationProcessors" : deps([ 253 "annotationProcessors" : deps([
254 "jvmci:JVMCI_SERVICE_PROCESSOR", 254 "jvmci:JVMCI_SERVICE_PROCESSOR",
255 "GRAAL_NODEINFO_PROCESSOR" 255 "GRAAL_NODEINFO_PROCESSOR"
256 ]), 256 ]),
257 "javaCompliance" : _8_9, 257 "javaCompliance" : "1.8",
258 "workingSets" : "Graal,HotSpot,AMD64", 258 "workingSets" : "Graal,HotSpot,AMD64",
259 }, 259 },
260 260
261 "com.oracle.graal.hotspot.sparc" : { 261 "com.oracle.graal.hotspot.sparc" : {
262 "subDir" : "graal", 262 "subDir" : "graal",
266 "com.oracle.graal.compiler.sparc", 266 "com.oracle.graal.compiler.sparc",
267 "com.oracle.graal.replacements.sparc", 267 "com.oracle.graal.replacements.sparc",
268 ], 268 ],
269 "checkstyle" : "com.oracle.graal.graph", 269 "checkstyle" : "com.oracle.graal.graph",
270 "annotationProcessors" : deps(["jvmci:JVMCI_SERVICE_PROCESSOR"]), 270 "annotationProcessors" : deps(["jvmci:JVMCI_SERVICE_PROCESSOR"]),
271 "javaCompliance" : _8_9, 271 "javaCompliance" : "1.8",
272 "workingSets" : "Graal,HotSpot,SPARC", 272 "workingSets" : "Graal,HotSpot,SPARC",
273 }, 273 },
274 274
275 "com.oracle.graal.hotspot.test" : { 275 "com.oracle.graal.hotspot.test" : {
276 "subDir" : "graal", 276 "subDir" : "graal",
279 "com.oracle.graal.replacements.test", 279 "com.oracle.graal.replacements.test",
280 "com.oracle.graal.hotspot", 280 "com.oracle.graal.hotspot",
281 ], 281 ],
282 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], 282 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
283 "checkstyle" : "com.oracle.graal.graph", 283 "checkstyle" : "com.oracle.graal.graph",
284 "javaCompliance" : _8_9, 284 "javaCompliance" : "1.8",
285 "workingSets" : "Graal,HotSpot,Test", 285 "workingSets" : "Graal,HotSpot,Test",
286 }, 286 },
287 287
288 "com.oracle.graal.hotspot.amd64.test" : { 288 "com.oracle.graal.hotspot.amd64.test" : {
289 "subDir" : "graal", 289 "subDir" : "graal",
292 "com.oracle.graal.asm.amd64", 292 "com.oracle.graal.asm.amd64",
293 "com.oracle.graal.hotspot.test", 293 "com.oracle.graal.hotspot.test",
294 ], 294 ],
295 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], 295 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
296 "checkstyle" : "com.oracle.graal.graph", 296 "checkstyle" : "com.oracle.graal.graph",
297 "javaCompliance" : _8_9, 297 "javaCompliance" : "1.8",
298 "workingSets" : "Graal,HotSpot,AMD64,Test", 298 "workingSets" : "Graal,HotSpot,AMD64,Test",
299 }, 299 },
300 300
301 "com.oracle.graal.nodeinfo" : { 301 "com.oracle.graal.nodeinfo" : {
302 "subDir" : "graal", 302 "subDir" : "graal",
303 "sourceDirs" : ["src"], 303 "sourceDirs" : ["src"],
304 "checkstyle" : "com.oracle.graal.graph", 304 "checkstyle" : "com.oracle.graal.graph",
305 "javaCompliance" : _8_9, 305 "javaCompliance" : "1.8",
306 "workingSets" : "Graal,Graph", 306 "workingSets" : "Graal,Graph",
307 }, 307 },
308 308
309 "com.oracle.graal.nodeinfo.processor" : { 309 "com.oracle.graal.nodeinfo.processor" : {
310 "subDir" : "graal", 310 "subDir" : "graal",
311 "sourceDirs" : ["src"], 311 "sourceDirs" : ["src"],
312 "checkstyle" : "com.oracle.graal.graph", 312 "checkstyle" : "com.oracle.graal.graph",
313 "dependencies" : [ 313 "dependencies" : [
314 "com.oracle.graal.nodeinfo", 314 "com.oracle.graal.nodeinfo",
315 ], 315 ],
316 "javaCompliance" : _8_9, 316 "javaCompliance" : "1.8",
317 "workingSets" : "Graal,Graph", 317 "workingSets" : "Graal,Graph",
318 }, 318 },
319 319
320 "com.oracle.graal.graph" : { 320 "com.oracle.graal.graph" : {
321 "subDir" : "graal", 321 "subDir" : "graal",
323 "dependencies" : [ 323 "dependencies" : [
324 "com.oracle.graal.nodeinfo", 324 "com.oracle.graal.nodeinfo",
325 "com.oracle.graal.compiler.common", 325 "com.oracle.graal.compiler.common",
326 "com.oracle.graal.api.collections", 326 "com.oracle.graal.api.collections",
327 ], 327 ],
328 "javaCompliance" : _8_9, 328 "javaCompliance" : "1.8",
329 "annotationProcessors" : deps([ 329 "annotationProcessors" : deps([
330 "jvmci:JVMCI_OPTIONS_PROCESSOR", 330 "jvmci:JVMCI_OPTIONS_PROCESSOR",
331 "GRAAL_NODEINFO_PROCESSOR" 331 "GRAAL_NODEINFO_PROCESSOR"
332 ]), 332 ]),
333 "workingSets" : "Graal,Graph", 333 "workingSets" : "Graal,Graph",
341 "mx:JUNIT", 341 "mx:JUNIT",
342 "com.oracle.graal.api.test", 342 "com.oracle.graal.api.test",
343 "com.oracle.graal.graph", 343 "com.oracle.graal.graph",
344 ], 344 ],
345 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], 345 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
346 "javaCompliance" : _8_9, 346 "javaCompliance" : "1.8",
347 "workingSets" : "Graal,Graph,Test", 347 "workingSets" : "Graal,Graph,Test",
348 }, 348 },
349 349
350 "com.oracle.graal.asm" : { 350 "com.oracle.graal.asm" : {
351 "subDir" : "graal", 351 "subDir" : "graal",
352 "sourceDirs" : ["src"], 352 "sourceDirs" : ["src"],
353 "dependencies" : deps(["jvmci:JVMCI_API"]), 353 "dependencies" : deps(["jvmci:JVMCI_API"]),
354 "checkstyle" : "com.oracle.graal.graph", 354 "checkstyle" : "com.oracle.graal.graph",
355 "javaCompliance" : _8_9, 355 "javaCompliance" : "1.8",
356 "workingSets" : "Graal,Assembler", 356 "workingSets" : "Graal,Assembler",
357 }, 357 },
358 358
359 "com.oracle.graal.asm.amd64" : { 359 "com.oracle.graal.asm.amd64" : {
360 "subDir" : "graal", 360 "subDir" : "graal",
361 "sourceDirs" : ["src"], 361 "sourceDirs" : ["src"],
362 "dependencies" : [ 362 "dependencies" : [
363 "com.oracle.graal.asm", 363 "com.oracle.graal.asm",
364 ], 364 ],
365 "checkstyle" : "com.oracle.graal.graph", 365 "checkstyle" : "com.oracle.graal.graph",
366 "javaCompliance" : _8_9, 366 "javaCompliance" : "1.8",
367 "workingSets" : "Graal,Assembler,AMD64", 367 "workingSets" : "Graal,Assembler,AMD64",
368 }, 368 },
369 369
370 "com.oracle.graal.asm.sparc" : { 370 "com.oracle.graal.asm.sparc" : {
371 "subDir" : "graal", 371 "subDir" : "graal",
372 "sourceDirs" : ["src"], 372 "sourceDirs" : ["src"],
373 "dependencies" : [ 373 "dependencies" : [
374 "com.oracle.graal.asm", 374 "com.oracle.graal.asm",
375 ], 375 ],
376 "checkstyle" : "com.oracle.graal.graph", 376 "checkstyle" : "com.oracle.graal.graph",
377 "javaCompliance" : _8_9, 377 "javaCompliance" : "1.8",
378 "workingSets" : "Graal,Assembler,SPARC", 378 "workingSets" : "Graal,Assembler,SPARC",
379 }, 379 },
380 380
381 "com.oracle.graal.bytecode" : { 381 "com.oracle.graal.bytecode" : {
382 "subDir" : "graal", 382 "subDir" : "graal",
383 "sourceDirs" : ["src"], 383 "sourceDirs" : ["src"],
384 "checkstyle" : "com.oracle.graal.graph", 384 "checkstyle" : "com.oracle.graal.graph",
385 "javaCompliance" : _8_9, 385 "javaCompliance" : "1.8",
386 "workingSets" : "Graal,Java", 386 "workingSets" : "Graal,Java",
387 }, 387 },
388 388
389 "com.oracle.graal.asm.test" : { 389 "com.oracle.graal.asm.test" : {
390 "subDir" : "graal", 390 "subDir" : "graal",
393 "com.oracle.graal.code", 393 "com.oracle.graal.code",
394 "com.oracle.graal.test", 394 "com.oracle.graal.test",
395 "com.oracle.graal.debug", 395 "com.oracle.graal.debug",
396 ], 396 ],
397 "checkstyle" : "com.oracle.graal.graph", 397 "checkstyle" : "com.oracle.graal.graph",
398 "javaCompliance" : _8_9, 398 "javaCompliance" : "1.8",
399 "workingSets" : "Graal,Assembler,Test", 399 "workingSets" : "Graal,Assembler,Test",
400 }, 400 },
401 401
402 "com.oracle.graal.asm.amd64.test" : { 402 "com.oracle.graal.asm.amd64.test" : {
403 "subDir" : "graal", 403 "subDir" : "graal",
405 "dependencies" : [ 405 "dependencies" : [
406 "com.oracle.graal.asm.test", 406 "com.oracle.graal.asm.test",
407 "com.oracle.graal.asm.amd64", 407 "com.oracle.graal.asm.amd64",
408 ], 408 ],
409 "checkstyle" : "com.oracle.graal.graph", 409 "checkstyle" : "com.oracle.graal.graph",
410 "javaCompliance" : _8_9, 410 "javaCompliance" : "1.8",
411 "workingSets" : "Graal,Assembler,AMD64,Test", 411 "workingSets" : "Graal,Assembler,AMD64,Test",
412 }, 412 },
413 413
414 "com.oracle.graal.lir" : { 414 "com.oracle.graal.lir" : {
415 "subDir" : "graal", 415 "subDir" : "graal",
418 "com.oracle.graal.compiler.common", 418 "com.oracle.graal.compiler.common",
419 "com.oracle.graal.asm", 419 "com.oracle.graal.asm",
420 ], 420 ],
421 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]), 421 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
422 "checkstyle" : "com.oracle.graal.graph", 422 "checkstyle" : "com.oracle.graal.graph",
423 "javaCompliance" : _8_9, 423 "javaCompliance" : "1.8",
424 "workingSets" : "Graal,LIR", 424 "workingSets" : "Graal,LIR",
425 }, 425 },
426 426
427 "com.oracle.graal.lir.jtt" : { 427 "com.oracle.graal.lir.jtt" : {
428 "subDir" : "graal", 428 "subDir" : "graal",
430 "dependencies" : [ 430 "dependencies" : [
431 "com.oracle.graal.jtt", 431 "com.oracle.graal.jtt",
432 ], 432 ],
433 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], 433 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
434 "checkstyle" : "com.oracle.graal.graph", 434 "checkstyle" : "com.oracle.graal.graph",
435 "javaCompliance" : _8_9, 435 "javaCompliance" : "1.8",
436 "workingSets" : "Graal,LIR", 436 "workingSets" : "Graal,LIR",
437 "findbugs" : "false", 437 "findbugs" : "false",
438 }, 438 },
439 439
440 "com.oracle.graal.lir.test" : { 440 "com.oracle.graal.lir.test" : {
443 "dependencies" : [ 443 "dependencies" : [
444 "mx:JUNIT", 444 "mx:JUNIT",
445 "com.oracle.graal.lir", 445 "com.oracle.graal.lir",
446 ], 446 ],
447 "checkstyle" : "com.oracle.graal.graph", 447 "checkstyle" : "com.oracle.graal.graph",
448 "javaCompliance" : _8_9, 448 "javaCompliance" : "1.8",
449 "workingSets" : "Graal,LIR", 449 "workingSets" : "Graal,LIR",
450 }, 450 },
451 451
452 "com.oracle.graal.lir.amd64" : { 452 "com.oracle.graal.lir.amd64" : {
453 "subDir" : "graal", 453 "subDir" : "graal",
456 "com.oracle.graal.lir", 456 "com.oracle.graal.lir",
457 "com.oracle.graal.asm.amd64", 457 "com.oracle.graal.asm.amd64",
458 ], 458 ],
459 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]), 459 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
460 "checkstyle" : "com.oracle.graal.graph", 460 "checkstyle" : "com.oracle.graal.graph",
461 "javaCompliance" : _8_9, 461 "javaCompliance" : "1.8",
462 "workingSets" : "Graal,LIR,AMD64", 462 "workingSets" : "Graal,LIR,AMD64",
463 }, 463 },
464 464
465 "com.oracle.graal.lir.sparc" : { 465 "com.oracle.graal.lir.sparc" : {
466 "subDir" : "graal", 466 "subDir" : "graal",
468 "dependencies" : [ 468 "dependencies" : [
469 "com.oracle.graal.asm.sparc", 469 "com.oracle.graal.asm.sparc",
470 "com.oracle.graal.lir", 470 "com.oracle.graal.lir",
471 ], 471 ],
472 "checkstyle" : "com.oracle.graal.graph", 472 "checkstyle" : "com.oracle.graal.graph",
473 "javaCompliance" : _8_9, 473 "javaCompliance" : "1.8",
474 "workingSets" : "Graal,LIR,SPARC", 474 "workingSets" : "Graal,LIR,SPARC",
475 }, 475 },
476 476
477 "com.oracle.graal.word" : { 477 "com.oracle.graal.word" : {
478 "subDir" : "graal", 478 "subDir" : "graal",
479 "sourceDirs" : ["src"], 479 "sourceDirs" : ["src"],
480 "dependencies" : ["com.oracle.graal.nodes"], 480 "dependencies" : ["com.oracle.graal.nodes"],
481 "checkstyle" : "com.oracle.graal.graph", 481 "checkstyle" : "com.oracle.graal.graph",
482 "javaCompliance" : _8_9, 482 "javaCompliance" : "1.8",
483 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], 483 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
484 "workingSets" : "API,Graal", 484 "workingSets" : "API,Graal",
485 }, 485 },
486 486
487 "com.oracle.graal.replacements" : { 487 "com.oracle.graal.replacements" : {
492 "com.oracle.graal.java", 492 "com.oracle.graal.java",
493 "com.oracle.graal.loop", 493 "com.oracle.graal.loop",
494 "com.oracle.graal.word", 494 "com.oracle.graal.word",
495 ], 495 ],
496 "checkstyle" : "com.oracle.graal.graph", 496 "checkstyle" : "com.oracle.graal.graph",
497 "javaCompliance" : _8_9, 497 "javaCompliance" : "1.8",
498 "annotationProcessors" : deps([ 498 "annotationProcessors" : deps([
499 "jvmci:JVMCI_OPTIONS_PROCESSOR", 499 "jvmci:JVMCI_OPTIONS_PROCESSOR",
500 "GRAAL_REPLACEMENTS_VERIFIER", 500 "GRAAL_REPLACEMENTS_VERIFIER",
501 "GRAAL_NODEINFO_PROCESSOR", 501 "GRAAL_NODEINFO_PROCESSOR",
502 ]), 502 ]),
510 "com.oracle.graal.replacements", 510 "com.oracle.graal.replacements",
511 "com.oracle.graal.lir.amd64", 511 "com.oracle.graal.lir.amd64",
512 "com.oracle.graal.compiler", 512 "com.oracle.graal.compiler",
513 ], 513 ],
514 "checkstyle" : "com.oracle.graal.graph", 514 "checkstyle" : "com.oracle.graal.graph",
515 "javaCompliance" : _8_9, 515 "javaCompliance" : "1.8",
516 "annotationProcessors" : [ 516 "annotationProcessors" : [
517 "GRAAL_NODEINFO_PROCESSOR", 517 "GRAAL_NODEINFO_PROCESSOR",
518 ], 518 ],
519 "workingSets" : "Graal,Replacements,AMD64", 519 "workingSets" : "Graal,Replacements,AMD64",
520 }, 520 },
525 "dependencies" : [ 525 "dependencies" : [
526 "com.oracle.graal.replacements", 526 "com.oracle.graal.replacements",
527 "com.oracle.graal.compiler", 527 "com.oracle.graal.compiler",
528 ], 528 ],
529 "checkstyle" : "com.oracle.graal.graph", 529 "checkstyle" : "com.oracle.graal.graph",
530 "javaCompliance" : _8_9, 530 "javaCompliance" : "1.8",
531 "workingSets" : "Graal,Replacements,SPARC", 531 "workingSets" : "Graal,Replacements,SPARC",
532 }, 532 },
533 533
534 "com.oracle.graal.replacements.test" : { 534 "com.oracle.graal.replacements.test" : {
535 "subDir" : "graal", 535 "subDir" : "graal",
538 "com.oracle.graal.compiler.test", 538 "com.oracle.graal.compiler.test",
539 "com.oracle.graal.replacements", 539 "com.oracle.graal.replacements",
540 ], 540 ],
541 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], 541 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
542 "checkstyle" : "com.oracle.graal.graph", 542 "checkstyle" : "com.oracle.graal.graph",
543 "javaCompliance" : _8_9, 543 "javaCompliance" : "1.8",
544 "workingSets" : "Graal,Replacements,Test", 544 "workingSets" : "Graal,Replacements,Test",
545 "jacoco" : "exclude", 545 "jacoco" : "exclude",
546 }, 546 },
547 547
548 "com.oracle.graal.replacements.verifier" : { 548 "com.oracle.graal.replacements.verifier" : {
551 "dependencies" : [ 551 "dependencies" : [
552 "com.oracle.graal.api.replacements", 552 "com.oracle.graal.api.replacements",
553 "com.oracle.graal.graph", 553 "com.oracle.graal.graph",
554 ], 554 ],
555 "checkstyle" : "com.oracle.graal.graph", 555 "checkstyle" : "com.oracle.graal.graph",
556 "javaCompliance" : _8_9, 556 "javaCompliance" : "1.8",
557 "workingSets" : "Graal,Replacements", 557 "workingSets" : "Graal,Replacements",
558 }, 558 },
559 559
560 "com.oracle.graal.nodes" : { 560 "com.oracle.graal.nodes" : {
561 "subDir" : "graal", 561 "subDir" : "graal",
565 "com.oracle.graal.api.replacements", 565 "com.oracle.graal.api.replacements",
566 "com.oracle.graal.lir", 566 "com.oracle.graal.lir",
567 "com.oracle.graal.bytecode", 567 "com.oracle.graal.bytecode",
568 ], 568 ],
569 "checkstyle" : "com.oracle.graal.graph", 569 "checkstyle" : "com.oracle.graal.graph",
570 "javaCompliance" : _8_9, 570 "javaCompliance" : "1.8",
571 "annotationProcessors" : [ 571 "annotationProcessors" : [
572 "GRAAL_NODEINFO_PROCESSOR", 572 "GRAAL_NODEINFO_PROCESSOR",
573 "GRAAL_REPLACEMENTS_VERIFIER", 573 "GRAAL_REPLACEMENTS_VERIFIER",
574 ], 574 ],
575 "workingSets" : "Graal,Graph", 575 "workingSets" : "Graal,Graph",
578 "com.oracle.graal.nodes.test" : { 578 "com.oracle.graal.nodes.test" : {
579 "subDir" : "graal", 579 "subDir" : "graal",
580 "sourceDirs" : ["src"], 580 "sourceDirs" : ["src"],
581 "dependencies" : ["com.oracle.graal.compiler.test"], 581 "dependencies" : ["com.oracle.graal.compiler.test"],
582 "checkstyle" : "com.oracle.graal.graph", 582 "checkstyle" : "com.oracle.graal.graph",
583 "javaCompliance" : _8_9, 583 "javaCompliance" : "1.8",
584 "workingSets" : "Graal,Graph", 584 "workingSets" : "Graal,Graph",
585 }, 585 },
586 586
587 "com.oracle.graal.phases" : { 587 "com.oracle.graal.phases" : {
588 "subDir" : "graal", 588 "subDir" : "graal",
589 "sourceDirs" : ["src"], 589 "sourceDirs" : ["src"],
590 "dependencies" : ["com.oracle.graal.nodes"], 590 "dependencies" : ["com.oracle.graal.nodes"],
591 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]), 591 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
592 "checkstyle" : "com.oracle.graal.graph", 592 "checkstyle" : "com.oracle.graal.graph",
593 "javaCompliance" : _8_9, 593 "javaCompliance" : "1.8",
594 "workingSets" : "Graal,Phases", 594 "workingSets" : "Graal,Phases",
595 }, 595 },
596 596
597 "com.oracle.graal.phases.common" : { 597 "com.oracle.graal.phases.common" : {
598 "subDir" : "graal", 598 "subDir" : "graal",
601 "annotationProcessors" : deps([ 601 "annotationProcessors" : deps([
602 "GRAAL_NODEINFO_PROCESSOR", 602 "GRAAL_NODEINFO_PROCESSOR",
603 "jvmci:JVMCI_OPTIONS_PROCESSOR" 603 "jvmci:JVMCI_OPTIONS_PROCESSOR"
604 ]), 604 ]),
605 "checkstyle" : "com.oracle.graal.graph", 605 "checkstyle" : "com.oracle.graal.graph",
606 "javaCompliance" : _8_9, 606 "javaCompliance" : "1.8",
607 "workingSets" : "Graal,Phases", 607 "workingSets" : "Graal,Phases",
608 }, 608 },
609 609
610 "com.oracle.graal.phases.common.test" : { 610 "com.oracle.graal.phases.common.test" : {
611 "subDir" : "graal", 611 "subDir" : "graal",
614 "com.oracle.graal.api.test", 614 "com.oracle.graal.api.test",
615 "com.oracle.graal.runtime", 615 "com.oracle.graal.runtime",
616 "mx:JUNIT", 616 "mx:JUNIT",
617 ], 617 ],
618 "checkstyle" : "com.oracle.graal.graph", 618 "checkstyle" : "com.oracle.graal.graph",
619 "javaCompliance" : _8_9, 619 "javaCompliance" : "1.8",
620 "workingSets" : "Graal,Test", 620 "workingSets" : "Graal,Test",
621 }, 621 },
622 622
623 "com.oracle.graal.virtual" : { 623 "com.oracle.graal.virtual" : {
624 "subDir" : "graal", 624 "subDir" : "graal",
627 "annotationProcessors" : deps([ 627 "annotationProcessors" : deps([
628 "jvmci:JVMCI_OPTIONS_PROCESSOR", 628 "jvmci:JVMCI_OPTIONS_PROCESSOR",
629 "GRAAL_NODEINFO_PROCESSOR" 629 "GRAAL_NODEINFO_PROCESSOR"
630 ]), 630 ]),
631 "checkstyle" : "com.oracle.graal.graph", 631 "checkstyle" : "com.oracle.graal.graph",
632 "javaCompliance" : _8_9, 632 "javaCompliance" : "1.8",
633 "workingSets" : "Graal,Phases", 633 "workingSets" : "Graal,Phases",
634 }, 634 },
635 635
636 "com.oracle.graal.virtual.bench" : { 636 "com.oracle.graal.virtual.bench" : {
637 "subDir" : "graal", 637 "subDir" : "graal",
638 "sourceDirs" : ["src"], 638 "sourceDirs" : ["src"],
639 "dependencies" : ["JMH"], 639 "dependencies" : ["JMH"],
640 "checkstyle" : "com.oracle.graal.graph", 640 "checkstyle" : "com.oracle.graal.graph",
641 "javaCompliance" : _8_9, 641 "javaCompliance" : "1.8",
642 "annotationProcessors" : ["JMH"], 642 "annotationProcessors" : ["JMH"],
643 "workingSets" : "Graal,Bench", 643 "workingSets" : "Graal,Bench",
644 }, 644 },
645 645
646 "com.oracle.graal.microbenchmarks" : { 646 "com.oracle.graal.microbenchmarks" : {
651 "com.oracle.graal.api.test", 651 "com.oracle.graal.api.test",
652 "com.oracle.graal.java", 652 "com.oracle.graal.java",
653 "com.oracle.graal.runtime", 653 "com.oracle.graal.runtime",
654 ], 654 ],
655 "checkstyle" : "com.oracle.graal.graph", 655 "checkstyle" : "com.oracle.graal.graph",
656 "javaCompliance" : _8_9, 656 "javaCompliance" : "1.8",
657 "annotationProcessors" : ["JMH"], 657 "annotationProcessors" : ["JMH"],
658 "workingSets" : "Graal,Bench", 658 "workingSets" : "Graal,Bench",
659 }, 659 },
660 660
661 "com.oracle.graal.loop" : { 661 "com.oracle.graal.loop" : {
662 "subDir" : "graal", 662 "subDir" : "graal",
663 "sourceDirs" : ["src"], 663 "sourceDirs" : ["src"],
664 "dependencies" : ["com.oracle.graal.phases.common"], 664 "dependencies" : ["com.oracle.graal.phases.common"],
665 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]), 665 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
666 "checkstyle" : "com.oracle.graal.graph", 666 "checkstyle" : "com.oracle.graal.graph",
667 "javaCompliance" : _8_9, 667 "javaCompliance" : "1.8",
668 "workingSets" : "Graal,Phases", 668 "workingSets" : "Graal,Phases",
669 }, 669 },
670 670
671 "com.oracle.graal.compiler" : { 671 "com.oracle.graal.compiler" : {
672 "subDir" : "graal", 672 "subDir" : "graal",
674 "dependencies" : [ 674 "dependencies" : [
675 "com.oracle.graal.virtual", 675 "com.oracle.graal.virtual",
676 "com.oracle.graal.loop", 676 "com.oracle.graal.loop",
677 ], 677 ],
678 "checkstyle" : "com.oracle.graal.graph", 678 "checkstyle" : "com.oracle.graal.graph",
679 "javaCompliance" : _8_9, 679 "javaCompliance" : "1.8",
680 "annotationProcessors" : deps([ 680 "annotationProcessors" : deps([
681 "jvmci:JVMCI_SERVICE_PROCESSOR", 681 "jvmci:JVMCI_SERVICE_PROCESSOR",
682 "jvmci:JVMCI_OPTIONS_PROCESSOR", 682 "jvmci:JVMCI_OPTIONS_PROCESSOR",
683 ]), 683 ]),
684 "workingSets" : "Graal", 684 "workingSets" : "Graal",
689 "sourceDirs" : ["src"], 689 "sourceDirs" : ["src"],
690 "dependencies" : [ 690 "dependencies" : [
691 "com.oracle.graal.compiler", 691 "com.oracle.graal.compiler",
692 ], 692 ],
693 "checkstyle" : "com.oracle.graal.graph", 693 "checkstyle" : "com.oracle.graal.graph",
694 "javaCompliance" : _8_9, 694 "javaCompliance" : "1.8",
695 "workingSets" : "Graal,Codegen", 695 "workingSets" : "Graal,Codegen",
696 }, 696 },
697 697
698 "com.oracle.graal.compiler.amd64" : { 698 "com.oracle.graal.compiler.amd64" : {
699 "subDir" : "graal", 699 "subDir" : "graal",
706 "checkstyle" : "com.oracle.graal.graph", 706 "checkstyle" : "com.oracle.graal.graph",
707 "annotationProcessors" : [ 707 "annotationProcessors" : [
708 "GRAAL_NODEINFO_PROCESSOR", 708 "GRAAL_NODEINFO_PROCESSOR",
709 "GRAAL_COMPILER_MATCH_PROCESSOR" 709 "GRAAL_COMPILER_MATCH_PROCESSOR"
710 ], 710 ],
711 "javaCompliance" : _8_9, 711 "javaCompliance" : "1.8",
712 "workingSets" : "Graal,AMD64", 712 "workingSets" : "Graal,AMD64",
713 }, 713 },
714 714
715 "com.oracle.graal.compiler.amd64.test" : { 715 "com.oracle.graal.compiler.amd64.test" : {
716 "subDir" : "graal", 716 "subDir" : "graal",
718 "dependencies" : deps([ 718 "dependencies" : deps([
719 "com.oracle.graal.lir.jtt", 719 "com.oracle.graal.lir.jtt",
720 "jvmci:JVMCI_HOTSPOT" 720 "jvmci:JVMCI_HOTSPOT"
721 ]), 721 ]),
722 "checkstyle" : "com.oracle.graal.graph", 722 "checkstyle" : "com.oracle.graal.graph",
723 "javaCompliance" : _8_9, 723 "javaCompliance" : "1.8",
724 "workingSets" : "Graal,AMD64,Test", 724 "workingSets" : "Graal,AMD64,Test",
725 }, 725 },
726 726
727 "com.oracle.graal.compiler.sparc" : { 727 "com.oracle.graal.compiler.sparc" : {
728 "subDir" : "graal", 728 "subDir" : "graal",
734 "checkstyle" : "com.oracle.graal.graph", 734 "checkstyle" : "com.oracle.graal.graph",
735 "annotationProcessors" : [ 735 "annotationProcessors" : [
736 "GRAAL_NODEINFO_PROCESSOR", 736 "GRAAL_NODEINFO_PROCESSOR",
737 "GRAAL_COMPILER_MATCH_PROCESSOR" 737 "GRAAL_COMPILER_MATCH_PROCESSOR"
738 ], 738 ],
739 "javaCompliance" : _8_9, 739 "javaCompliance" : "1.8",
740 "workingSets" : "Graal,SPARC", 740 "workingSets" : "Graal,SPARC",
741 }, 741 },
742 742
743 "com.oracle.graal.compiler.sparc.test" : { 743 "com.oracle.graal.compiler.sparc.test" : {
744 "subDir" : "graal", 744 "subDir" : "graal",
746 "dependencies" : deps([ 746 "dependencies" : deps([
747 "com.oracle.graal.compiler.test", 747 "com.oracle.graal.compiler.test",
748 "jvmci:JVMCI_HOTSPOT" 748 "jvmci:JVMCI_HOTSPOT"
749 ]), 749 ]),
750 "checkstyle" : "com.oracle.graal.graph", 750 "checkstyle" : "com.oracle.graal.graph",
751 "javaCompliance" : _8_9, 751 "javaCompliance" : "1.8",
752 "workingSets" : "Graal,SPARC,Test", 752 "workingSets" : "Graal,SPARC,Test",
753 }, 753 },
754 754
755 "com.oracle.graal.runtime" : { 755 "com.oracle.graal.runtime" : {
756 "subDir" : "graal", 756 "subDir" : "graal",
757 "sourceDirs" : ["src"], 757 "sourceDirs" : ["src"],
758 "dependencies" : ["com.oracle.graal.compiler"], 758 "dependencies" : ["com.oracle.graal.compiler"],
759 "checkstyle" : "com.oracle.graal.graph", 759 "checkstyle" : "com.oracle.graal.graph",
760 "javaCompliance" : _8_9, 760 "javaCompliance" : "1.8",
761 "workingSets" : "Graal", 761 "workingSets" : "Graal",
762 }, 762 },
763 763
764 "com.oracle.graal.java" : { 764 "com.oracle.graal.java" : {
765 "subDir" : "graal", 765 "subDir" : "graal",
768 "com.oracle.graal.phases", 768 "com.oracle.graal.phases",
769 "com.oracle.graal.graphbuilderconf", 769 "com.oracle.graal.graphbuilderconf",
770 ], 770 ],
771 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]), 771 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
772 "checkstyle" : "com.oracle.graal.graph", 772 "checkstyle" : "com.oracle.graal.graph",
773 "javaCompliance" : _8_9, 773 "javaCompliance" : "1.8",
774 "workingSets" : "Graal,Java", 774 "workingSets" : "Graal,Java",
775 }, 775 },
776 776
777 "com.oracle.graal.graphbuilderconf" : { 777 "com.oracle.graal.graphbuilderconf" : {
778 "subDir" : "graal", 778 "subDir" : "graal",
779 "sourceDirs" : ["src"], 779 "sourceDirs" : ["src"],
780 "dependencies" : [ 780 "dependencies" : [
781 "com.oracle.graal.nodes", 781 "com.oracle.graal.nodes",
782 ], 782 ],
783 "checkstyle" : "com.oracle.graal.graph", 783 "checkstyle" : "com.oracle.graal.graph",
784 "javaCompliance" : _8_9, 784 "javaCompliance" : "1.8",
785 "workingSets" : "Graal,Java", 785 "workingSets" : "Graal,Java",
786 }, 786 },
787 787
788 "com.oracle.graal.compiler.common" : { 788 "com.oracle.graal.compiler.common" : {
789 "subDir" : "graal", 789 "subDir" : "graal",
791 "dependencies" : [ 791 "dependencies" : [
792 "com.oracle.graal.debug", 792 "com.oracle.graal.debug",
793 ], 793 ],
794 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]), 794 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
795 "checkstyle" : "com.oracle.graal.graph", 795 "checkstyle" : "com.oracle.graal.graph",
796 "javaCompliance" : _8_9, 796 "javaCompliance" : "1.8",
797 "workingSets" : "Graal,Java", 797 "workingSets" : "Graal,Java",
798 }, 798 },
799 799
800 "com.oracle.graal.printer" : { 800 "com.oracle.graal.printer" : {
801 "subDir" : "graal", 801 "subDir" : "graal",
808 "annotationProcessors" : deps([ 808 "annotationProcessors" : deps([
809 "jvmci:JVMCI_OPTIONS_PROCESSOR", 809 "jvmci:JVMCI_OPTIONS_PROCESSOR",
810 "jvmci:JVMCI_SERVICE_PROCESSOR" 810 "jvmci:JVMCI_SERVICE_PROCESSOR"
811 ]), 811 ]),
812 "checkstyle" : "com.oracle.graal.graph", 812 "checkstyle" : "com.oracle.graal.graph",
813 "javaCompliance" : _8_9, 813 "javaCompliance" : "1.8",
814 "workingSets" : "Graal,Graph", 814 "workingSets" : "Graal,Graph",
815 }, 815 },
816 816
817 "com.oracle.graal.test" : { 817 "com.oracle.graal.test" : {
818 "subDir" : "graal", 818 "subDir" : "graal",
819 "sourceDirs" : ["src"], 819 "sourceDirs" : ["src"],
820 "dependencies" : [ 820 "dependencies" : [
821 "mx:JUNIT", 821 "mx:JUNIT",
822 ], 822 ],
823 "checkstyle" : "com.oracle.graal.graph", 823 "checkstyle" : "com.oracle.graal.graph",
824 "javaCompliance" : _8_9, 824 "javaCompliance" : "1.8",
825 "workingSets" : "Graal,Test", 825 "workingSets" : "Graal,Test",
826 }, 826 },
827 827
828 "com.oracle.graal.compiler.test" : { 828 "com.oracle.graal.compiler.test" : {
829 "subDir" : "graal", 829 "subDir" : "graal",
836 "com.oracle.graal.graph.test", 836 "com.oracle.graal.graph.test",
837 "JAVA_ALLOCATION_INSTRUMENTER", 837 "JAVA_ALLOCATION_INSTRUMENTER",
838 ], 838 ],
839 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"], 839 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
840 "checkstyle" : "com.oracle.graal.graph", 840 "checkstyle" : "com.oracle.graal.graph",
841 "javaCompliance" : _8_9, 841 "javaCompliance" : "1.8",
842 "workingSets" : "Graal,Test", 842 "workingSets" : "Graal,Test",
843 "jacoco" : "exclude", 843 "jacoco" : "exclude",
844 }, 844 },
845 845
846 "com.oracle.graal.jtt" : { 846 "com.oracle.graal.jtt" : {
848 "sourceDirs" : ["src"], 848 "sourceDirs" : ["src"],
849 "dependencies" : [ 849 "dependencies" : [
850 "com.oracle.graal.compiler.test", 850 "com.oracle.graal.compiler.test",
851 ], 851 ],
852 "checkstyle" : "com.oracle.graal.graph", 852 "checkstyle" : "com.oracle.graal.graph",
853 "javaCompliance" : _8_9, 853 "javaCompliance" : "1.8",
854 "workingSets" : "Graal,Test", 854 "workingSets" : "Graal,Test",
855 "jacoco" : "exclude", 855 "jacoco" : "exclude",
856 "findbugs" : "false", 856 "findbugs" : "false",
857 }, 857 },
858 858
873 "GRAAL_REPLACEMENTS_VERIFIER", 873 "GRAAL_REPLACEMENTS_VERIFIER",
874 "jvmci:JVMCI_OPTIONS_PROCESSOR", 874 "jvmci:JVMCI_OPTIONS_PROCESSOR",
875 "jvmci:JVMCI_SERVICE_PROCESSOR", 875 "jvmci:JVMCI_SERVICE_PROCESSOR",
876 "truffle:TRUFFLE_DSL_PROCESSOR", 876 "truffle:TRUFFLE_DSL_PROCESSOR",
877 ]), 877 ]),
878 "javaCompliance" : _8_9, 878 "javaCompliance" : "1.8",
879 "workingSets" : "Graal,Truffle", 879 "workingSets" : "Graal,Truffle",
880 "jacoco" : "exclude", 880 "jacoco" : "exclude",
881 }, 881 },
882 882
883 "com.oracle.graal.truffle.test" : { 883 "com.oracle.graal.truffle.test" : {
891 "annotationProcessors" : [ 891 "annotationProcessors" : [
892 "GRAAL_NODEINFO_PROCESSOR", 892 "GRAAL_NODEINFO_PROCESSOR",
893 "truffle:TRUFFLE_DSL_PROCESSOR" 893 "truffle:TRUFFLE_DSL_PROCESSOR"
894 ], 894 ],
895 "checkstyle" : "com.oracle.graal.graph", 895 "checkstyle" : "com.oracle.graal.graph",
896 "javaCompliance" : _8_9, 896 "javaCompliance" : "1.8",
897 "workingSets" : "Graal,Truffle,Test", 897 "workingSets" : "Graal,Truffle,Test",
898 "jacoco" : "exclude", 898 "jacoco" : "exclude",
899 }, 899 },
900 900
901 "com.oracle.graal.truffle.hotspot" : { 901 "com.oracle.graal.truffle.hotspot" : {
905 "com.oracle.graal.truffle", 905 "com.oracle.graal.truffle",
906 "com.oracle.graal.hotspot", 906 "com.oracle.graal.hotspot",
907 "com.oracle.nfi", 907 "com.oracle.nfi",
908 ], 908 ],
909 "checkstyle" : "com.oracle.graal.graph", 909 "checkstyle" : "com.oracle.graal.graph",
910 "javaCompliance" : _8_9, 910 "javaCompliance" : "1.8",
911 "annotationProcessors" : deps([ 911 "annotationProcessors" : deps([
912 "jvmci:JVMCI_OPTIONS_PROCESSOR", 912 "jvmci:JVMCI_OPTIONS_PROCESSOR",
913 "jvmci:JVMCI_SERVICE_PROCESSOR" 913 "jvmci:JVMCI_SERVICE_PROCESSOR"
914 ]), 914 ]),
915 "workingSets" : "Graal,Truffle", 915 "workingSets" : "Graal,Truffle",
921 "dependencies" : [ 921 "dependencies" : [
922 "com.oracle.graal.truffle.hotspot", 922 "com.oracle.graal.truffle.hotspot",
923 "com.oracle.graal.hotspot.amd64", 923 "com.oracle.graal.hotspot.amd64",
924 ], 924 ],
925 "checkstyle" : "com.oracle.graal.graph", 925 "checkstyle" : "com.oracle.graal.graph",
926 "javaCompliance" : _8_9, 926 "javaCompliance" : "1.8",
927 "annotationProcessors" : deps([ 927 "annotationProcessors" : deps([
928 "jvmci:JVMCI_SERVICE_PROCESSOR", 928 "jvmci:JVMCI_SERVICE_PROCESSOR",
929 ]), 929 ]),
930 "workingSets" : "Graal,Truffle", 930 "workingSets" : "Graal,Truffle",
931 }, 931 },
936 "dependencies" : [ 936 "dependencies" : [
937 "com.oracle.graal.truffle.hotspot", 937 "com.oracle.graal.truffle.hotspot",
938 "com.oracle.graal.asm.sparc", 938 "com.oracle.graal.asm.sparc",
939 ], 939 ],
940 "checkstyle" : "com.oracle.graal.graph", 940 "checkstyle" : "com.oracle.graal.graph",
941 "javaCompliance" : _8_9, 941 "javaCompliance" : "1.8",
942 "annotationProcessors" : deps(["jvmci:JVMCI_SERVICE_PROCESSOR"]), 942 "annotationProcessors" : deps(["jvmci:JVMCI_SERVICE_PROCESSOR"]),
943 "workingSets" : "Graal,Truffle,SPARC", 943 "workingSets" : "Graal,Truffle,SPARC",
944 }, 944 },
945 945
946 # ------------- Salver ------------- 946 # ------------- Salver -------------
954 "annotationProcessors" : deps([ 954 "annotationProcessors" : deps([
955 "jvmci:JVMCI_OPTIONS_PROCESSOR", 955 "jvmci:JVMCI_OPTIONS_PROCESSOR",
956 "jvmci:JVMCI_SERVICE_PROCESSOR", 956 "jvmci:JVMCI_SERVICE_PROCESSOR",
957 ]), 957 ]),
958 "checkstyle" : "com.oracle.graal.graph", 958 "checkstyle" : "com.oracle.graal.graph",
959 "javaCompliance" : _8_9, 959 "javaCompliance" : "1.8",
960 "workingSets" : "Graal", 960 "workingSets" : "Graal",
961 }, 961 },
962 }, 962 },
963 963
964 "distributions" : { 964 "distributions" : {