annotate mx.graal/suite.py @ 22882:9fed99d7f32d

made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
author Doug Simon <doug.simon@oracle.com>
date Sat, 24 Oct 2015 00:49:18 +0200
parents cc788c1189fc
children 86dacea931a2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
1 import mx
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
2 JDK9 = mx.get_jdk().javaCompliance >= "1.9"
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
3 _8_9 = "1.9" if JDK9 else "1.8"
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
4
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
5 def deps(l):
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
6 """ Filters out dependencies starting with 'jvmci:' if using JDK9. """
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
7 return [d for d in l if not JDK9 or not d.startswith("jvmci:")]
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
8
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
9 def suites(l):
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
10 """ Filters out suites named 'jvmci' if using JDK9. """
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
11 return [s for s in l if not JDK9 or not s.get('name') == "jvmci"]
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
12
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
13 def ap(name):
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
14 return name + "_PROCESSOR" if JDK9 else "jvmci:JVMCI_" + name + "_PROCESSOR"
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
15
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
16 suite = {
22795
8a879f72972c changed mxversion dependency to 5.5.7
Doug Simon <doug.simon@oracle.com>
parents: 22794
diff changeset
17 "mxversion" : "5.5.7",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
18 "name" : "graal",
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
19
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
20 "imports" : {
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
21 "suites": suites([
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
22 {
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
23 "name" : "jvmci",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
24 "optional" : "true",
22869
d0000fb935b7 made inlined method recording unconditional during compilation
Doug Simon <doug.simon@oracle.com>
parents: 22865
diff changeset
25 "version" : "15013021dbfa7c7cce4ff7fdbfabd5e118e0b0f6",
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
26 "urls" : [
22391
1825ca1a694a Fix dependencies urls
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22390
diff changeset
27 {"url" : "http://lafo.ssw.uni-linz.ac.at/hg/graal-jvmci-8", "kind" : "hg"},
22583
4fdc3a17cbf9 use public https urls
Doug Simon <doug.simon@oracle.com>
parents: 22580
diff changeset
28 {"url" : "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind" : "binary"},
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
29 ]
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
30 },
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
31 {
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
32 "name" : "truffle",
22856
bca707b69cd7 Update jvmci/truffle.
Christian Humer <christian.humer@oracle.com>
parents: 22854
diff changeset
33 "version" : "5ee16f4908e565c39fc6d8422fda53c677d350a7",
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
34 "urls" : [
22391
1825ca1a694a Fix dependencies urls
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22390
diff changeset
35 {"url" : "http://lafo.ssw.uni-linz.ac.at/hg/truffle", "kind" : "hg"},
22588
8c984ddcc7c9 Use https urls where available
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22587
diff changeset
36 {"url" : "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind" : "binary"},
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
37 ]
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
38 },
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
39 ])
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
40 },
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
41
22710
55a04976902d made graal suite use GPLv2-CPE license
Doug Simon <doug.simon@oracle.com>
parents: 22708
diff changeset
42 "defaultLicense" : "GPLv2-CPE",
55a04976902d made graal suite use GPLv2-CPE license
Doug Simon <doug.simon@oracle.com>
parents: 22708
diff changeset
43
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
44 "libraries" : {
21568
3b8bbf51d320 Truffle/Debugging: add the Truffle DebugEngine and supporting code, as well as add a crude command-line debugging tool used mainly to test the DebugEngine. Migrate the small tols out of project com.oracle.truffle.api into the new project com.oracle.truffle.tools.
Michael Van De Vanter <michael.van.de.vanter@oracle.com>
parents: 21449
diff changeset
45
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
46 # ------------- Libraries -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
47
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
48 "DACAPO" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
49 "urls" : [
22588
8c984ddcc7c9 Use https urls where available
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22587
diff changeset
50 "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/dacapo-9.12-bach.jar",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
51 "http://softlayer.dl.sourceforge.net/project/dacapobench/9.12-bach/dacapo-9.12-bach.jar",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
52 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
53 "sha1" : "2626a9546df09009f6da0df854e6dc1113ef7dd4",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
54 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
55
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
56 "DACAPO_SCALA" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
57 "urls" : [
22588
8c984ddcc7c9 Use https urls where available
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22587
diff changeset
58 "https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/dacapo-scala-0.1.0-20120216.jar",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
59 "http://repo.scalabench.org/snapshots/org/scalabench/benchmarks/scala-benchmark-suite/0.1.0-SNAPSHOT/scala-benchmark-suite-0.1.0-20120216.103539-3.jar",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
60 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
61 "sha1" : "59b64c974662b5cf9dbd3cf9045d293853dd7a51",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
62 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
63
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
64 "JAVA_ALLOCATION_INSTRUMENTER" : {
22588
8c984ddcc7c9 Use https urls where available
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22587
diff changeset
65 "urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/java-allocation-instrumenter/java-allocation-instrumenter-8f0db117e64e.jar"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
66 "sha1" : "476d9a44cd19d6b55f81571077dfa972a4f8a083",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
67 "bootClassPathAgent" : "true",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
68 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
69
18897
9afee75cee46 mx: add microbench command to run JMH benchmarks
Roland Schatz <roland.schatz@oracle.com>
parents: 18894
diff changeset
70 "JMH" : {
22526
3d31341dede6 mx: update to JMH version 1.10.4.
Josef Eisl <josef.eisl@jku.at>
parents: 22522
diff changeset
71 "sha1" : "be2e08e6776191e9c559a65b7d34e92e86b4fa5c",
22588
8c984ddcc7c9 Use https urls where available
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22587
diff changeset
72 "urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/jmh/jmh-runner-1.10.4.jar"],
18983
43baadc1913a Automatically install Batik for SVG export in IGV
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 18939
diff changeset
73 },
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
74
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
75 "OPTIONS_PROCESSOR" : {
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
76 "sha1" : "66a86a977ae5aaaeb2105b94cbb59e039d0d432d",
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
77 "urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/jvmci-options-processor.jar"],
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
78 },
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
79
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
80 "SERVICE_PROCESSOR" : {
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
81 "sha1" : "341cb1c52b4e6194d9edc7a91ffc4d41d0258d94",
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
82 "urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/jvmci-service-processor.jar"],
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
83 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
84 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
85
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
86 "projects" : {
21674
e0b5d4fcd929 moved HotSpotTargetDescription and [AMD64|SPARC]HotSpotRegisterConfig into JVMCI namespace (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21673
diff changeset
87
21672
476be2a91059 ordered projects in suite.py into JVMCI, NIF, Graal, Truffle and GraalTruffle sections
Doug Simon <doug.simon@oracle.com>
parents: 21664
diff changeset
88 # ------------- NFI -------------
21674
e0b5d4fcd929 moved HotSpotTargetDescription and [AMD64|SPARC]HotSpotRegisterConfig into JVMCI namespace (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21673
diff changeset
89
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
90 "com.oracle.nfi" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
91 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
92 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
93 "checkstyle" : "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
94 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
95 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
96
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
97 "com.oracle.nfi.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
98 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
99 "sourceDirs" : ["test"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
100 "dependencies" : deps([
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
101 "com.oracle.nfi",
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
102 "jvmci:JVMCI_API",
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
103 "mx:JUNIT",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
104 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
105 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
106 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
107 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
108
21672
476be2a91059 ordered projects in suite.py into JVMCI, NIF, Graal, Truffle and GraalTruffle sections
Doug Simon <doug.simon@oracle.com>
parents: 21664
diff changeset
109 # ------------- Graal -------------
21674
e0b5d4fcd929 moved HotSpotTargetDescription and [AMD64|SPARC]HotSpotRegisterConfig into JVMCI namespace (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21673
diff changeset
110
22319
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
111 "com.oracle.graal.debug" : {
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
112 "subDir" : "graal",
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
113 "sourceDirs" : ["src"],
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
114 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
115 "dependencies" : deps([
22319
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
116 "jvmci:JVMCI_API",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
117 ]),
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
118 "annotationProcessors" : [ap("OPTIONS")],
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
119 "javaCompliance" : _8_9,
22319
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
120 "workingSets" : "JVMCI,Debug",
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
121 },
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
122
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
123 "com.oracle.graal.debug.test" : {
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
124 "subDir" : "graal",
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
125 "sourceDirs" : ["src"],
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
126 "dependencies" : [
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
127 "mx:JUNIT",
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
128 "com.oracle.graal.debug",
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
129 ],
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
130 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
131 "javaCompliance" : _8_9,
22319
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
132 "workingSets" : "JVMCI,Debug,Test",
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
133 },
42f424266138 moved ctw command to mx_graal.py and re-added graal.debug project declarations
Doug Simon <doug.simon@oracle.com>
parents: 22318
diff changeset
134
21725
edafbaef3059 unified the DisassemblerProvider service interface to support both the hsdis and HexCodeFile based disassemblers
Doug Simon <doug.simon@oracle.com>
parents: 21724
diff changeset
135 "com.oracle.graal.code" : {
edafbaef3059 unified the DisassemblerProvider service interface to support both the hsdis and HexCodeFile based disassemblers
Doug Simon <doug.simon@oracle.com>
parents: 21724
diff changeset
136 "subDir" : "graal",
edafbaef3059 unified the DisassemblerProvider service interface to support both the hsdis and HexCodeFile based disassemblers
Doug Simon <doug.simon@oracle.com>
parents: 21724
diff changeset
137 "sourceDirs" : ["src"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
138 "dependencies" : deps([
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
139 "jvmci:JVMCI_SERVICE",
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
140 "jvmci:JVMCI_API",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
141 ]),
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
142 "annotationProcessors" : [ap("SERVICE")],
21725
edafbaef3059 unified the DisassemblerProvider service interface to support both the hsdis and HexCodeFile based disassemblers
Doug Simon <doug.simon@oracle.com>
parents: 21724
diff changeset
143 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
144 "javaCompliance" : _8_9,
21725
edafbaef3059 unified the DisassemblerProvider service interface to support both the hsdis and HexCodeFile based disassemblers
Doug Simon <doug.simon@oracle.com>
parents: 21724
diff changeset
145 "workingSets" : "Graal",
edafbaef3059 unified the DisassemblerProvider service interface to support both the hsdis and HexCodeFile based disassemblers
Doug Simon <doug.simon@oracle.com>
parents: 21724
diff changeset
146 },
edafbaef3059 unified the DisassemblerProvider service interface to support both the hsdis and HexCodeFile based disassemblers
Doug Simon <doug.simon@oracle.com>
parents: 21724
diff changeset
147
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
148 "com.oracle.graal.api.collections" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
149 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
150 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
151 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
152 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
153 "workingSets" : "API,Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
154 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
155
19045
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
156 "com.oracle.graal.api.directives" : {
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
157 "subDir" : "graal",
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
158 "sourceDirs" : ["src"],
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
159 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
160 "javaCompliance" : _8_9,
19045
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
161 "workingSets" : "API,Graal",
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
162 },
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
163
19046
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
164 "com.oracle.graal.api.directives.test" : {
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
165 "subDir" : "graal",
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
166 "sourceDirs" : ["src"],
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
167 "checkstyle" : "com.oracle.graal.graph",
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
168 "dependencies" : [
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
169 "com.oracle.graal.compiler.test",
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
170 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
171 "javaCompliance" : _8_9,
19046
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
172 "workingSets" : "API,Graal",
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
173 },
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
174
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
175 "com.oracle.graal.api.runtime" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
176 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
177 "sourceDirs" : ["src"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
178 "dependencies" : deps([
22874
b308931fc253 API to get the GraalRuntime of the JVMCI system compiler.
Roland Schatz <roland.schatz@oracle.com>
parents: 22869
diff changeset
179 "jvmci:JVMCI_API",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
180 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
181 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
182 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
183 "workingSets" : "API,Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
184 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
185
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
186 "com.oracle.graal.api.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
187 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
188 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
189 "dependencies" : [
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
190 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
191 "com.oracle.graal.api.runtime",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
192 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
193 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
194 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
195 "workingSets" : "API,Graal,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
196 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
197
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
198 "com.oracle.graal.api.replacements" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
199 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
200 "sourceDirs" : ["src"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
201 "dependencies" : deps(["jvmci:JVMCI_API"]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
202 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
203 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
204 "workingSets" : "API,Graal,Replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
205 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
206
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
207 "com.oracle.graal.hotspot" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
208 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
209 "sourceDirs" : ["src"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
210 "dependencies" : deps([
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
211 "jvmci:JVMCI_HOTSPOT",
22854
aa5c2df881dd Remove unused class.
Roland Schatz <roland.schatz@oracle.com>
parents: 22853
diff changeset
212 "com.oracle.graal.api.runtime",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
213 "com.oracle.graal.replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
214 "com.oracle.graal.runtime",
21780
3d15183f3c93 Introduce Compiler interface in jvmci. Use it from jvmci.hotspot.CompilationTask
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21770
diff changeset
215 "com.oracle.graal.code",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
216 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
217 "checkstyle" : "com.oracle.graal.graph",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
218 "annotationProcessors" : [
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
219 "GRAAL_NODEINFO_PROCESSOR",
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
220 "GRAAL_COMPILER_MATCH_PROCESSOR",
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
221 "GRAAL_REPLACEMENTS_VERIFIER",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
222 ap("OPTIONS"),
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
223 ap("SERVICE"),
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
224 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
225 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
226 "workingSets" : "Graal,HotSpot",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
227 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
228
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
229 "com.oracle.graal.hotspot.amd64" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
230 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
231 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
232 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
233 "com.oracle.graal.compiler.amd64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
234 "com.oracle.graal.hotspot",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
235 "com.oracle.graal.replacements.amd64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
236 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
237 "checkstyle" : "com.oracle.graal.graph",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
238 "annotationProcessors" : [
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
239 ap("SERVICE"),
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
240 "GRAAL_NODEINFO_PROCESSOR"
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
241 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
242 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
243 "workingSets" : "Graal,HotSpot,AMD64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
244 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
245
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
246 "com.oracle.graal.hotspot.sparc" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
247 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
248 "sourceDirs" : ["src"],
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
249 "dependencies" : [
21708
6df25b1418be moved com.oracle.asm.** to jvmci-util.jar (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21705
diff changeset
250 "com.oracle.graal.hotspot",
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
251 "com.oracle.graal.compiler.sparc",
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
252 "com.oracle.graal.replacements.sparc",
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
253 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
254 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
255 "annotationProcessors" : [ap("SERVICE")],
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
256 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
257 "workingSets" : "Graal,HotSpot,SPARC",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
258 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
259
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
260 "com.oracle.graal.hotspot.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
261 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
262 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
263 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
264 "com.oracle.graal.replacements.test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
265 "com.oracle.graal.hotspot",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
266 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
267 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
268 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
269 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
270 "workingSets" : "Graal,HotSpot,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
271 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
272
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
273 "com.oracle.graal.hotspot.amd64.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
274 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
275 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
276 "dependencies" : [
21720
d915361cc3a1 moved asm, bytecode and asm.test code back to com.oracle.graal name space (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21716
diff changeset
277 "com.oracle.graal.asm.amd64",
18531
cdb9c605051a removed some static accesses to HotSpotGraalRuntime from some tests
Doug Simon <doug.simon@oracle.com>
parents: 18495
diff changeset
278 "com.oracle.graal.hotspot.test",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
279 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
280 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
281 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
282 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
283 "workingSets" : "Graal,HotSpot,AMD64,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
284 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
285
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
286 "com.oracle.graal.nodeinfo" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
287 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
288 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
289 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
290 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
291 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
292 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
293
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
294 "com.oracle.graal.nodeinfo.processor" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
295 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
296 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
297 "checkstyle" : "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
298 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
299 "com.oracle.graal.nodeinfo",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
300 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
301 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
302 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
303 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
304
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
305 "com.oracle.graal.graph" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
306 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
307 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
308 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
309 "com.oracle.graal.nodeinfo",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
310 "com.oracle.graal.compiler.common",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
311 "com.oracle.graal.api.collections",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
312 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
313 "javaCompliance" : _8_9,
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
314 "annotationProcessors" : [
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
315 ap("OPTIONS"),
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
316 "GRAAL_NODEINFO_PROCESSOR"
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
317 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
318 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
319 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
320
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
321 "com.oracle.graal.graph.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
322 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
323 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
324 "checkstyle" : "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
325 "dependencies" : [
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
326 "mx:JUNIT",
22876
cc788c1189fc Remove GraalRuntimeAccess mechanism, and move Graal singleton class to test project.
Roland Schatz <roland.schatz@oracle.com>
parents: 22875
diff changeset
327 "com.oracle.graal.api.test",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
328 "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
329 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
330 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
331 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
332 "workingSets" : "Graal,Graph,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
333 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
334
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
335 "com.oracle.graal.asm" : {
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
336 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
337 "sourceDirs" : ["src"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
338 "dependencies" : deps(["jvmci:JVMCI_API"]),
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
339 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
340 "javaCompliance" : _8_9,
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
341 "workingSets" : "Graal,Assembler",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
342 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
343
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
344 "com.oracle.graal.asm.amd64" : {
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
345 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
346 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
347 "dependencies" : [
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
348 "com.oracle.graal.asm",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
349 ],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
350 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
351 "javaCompliance" : _8_9,
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
352 "workingSets" : "Graal,Assembler,AMD64",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
353 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
354
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
355 "com.oracle.graal.asm.sparc" : {
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
356 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
357 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
358 "dependencies" : [
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
359 "com.oracle.graal.asm",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
360 ],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
361 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
362 "javaCompliance" : _8_9,
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
363 "workingSets" : "Graal,Assembler,SPARC",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
364 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
365
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
366 "com.oracle.graal.bytecode" : {
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
367 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
368 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
369 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
370 "javaCompliance" : _8_9,
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
371 "workingSets" : "Graal,Java",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
372 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
373
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
374 "com.oracle.graal.asm.test" : {
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
375 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
376 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
377 "dependencies" : [
21725
edafbaef3059 unified the DisassemblerProvider service interface to support both the hsdis and HexCodeFile based disassemblers
Doug Simon <doug.simon@oracle.com>
parents: 21724
diff changeset
378 "com.oracle.graal.code",
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
379 "com.oracle.graal.test",
22300
7b4a47fcc4c0 Move most of jdk.internal.jvmci.debug back into com.oracle.graal.debug
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22296
diff changeset
380 "com.oracle.graal.debug",
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
381 ],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
382 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
383 "javaCompliance" : _8_9,
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
384 "workingSets" : "Graal,Assembler,Test",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
385 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
386
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
387 "com.oracle.graal.asm.amd64.test" : {
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
388 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
389 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
390 "dependencies" : [
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
391 "com.oracle.graal.asm.test",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
392 "com.oracle.graal.asm.amd64",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
393 ],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
394 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
395 "javaCompliance" : _8_9,
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
396 "workingSets" : "Graal,Assembler,AMD64,Test",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
397 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
398
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
399 "com.oracle.graal.lir" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
400 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
401 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
402 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
403 "com.oracle.graal.compiler.common",
21720
d915361cc3a1 moved asm, bytecode and asm.test code back to com.oracle.graal name space (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21716
diff changeset
404 "com.oracle.graal.asm",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
405 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
406 "annotationProcessors" : [ap("OPTIONS")],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
407 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
408 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
409 "workingSets" : "Graal,LIR",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
410 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
411
21249
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
412 "com.oracle.graal.lir.jtt" : {
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
413 "subDir" : "graal",
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
414 "sourceDirs" : ["src"],
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
415 "dependencies" : [
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
416 "com.oracle.graal.jtt",
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
417 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
418 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
21249
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
419 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
420 "javaCompliance" : _8_9,
21249
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
421 "workingSets" : "Graal,LIR",
22496
47f46b5ae838 Disable findbugs for jtt projects, since mx is no longer doing that automatically
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22494
diff changeset
422 "findbugs" : "false",
21249
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
423 },
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
424
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
425 "com.oracle.graal.lir.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
426 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
427 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
428 "dependencies" : [
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
429 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
430 "com.oracle.graal.lir",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
431 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
432 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
433 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
434 "workingSets" : "Graal,LIR",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
435 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
436
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
437 "com.oracle.graal.lir.amd64" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
438 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
439 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
440 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
441 "com.oracle.graal.lir",
21720
d915361cc3a1 moved asm, bytecode and asm.test code back to com.oracle.graal name space (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21716
diff changeset
442 "com.oracle.graal.asm.amd64",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
443 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
444 "annotationProcessors" : [ap("OPTIONS")],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
445 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
446 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
447 "workingSets" : "Graal,LIR,AMD64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
448 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
449
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
450 "com.oracle.graal.lir.sparc" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
451 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
452 "sourceDirs" : ["src"],
21708
6df25b1418be moved com.oracle.asm.** to jvmci-util.jar (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21705
diff changeset
453 "dependencies" : [
21720
d915361cc3a1 moved asm, bytecode and asm.test code back to com.oracle.graal name space (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21716
diff changeset
454 "com.oracle.graal.asm.sparc",
21713
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
455 "com.oracle.graal.lir",
21708
6df25b1418be moved com.oracle.asm.** to jvmci-util.jar (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21705
diff changeset
456 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
457 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
458 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
459 "workingSets" : "Graal,LIR,SPARC",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
460 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
461
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
462 "com.oracle.graal.word" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
463 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
464 "sourceDirs" : ["src"],
19803
17cbf6870ca7 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 19504
diff changeset
465 "dependencies" : ["com.oracle.graal.nodes"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
466 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
467 "javaCompliance" : _8_9,
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
468 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
469 "workingSets" : "API,Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
470 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
471
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
472 "com.oracle.graal.replacements" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
473 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
474 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
475 "dependencies" : [
21780
3d15183f3c93 Introduce Compiler interface in jvmci. Use it from jvmci.hotspot.CompilationTask
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21770
diff changeset
476 "com.oracle.graal.api.directives",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
477 "com.oracle.graal.java",
21780
3d15183f3c93 Introduce Compiler interface in jvmci. Use it from jvmci.hotspot.CompilationTask
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21770
diff changeset
478 "com.oracle.graal.loop",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
479 "com.oracle.graal.word",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
480 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
481 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
482 "javaCompliance" : _8_9,
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
483 "annotationProcessors" : [
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
484 ap("OPTIONS"),
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
485 "GRAAL_REPLACEMENTS_VERIFIER",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
486 "GRAAL_NODEINFO_PROCESSOR",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
487 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
488 "workingSets" : "Graal,Replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
489 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
490
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
491 "com.oracle.graal.replacements.amd64" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
492 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
493 "sourceDirs" : ["src"],
18495
fe0db662e982 adds ability for substitution guards to have a constructor with an Architecture argument
Doug Simon <doug.simon@oracle.com>
parents: 18412
diff changeset
494 "dependencies" : [
fe0db662e982 adds ability for substitution guards to have a constructor with an Architecture argument
Doug Simon <doug.simon@oracle.com>
parents: 18412
diff changeset
495 "com.oracle.graal.replacements",
20844
3081a57f95fd converted @MethodSubstitutions for java.lang.Math to MethodSubstitutionPlugins
Doug Simon <doug.simon@oracle.com>
parents: 20835
diff changeset
496 "com.oracle.graal.lir.amd64",
21780
3d15183f3c93 Introduce Compiler interface in jvmci. Use it from jvmci.hotspot.CompilationTask
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21770
diff changeset
497 "com.oracle.graal.compiler",
18495
fe0db662e982 adds ability for substitution guards to have a constructor with an Architecture argument
Doug Simon <doug.simon@oracle.com>
parents: 18412
diff changeset
498 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
499 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
500 "javaCompliance" : _8_9,
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
501 "annotationProcessors" : [
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
502 "GRAAL_NODEINFO_PROCESSOR",
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
503 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
504 "workingSets" : "Graal,Replacements,AMD64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
505 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
506
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
507 "com.oracle.graal.replacements.sparc" : {
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
508 "subDir" : "graal",
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
509 "sourceDirs" : ["src"],
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
510 "dependencies" : [
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
511 "com.oracle.graal.replacements",
21780
3d15183f3c93 Introduce Compiler interface in jvmci. Use it from jvmci.hotspot.CompilationTask
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21770
diff changeset
512 "com.oracle.graal.compiler",
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
513 ],
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
514 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
515 "javaCompliance" : _8_9,
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
516 "workingSets" : "Graal,Replacements,SPARC",
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
517 },
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
518
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
519 "com.oracle.graal.replacements.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
520 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
521 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
522 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
523 "com.oracle.graal.compiler.test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
524 "com.oracle.graal.replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
525 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
526 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
527 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
528 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
529 "workingSets" : "Graal,Replacements,Test",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
530 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
531 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
532
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
533 "com.oracle.graal.replacements.verifier" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
534 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
535 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
536 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
537 "com.oracle.graal.api.replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
538 "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
539 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
540 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
541 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
542 "workingSets" : "Graal,Replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
543 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
544
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
545 "com.oracle.graal.nodes" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
546 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
547 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
548 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
549 "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
550 "com.oracle.graal.api.replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
551 "com.oracle.graal.lir",
21720
d915361cc3a1 moved asm, bytecode and asm.test code back to com.oracle.graal name space (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21716
diff changeset
552 "com.oracle.graal.bytecode",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
553 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
554 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
555 "javaCompliance" : _8_9,
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
556 "annotationProcessors" : [
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
557 "GRAAL_NODEINFO_PROCESSOR",
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
558 "GRAAL_REPLACEMENTS_VERIFIER",
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
559 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
560 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
561 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
562
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
563 "com.oracle.graal.nodes.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
564 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
565 "sourceDirs" : ["src"],
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
566 "dependencies" : ["com.oracle.graal.compiler.test"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
567 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
568 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
569 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
570 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
571
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
572 "com.oracle.graal.phases" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
573 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
574 "sourceDirs" : ["src"],
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
575 "dependencies" : ["com.oracle.graal.nodes"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
576 "annotationProcessors" : [ap("OPTIONS")],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
577 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
578 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
579 "workingSets" : "Graal,Phases",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
580 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
581
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
582 "com.oracle.graal.phases.common" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
583 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
584 "sourceDirs" : ["src"],
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
585 "dependencies" : ["com.oracle.graal.phases"],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
586 "annotationProcessors" : [
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
587 "GRAAL_NODEINFO_PROCESSOR",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
588 ap("OPTIONS")
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
589 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
590 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
591 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
592 "workingSets" : "Graal,Phases",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
593 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
594
18726
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
595 "com.oracle.graal.phases.common.test" : {
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
596 "subDir" : "graal",
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
597 "sourceDirs" : ["src"],
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
598 "dependencies" : [
22876
cc788c1189fc Remove GraalRuntimeAccess mechanism, and move Graal singleton class to test project.
Roland Schatz <roland.schatz@oracle.com>
parents: 22875
diff changeset
599 "com.oracle.graal.api.test",
18726
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
600 "com.oracle.graal.runtime",
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
601 "mx:JUNIT",
18726
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
602 ],
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
603 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
604 "javaCompliance" : _8_9,
18726
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
605 "workingSets" : "Graal,Test",
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
606 },
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
607
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
608 "com.oracle.graal.virtual" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
609 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
610 "sourceDirs" : ["src"],
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
611 "dependencies" : ["com.oracle.graal.phases.common"],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
612 "annotationProcessors" : [
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
613 ap("OPTIONS"),
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
614 "GRAAL_NODEINFO_PROCESSOR"
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
615 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
616 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
617 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
618 "workingSets" : "Graal,Phases",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
619 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
620
18898
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
621 "com.oracle.graal.virtual.bench" : {
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
622 "subDir" : "graal",
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
623 "sourceDirs" : ["src"],
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
624 "dependencies" : ["JMH"],
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
625 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
626 "javaCompliance" : _8_9,
22179
bc09d5ed9a30 removed unnecessary library definition; made use of JMH as an annotation processor explicit
Doug Simon <doug.simon@oracle.com>
parents: 22178
diff changeset
627 "annotationProcessors" : ["JMH"],
18898
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
628 "workingSets" : "Graal,Bench",
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
629 },
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
630
22610
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
631 "com.oracle.graal.microbenchmarks" : {
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
632 "subDir" : "graal",
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
633 "sourceDirs" : ["src"],
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
634 "dependencies" : [
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
635 "JMH",
22876
cc788c1189fc Remove GraalRuntimeAccess mechanism, and move Graal singleton class to test project.
Roland Schatz <roland.schatz@oracle.com>
parents: 22875
diff changeset
636 "com.oracle.graal.api.test",
22610
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
637 "com.oracle.graal.java",
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
638 "com.oracle.graal.runtime",
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
639 ],
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
640 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
641 "javaCompliance" : _8_9,
22610
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
642 "annotationProcessors" : ["JMH"],
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
643 "workingSets" : "Graal,Bench",
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
644 },
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
645
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
646 "com.oracle.graal.loop" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
647 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
648 "sourceDirs" : ["src"],
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
649 "dependencies" : ["com.oracle.graal.phases.common"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
650 "annotationProcessors" : [ap("OPTIONS")],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
651 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
652 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
653 "workingSets" : "Graal,Phases",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
654 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
655
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
656 "com.oracle.graal.compiler" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
657 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
658 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
659 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
660 "com.oracle.graal.virtual",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
661 "com.oracle.graal.loop",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
662 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
663 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
664 "javaCompliance" : _8_9,
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
665 "annotationProcessors" : [
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
666 ap("SERVICE"),
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
667 ap("OPTIONS"),
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
668 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
669 "workingSets" : "Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
670 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
671
21097
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
672 "com.oracle.graal.compiler.match.processor" : {
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
673 "subDir" : "graal",
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
674 "sourceDirs" : ["src"],
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
675 "dependencies" : [
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
676 "com.oracle.graal.compiler",
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
677 ],
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
678 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
679 "javaCompliance" : _8_9,
21097
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
680 "workingSets" : "Graal,Codegen",
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
681 },
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
682
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
683 "com.oracle.graal.compiler.amd64" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
684 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
685 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
686 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
687 "com.oracle.graal.compiler",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
688 "com.oracle.graal.lir.amd64",
22048
a566bda0fb86 AMD64: add custom AMD64SuitesProvider.
Josef Eisl <josef.eisl@jku.at>
parents: 22044
diff changeset
689 "com.oracle.graal.java",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
690 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
691 "checkstyle" : "com.oracle.graal.graph",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
692 "annotationProcessors" : [
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
693 "GRAAL_NODEINFO_PROCESSOR",
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
694 "GRAAL_COMPILER_MATCH_PROCESSOR"
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
695 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
696 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
697 "workingSets" : "Graal,AMD64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
698 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
699
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
700 "com.oracle.graal.compiler.amd64.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
701 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
702 "sourceDirs" : ["src"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
703 "dependencies" : deps([
21449
006d8ddb7ef9 Move ConstantStackMoveTest and StackStoreTest to amd64 specific project.
Josef Eisl <josef.eisl@jku.at>
parents: 21420
diff changeset
704 "com.oracle.graal.lir.jtt",
22183
2fa87eb4ed95 fixed canonicalization
Doug Simon <doug.simon@oracle.com>
parents: 22182
diff changeset
705 "jvmci:JVMCI_HOTSPOT"
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
706 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
707 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
708 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
709 "workingSets" : "Graal,AMD64,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
710 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
711
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
712 "com.oracle.graal.compiler.sparc" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
713 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
714 "sourceDirs" : ["src"],
21713
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
715 "dependencies" : [
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
716 "com.oracle.graal.compiler",
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
717 "com.oracle.graal.lir.sparc"
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
718 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
719 "checkstyle" : "com.oracle.graal.graph",
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
720 "annotationProcessors" : [
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
721 "GRAAL_NODEINFO_PROCESSOR",
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
722 "GRAAL_COMPILER_MATCH_PROCESSOR"
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
723 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
724 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
725 "workingSets" : "Graal,SPARC",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
726 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
727
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
728 "com.oracle.graal.compiler.sparc.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
729 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
730 "sourceDirs" : ["src"],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
731 "dependencies" : deps([
18246
58bbb14d5f49 Fix SPARCAllocatorTest junit assumption.
Josef Eisl <josef.eisl@jku.at>
parents: 18245
diff changeset
732 "com.oracle.graal.compiler.test",
22183
2fa87eb4ed95 fixed canonicalization
Doug Simon <doug.simon@oracle.com>
parents: 22182
diff changeset
733 "jvmci:JVMCI_HOTSPOT"
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
734 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
735 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
736 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
737 "workingSets" : "Graal,SPARC,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
738 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
739
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
740 "com.oracle.graal.runtime" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
741 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
742 "sourceDirs" : ["src"],
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
743 "dependencies" : ["com.oracle.graal.compiler"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
744 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
745 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
746 "workingSets" : "Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
747 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
748
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
749 "com.oracle.graal.java" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
750 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
751 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
752 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
753 "com.oracle.graal.phases",
21780
3d15183f3c93 Introduce Compiler interface in jvmci. Use it from jvmci.hotspot.CompilationTask
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21770
diff changeset
754 "com.oracle.graal.graphbuilderconf",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
755 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
756 "annotationProcessors" : [ap("OPTIONS")],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
757 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
758 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
759 "workingSets" : "Graal,Java",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
760 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
761
19820
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
762 "com.oracle.graal.graphbuilderconf" : {
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
763 "subDir" : "graal",
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
764 "sourceDirs" : ["src"],
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
765 "dependencies" : [
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
766 "com.oracle.graal.nodes",
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
767 ],
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
768 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
769 "javaCompliance" : _8_9,
19820
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
770 "workingSets" : "Graal,Java",
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
771 },
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
772
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
773 "com.oracle.graal.compiler.common" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
774 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
775 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
776 "dependencies" : [
22350
06a9e6737dcf Drop initial version of the trace based register allocator.
Josef Eisl <josef.eisl@jku.at>
parents: 22300
diff changeset
777 "com.oracle.graal.debug",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
778 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
779 "annotationProcessors" : [ap("OPTIONS")],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
780 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
781 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
782 "workingSets" : "Graal,Java",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
783 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
784
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
785 "com.oracle.graal.printer" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
786 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
787 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
788 "dependencies" : [
21725
edafbaef3059 unified the DisassemblerProvider service interface to support both the hsdis and HexCodeFile based disassemblers
Doug Simon <doug.simon@oracle.com>
parents: 21724
diff changeset
789 "com.oracle.graal.code",
18939
732748092bae Temporarily remove java.decompiler project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18929
diff changeset
790 "com.oracle.graal.java",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
791 "com.oracle.graal.compiler",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
792 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
793 "annotationProcessors" : [
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
794 ap("OPTIONS"),
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
795 ap("SERVICE")
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
796 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
797 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
798 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
799 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
800 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
801
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
802 "com.oracle.graal.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
803 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
804 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
805 "dependencies" : [
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
806 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
807 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
808 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
809 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
810 "workingSets" : "Graal,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
811 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
812
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
813 "com.oracle.graal.compiler.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
814 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
815 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
816 "dependencies" : [
21780
3d15183f3c93 Introduce Compiler interface in jvmci. Use it from jvmci.hotspot.CompilationTask
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21770
diff changeset
817 "com.oracle.graal.api.directives",
3d15183f3c93 Introduce Compiler interface in jvmci. Use it from jvmci.hotspot.CompilationTask
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21770
diff changeset
818 "com.oracle.graal.java",
21720
d915361cc3a1 moved asm, bytecode and asm.test code back to com.oracle.graal name space (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21716
diff changeset
819 "com.oracle.graal.test",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
820 "com.oracle.graal.runtime",
22044
5de4a002d097 Schedule: Allow floating reads to be scheduled after loops
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22040
diff changeset
821 "com.oracle.graal.graph.test",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
822 "JAVA_ALLOCATION_INSTRUMENTER",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
823 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
824 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
825 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
826 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
827 "workingSets" : "Graal,Test",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
828 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
829 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
830
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
831 "com.oracle.graal.jtt" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
832 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
833 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
834 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
835 "com.oracle.graal.compiler.test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
836 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
837 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
838 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
839 "workingSets" : "Graal,Test",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
840 "jacoco" : "exclude",
22496
47f46b5ae838 Disable findbugs for jtt projects, since mx is no longer doing that automatically
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22494
diff changeset
841 "findbugs" : "false",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
842 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
843
21983
964677af4a3c Removing com.oracle.truffle.* modules as they have been moved do truffle repository. Modifying suite.py to consume Truffle as a binary.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21894
diff changeset
844 # ------------- GraalTruffle -------------
21674
e0b5d4fcd929 moved HotSpotTargetDescription and [AMD64|SPARC]HotSpotRegisterConfig into JVMCI namespace (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21673
diff changeset
845
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
846 "com.oracle.graal.truffle" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
847 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
848 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
849 "dependencies" : [
22420
13ea85f171d3 Updating to latest version of Truffle API
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22407
diff changeset
850 "truffle:TRUFFLE_API",
22854
aa5c2df881dd Remove unused class.
Roland Schatz <roland.schatz@oracle.com>
parents: 22853
diff changeset
851 "com.oracle.graal.api.runtime",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
852 "com.oracle.graal.runtime",
20182
c5ae0424f822 Move special arithemtic nodes from graal.truffle to graal and use them to inrinsify some of the JDK8 Math methods
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 20120
diff changeset
853 "com.oracle.graal.replacements",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
854 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
855 "checkstyle" : "com.oracle.graal.graph",
22180
597ef5b2d9e8 made annotation processors explicit since they are no longer inherited
Doug Simon <doug.simon@oracle.com>
parents: 22179
diff changeset
856 "annotationProcessors" : [
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
857 "GRAAL_NODEINFO_PROCESSOR",
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
858 "GRAAL_REPLACEMENTS_VERIFIER",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
859 ap("OPTIONS"),
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
860 ap("SERVICE"),
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
861 "truffle:TRUFFLE_DSL_PROCESSOR",
22180
597ef5b2d9e8 made annotation processors explicit since they are no longer inherited
Doug Simon <doug.simon@oracle.com>
parents: 22179
diff changeset
862 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
863 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
864 "workingSets" : "Graal,Truffle",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
865 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
866 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
867
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
868 "com.oracle.graal.truffle.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
869 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
870 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
871 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
872 "com.oracle.graal.truffle",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
873 "com.oracle.graal.compiler.test",
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
874 "truffle:TRUFFLE_SL",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
875 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
876 "annotationProcessors" : [
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
877 "GRAAL_NODEINFO_PROCESSOR",
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
878 "truffle:TRUFFLE_DSL_PROCESSOR"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
879 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
880 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
881 "javaCompliance" : _8_9,
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
882 "workingSets" : "Graal,Truffle,Test",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
883 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
884 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
885
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
886 "com.oracle.graal.truffle.hotspot" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
887 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
888 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
889 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
890 "com.oracle.graal.truffle",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
891 "com.oracle.graal.hotspot",
20872
b1700db197c7 Move com.oracle.nfi implementation to graal.truffle.hotspot since it implements an interface that does not live in the graal class-loader
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 20182
diff changeset
892 "com.oracle.nfi",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
893 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
894 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
895 "javaCompliance" : _8_9,
22875
fcd9e8f41e2b Avoid using Graal singleton in Truffle initialization.
Roland Schatz <roland.schatz@oracle.com>
parents: 22874
diff changeset
896 "annotationProcessors" : [
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
897 ap("OPTIONS"),
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
898 ap("SERVICE")
22875
fcd9e8f41e2b Avoid using Graal singleton in Truffle initialization.
Roland Schatz <roland.schatz@oracle.com>
parents: 22874
diff changeset
899 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
900 "workingSets" : "Graal,Truffle",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
901 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
902
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
903 "com.oracle.graal.truffle.hotspot.amd64" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
904 "subDir" : "graal",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
905 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
906 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
907 "com.oracle.graal.truffle.hotspot",
20872
b1700db197c7 Move com.oracle.nfi implementation to graal.truffle.hotspot since it implements an interface that does not live in the graal class-loader
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 20182
diff changeset
908 "com.oracle.graal.hotspot.amd64",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
909 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
910 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
911 "javaCompliance" : _8_9,
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
912 "annotationProcessors" : [
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
913 ap("SERVICE"),
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
914 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
915 "workingSets" : "Graal,Truffle",
18744
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
916 },
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
917
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
918 "com.oracle.graal.truffle.hotspot.sparc" : {
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
919 "subDir" : "graal",
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
920 "sourceDirs" : ["src"],
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
921 "dependencies" : [
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
922 "com.oracle.graal.truffle.hotspot",
21720
d915361cc3a1 moved asm, bytecode and asm.test code back to com.oracle.graal name space (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21716
diff changeset
923 "com.oracle.graal.asm.sparc",
18744
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
924 ],
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
925 "checkstyle" : "com.oracle.graal.graph",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
926 "javaCompliance" : _8_9,
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
927 "annotationProcessors" : [ap("SERVICE")],
18744
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
928 "workingSets" : "Graal,Truffle,SPARC",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
929 }
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
930 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
931
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
932 "distributions" : {
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
933
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
934 # ------------- Distributions -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
935
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
936 "GRAAL_NODEINFO" : {
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
937 "subDir" : "graal",
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
938 "dependencies" : [
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
939 "com.oracle.graal.nodeinfo",
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
940 ],
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
941 },
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
942
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
943 "GRAAL_API" : {
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
944 "subDir" : "graal",
21631
77acf6ba2fc0 Move EventProvider to jvmci.hotspot, make it a JVMCI Service
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21628
diff changeset
945 "dependencies" : [
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
946 "com.oracle.graal.api.replacements",
22854
aa5c2df881dd Remove unused class.
Roland Schatz <roland.schatz@oracle.com>
parents: 22853
diff changeset
947 "com.oracle.graal.api.runtime",
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
948 "com.oracle.graal.graph",
21631
77acf6ba2fc0 Move EventProvider to jvmci.hotspot, make it a JVMCI Service
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21628
diff changeset
949 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
950 "distDependencies" : deps([
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
951 "jvmci:JVMCI_API",
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
952 "GRAAL_NODEINFO",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
953 ]),
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
954 },
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
955
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
956 "GRAAL_COMPILER" : {
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
957 "subDir" : "graal",
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
958 "dependencies" : [
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
959 "com.oracle.graal.compiler",
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
960 ],
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
961 "distDependencies" : [
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
962 "GRAAL_API",
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
963 ],
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
964 },
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
965
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
966 "GRAAL" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
967 "subDir" : "graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
968 "dependencies" : [
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
969 "com.oracle.graal.replacements",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
970 "com.oracle.graal.runtime",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
971 "com.oracle.graal.code",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
972 "com.oracle.graal.printer",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
973 "com.oracle.graal.compiler.amd64",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
974 "com.oracle.graal.replacements.amd64",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
975 "com.oracle.graal.compiler.sparc",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
976 "com.oracle.graal.replacements.sparc",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
977 ],
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
978 "distDependencies" : [
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
979 "GRAAL_API",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
980 "GRAAL_COMPILER",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
981 ],
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
982 },
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
983
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
984 "GRAAL_HOTSPOT" : {
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
985 "subDir" : "graal",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
986 "dependencies" : [
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
987 "com.oracle.graal.hotspot.amd64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
988 "com.oracle.graal.hotspot.sparc",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
989 "com.oracle.graal.hotspot",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
990 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
991 "distDependencies" : deps([
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
992 "jvmci:JVMCI_HOTSPOT",
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
993 "GRAAL_COMPILER",
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
994 "GRAAL",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
995 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
996 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
997
22278
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
998 "GRAAL_TEST" : {
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
999 "subDir" : "graal",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1000 "dependencies" : [
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1001 "com.oracle.graal.api.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1002 "com.oracle.graal.api.directives.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1003 "com.oracle.graal.asm.amd64.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1004 "com.oracle.graal.compiler.amd64.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1005 "com.oracle.graal.compiler.sparc.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1006 "com.oracle.graal.hotspot.amd64.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1007 "com.oracle.graal.jtt",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1008 "com.oracle.graal.lir.jtt",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1009 "com.oracle.graal.lir.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1010 "com.oracle.graal.nodes.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1011 "com.oracle.graal.phases.common.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1012 ],
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
1013 "distDependencies" : deps([
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1014 "GRAAL_HOTSPOT",
22287
b31567b406ca Modify distDependencies
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22286
diff changeset
1015 "jvmci:JVMCI_HOTSPOT",
22882
9fed99d7f32d made Graal work on a JDK9 image without needing the jvmci mx suite or extensions
Doug Simon <doug.simon@oracle.com>
parents: 22876
diff changeset
1016 ]),
22711
3ffc0d85d79a exclude JAVA_ALLOCATION_INSTRUMENTER from GRAAL_TEST due to license conflict
Doug Simon <doug.simon@oracle.com>
parents: 22710
diff changeset
1017 "exclude" : [
3ffc0d85d79a exclude JAVA_ALLOCATION_INSTRUMENTER from GRAAL_TEST due to license conflict
Doug Simon <doug.simon@oracle.com>
parents: 22710
diff changeset
1018 "mx:JUNIT",
3ffc0d85d79a exclude JAVA_ALLOCATION_INSTRUMENTER from GRAAL_TEST due to license conflict
Doug Simon <doug.simon@oracle.com>
parents: 22710
diff changeset
1019 "JAVA_ALLOCATION_INSTRUMENTER"
3ffc0d85d79a exclude JAVA_ALLOCATION_INSTRUMENTER from GRAAL_TEST due to license conflict
Doug Simon <doug.simon@oracle.com>
parents: 22710
diff changeset
1020 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1021 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1022
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1023 "GRAAL_TRUFFLE" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1024 "subDir" : "graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1025 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1026 "com.oracle.graal.truffle",
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1027 ],
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1028 "distDependencies" : [
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1029 "GRAAL",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1030 "truffle:TRUFFLE_API",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1031 ],
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1032 },
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1033
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1034 "GRAAL_TRUFFLE_HOTSPOT" : {
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1035 "subDir" : "graal",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1036 "dependencies" : [
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1037 "com.oracle.graal.truffle.hotspot.amd64",
18744
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
1038 "com.oracle.graal.truffle.hotspot.sparc"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1039 ],
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
1040 "distDependencies" : [
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1041 "GRAAL_HOTSPOT",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1042 "GRAAL_TRUFFLE",
22420
13ea85f171d3 Updating to latest version of Truffle API
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22407
diff changeset
1043 "truffle:TRUFFLE_API",
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
1044 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1045 },
22138
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1046
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1047 "GRAAL_TRUFFLE_TEST" : {
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1048 "subDir" : "graal",
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1049 "dependencies" : [
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1050 "com.oracle.graal.truffle.test"
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1051 ],
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1052 "distDependencies" : [
22278
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1053 "GRAAL_TEST",
22178
9737e6f88d58 removed mx_graal_makefile.py from 'graal' suite
Doug Simon <doug.simon@oracle.com>
parents: 22177
diff changeset
1054 "GRAAL_TRUFFLE",
9737e6f88d58 removed mx_graal_makefile.py from 'graal' suite
Doug Simon <doug.simon@oracle.com>
parents: 22177
diff changeset
1055 "truffle:TRUFFLE_SL",
22138
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1056 ],
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1057 },
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1058
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1059 "GRAAL_NODEINFO_PROCESSOR" : {
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1060 "subDir" : "graal",
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1061 "dependencies" : ["com.oracle.graal.nodeinfo.processor"],
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1062 "distDependencies" : [
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1063 "GRAAL_NODEINFO",
22138
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1064 ],
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1065 },
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1066
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1067 "GRAAL_REPLACEMENTS_VERIFIER" : {
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1068 "subDir" : "graal",
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1069 "dependencies" : ["com.oracle.graal.replacements.verifier"],
22287
b31567b406ca Modify distDependencies
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22286
diff changeset
1070 "distDependencies" : [
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1071 "GRAAL_API",
22197
6cd6d5e670ad exclude truffle jars from GRAAL_TRUFFLE_TEST distribution
Andreas Woess <andreas.woess@oracle.com>
parents: 22193
diff changeset
1072 ],
22138
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1073 },
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1074
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1075 "GRAAL_COMPILER_MATCH_PROCESSOR" : {
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1076 "subDir" : "graal",
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1077 "dependencies" : ["com.oracle.graal.compiler.match.processor"],
22287
b31567b406ca Modify distDependencies
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22286
diff changeset
1078 "distDependencies" : [
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1079 "GRAAL_COMPILER",
22287
b31567b406ca Modify distDependencies
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22286
diff changeset
1080 ]
22181
275fb0d9c87c annotation processor dependencies must be Distributions or Libraries; inter-suite references must be qualified with suite prefix
Doug Simon <doug.simon@oracle.com>
parents: 22180
diff changeset
1081 },
17163
30dda118ef3d mx: added support for extending distributions; require list literals for list attributes in projects.py
Doug Simon <doug.simon@oracle.com>
parents: 17160
diff changeset
1082 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1083 }