annotate mx.graal/suite.py @ 22922:42b2c81a99e1

Update jvmci import version
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Mon, 02 Nov 2015 11:36:45 +0100
parents f84799cc5e03
children d7df89bcc764
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
22888
9021de742f55 specify tag="default" in call to mx.get_jdk()
Doug Simon <doug.simon@oracle.com>
parents: 22886
diff changeset
2 JDK9 = mx.get_jdk(tag='default').javaCompliance >= "1.9"
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
3
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 def deps(l):
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
5 """
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
6 If using JDK9, replaces dependencies starting with 'jvmci:' with 'JVMCI'.
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
7 Otherwise, excludes "JVMCI".
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
8 """
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
9 if JDK9:
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
10 res = []
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
11 for e in l:
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
12 if e.startswith("jvmci:"):
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
13 if not "JVMCI" in res:
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
14 res.append("JVMCI")
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
15 else:
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
16 res.append(e)
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
17 return res
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
18 else:
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
19 return [d for d in l if d != "JVMCI"]
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
20
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
21 def libs(d):
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
22 """
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
23 If not using JDK9, excludes "JVMCI" library.
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
24 """
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
25 if not JDK9:
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
26 del d["JVMCI"]
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
27 return d
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
28
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
29 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
30 """ 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
31 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
32
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
33 suite = {
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
34 "mxversion" : "5.5.14",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
35 "name" : "graal",
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
36
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
37 "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
38 "suites": suites([
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
39 {
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
40 "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
41 "optional" : "true",
22922
42b2c81a99e1 Update jvmci import version
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 22918
diff changeset
42 "version" : "3c0753fbb5925807e933fbd1816713542b6c3b28",
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
43 "urls" : [
22391
1825ca1a694a Fix dependencies urls
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22390
diff changeset
44 {"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
45 {"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
46 ]
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
47 },
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
48 {
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
49 "name" : "truffle",
22896
afe502521189 update truffle import
Andreas Woess <andreas.woess@oracle.com>
parents: 22893
diff changeset
50 "version" : "fdc687bad5d4abafb8bbb6ab7a0fe00908a00c19",
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
51 "urls" : [
22391
1825ca1a694a Fix dependencies urls
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22390
diff changeset
52 {"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
53 {"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
54 ]
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
55 },
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
56 ])
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
57 },
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
58
22710
55a04976902d made graal suite use GPLv2-CPE license
Doug Simon <doug.simon@oracle.com>
parents: 22708
diff changeset
59 "defaultLicense" : "GPLv2-CPE",
55a04976902d made graal suite use GPLv2-CPE license
Doug Simon <doug.simon@oracle.com>
parents: 22708
diff changeset
60
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
61 "libraries" : libs({
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
62
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
63 # ------------- Libraries -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
64
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
65 "DACAPO" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
66 "urls" : [
22588
8c984ddcc7c9 Use https urls where available
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22587
diff changeset
67 "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
68 "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
69 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
70 "sha1" : "2626a9546df09009f6da0df854e6dc1113ef7dd4",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
71 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
72
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
73 "DACAPO_SCALA" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
74 "urls" : [
22588
8c984ddcc7c9 Use https urls where available
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22587
diff changeset
75 "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
76 "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
77 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
78 "sha1" : "59b64c974662b5cf9dbd3cf9045d293853dd7a51",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
79 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
80
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
81 "JAVA_ALLOCATION_INSTRUMENTER" : {
22588
8c984ddcc7c9 Use https urls where available
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22587
diff changeset
82 "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
83 "sha1" : "476d9a44cd19d6b55f81571077dfa972a4f8a083",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
84 "bootClassPathAgent" : "true",
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
18897
9afee75cee46 mx: add microbench command to run JMH benchmarks
Roland Schatz <roland.schatz@oracle.com>
parents: 18894
diff changeset
87 "JMH" : {
22526
3d31341dede6 mx: update to JMH version 1.10.4.
Josef Eisl <josef.eisl@jku.at>
parents: 22522
diff changeset
88 "sha1" : "be2e08e6776191e9c559a65b7d34e92e86b4fa5c",
22588
8c984ddcc7c9 Use https urls where available
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22587
diff changeset
89 "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
90 },
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
91
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
92 # Library that allows Graal to compile against JVMCI without the jvmci suite.
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
93 # This library is not added to the boot class path at run time and so code
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
94 # compiled against this library must be run on (JVMCI enabled) JDK9.
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
95 "JVMCI" : {
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
96 "sha1" : "f4f0d6cfa751fa644163008810d5123c4c298104",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
97 "urls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/jvmci-b0e383e27552.jar"],
22918
f84799cc5e03 added sources for JVMCI library
Doug Simon <doug.simon@oracle.com>
parents: 22917
diff changeset
98 "sourceSha1" : "9781af80d9f43b4f1a5b17802ea8d0c8c50d563c",
f84799cc5e03 added sources for JVMCI library
Doug Simon <doug.simon@oracle.com>
parents: 22917
diff changeset
99 "sourceUrls" : ["https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/jvmci-b0e383e27552.src.zip"],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
100 },
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
101 }),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
102
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
103 "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
104
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
105 # ------------- 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
106
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
107 "com.oracle.nfi" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
108 "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
109 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
110 "checkstyle" : "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
111 "javaCompliance" : "1.7",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
112 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
113
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
114 "com.oracle.nfi.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
115 "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
116 "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
117 "dependencies" : deps([
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
118 "com.oracle.nfi",
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
119 "jvmci:JVMCI_API",
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
120 "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
121 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
122 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
123 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
124 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
125
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
126 # ------------- 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
127
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
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 "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
130 "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
131 "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
132 "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
133 "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
134 ]),
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
135 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
136 "javaCompliance" : "1.8",
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
137 "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
138 },
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
139
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
140 "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
141 "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
142 "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
143 "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
144 "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
145 "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
146 ],
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
147 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
148 "javaCompliance" : "1.8",
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
149 "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
150 },
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
151
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
152 "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
153 "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
154 "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
155 "dependencies" : deps([
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
156 "jvmci:JVMCI_SERVICE",
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
157 "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
158 ]),
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
159 "annotationProcessors" : deps(["jvmci:JVMCI_SERVICE_PROCESSOR"]),
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
160 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
161 "javaCompliance" : "1.8",
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
162 "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
163 },
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
164
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
165 "com.oracle.graal.api.collections" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
166 "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
167 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
168 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
169 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
170 "workingSets" : "API,Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
171 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
172
19045
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
173 "com.oracle.graal.api.directives" : {
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
174 "subDir" : "graal",
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
175 "sourceDirs" : ["src"],
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
176 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
177 "javaCompliance" : "1.8",
19045
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
178 "workingSets" : "API,Graal",
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
179 },
862997951c0a Add GraalDirectives API to influence compiler behavior.
Roland Schatz <roland.schatz@oracle.com>
parents: 18983
diff changeset
180
19046
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
181 "com.oracle.graal.api.directives.test" : {
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
182 "subDir" : "graal",
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
183 "sourceDirs" : ["src"],
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
184 "checkstyle" : "com.oracle.graal.graph",
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
185 "dependencies" : [
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
186 "com.oracle.graal.compiler.test",
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
187 ],
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
188 "javaCompliance" : "1.8",
19046
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
189 "workingSets" : "API,Graal",
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
190 },
2358c0e65b9e Unit tests for GraalDirectives API.
Roland Schatz <roland.schatz@oracle.com>
parents: 19045
diff changeset
191
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
192 "com.oracle.graal.api.runtime" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
193 "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
194 "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
195 "dependencies" : deps([
22874
b308931fc253 API to get the GraalRuntime of the JVMCI system compiler.
Roland Schatz <roland.schatz@oracle.com>
parents: 22869
diff changeset
196 "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
197 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
198 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
199 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
200 "workingSets" : "API,Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
201 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
202
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
203 "com.oracle.graal.api.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
204 "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
205 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
206 "dependencies" : [
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
207 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
208 "com.oracle.graal.api.runtime",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
209 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
210 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
211 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
212 "workingSets" : "API,Graal,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
213 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
214
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
215 "com.oracle.graal.api.replacements" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
216 "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
217 "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
218 "dependencies" : deps(["jvmci:JVMCI_API"]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
219 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
220 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
221 "workingSets" : "API,Graal,Replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
222 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
223
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
224 "com.oracle.graal.hotspot" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
225 "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
226 "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
227 "dependencies" : deps([
22139
258eaaa98484 Initial split off from monolithic basic-graal repo
Doug Simon <doug.simon@oracle.com>
parents: 22138
diff changeset
228 "jvmci:JVMCI_HOTSPOT",
22854
aa5c2df881dd Remove unused class.
Roland Schatz <roland.schatz@oracle.com>
parents: 22853
diff changeset
229 "com.oracle.graal.api.runtime",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
230 "com.oracle.graal.replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
231 "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
232 "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
233 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
234 "checkstyle" : "com.oracle.graal.graph",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
235 "annotationProcessors" : deps([
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
236 "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
237 "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
238 "GRAAL_REPLACEMENTS_VERIFIER",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
239 "jvmci:JVMCI_OPTIONS_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
240 "jvmci:JVMCI_SERVICE_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
241 ]),
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
242 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
243 "workingSets" : "Graal,HotSpot",
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.amd64" : {
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"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
249 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
250 "com.oracle.graal.compiler.amd64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
251 "com.oracle.graal.hotspot",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
252 "com.oracle.graal.replacements.amd64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
253 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
254 "checkstyle" : "com.oracle.graal.graph",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
255 "annotationProcessors" : deps([
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
256 "jvmci:JVMCI_SERVICE_PROCESSOR",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
257 "GRAAL_NODEINFO_PROCESSOR"
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
258 ]),
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
259 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
260 "workingSets" : "Graal,HotSpot,AMD64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
261 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
262
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
263 "com.oracle.graal.hotspot.sparc" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
264 "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
265 "sourceDirs" : ["src"],
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
266 "dependencies" : [
21708
6df25b1418be moved com.oracle.asm.** to jvmci-util.jar (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21705
diff changeset
267 "com.oracle.graal.hotspot",
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
268 "com.oracle.graal.compiler.sparc",
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
269 "com.oracle.graal.replacements.sparc",
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
270 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
271 "checkstyle" : "com.oracle.graal.graph",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
272 "annotationProcessors" : deps(["jvmci:JVMCI_SERVICE_PROCESSOR"]),
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
273 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
274 "workingSets" : "Graal,HotSpot,SPARC",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
275 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
276
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
277 "com.oracle.graal.hotspot.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
278 "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
279 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
280 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
281 "com.oracle.graal.replacements.test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
282 "com.oracle.graal.hotspot",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
283 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
284 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
285 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
286 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
287 "workingSets" : "Graal,HotSpot,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
288 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
289
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
290 "com.oracle.graal.hotspot.amd64.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
291 "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
292 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
293 "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
294 "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
295 "com.oracle.graal.hotspot.test",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
296 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
297 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
298 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
299 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
300 "workingSets" : "Graal,HotSpot,AMD64,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
301 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
302
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
303 "com.oracle.graal.nodeinfo" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
304 "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
305 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
306 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
307 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
308 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
309 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
310
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
311 "com.oracle.graal.nodeinfo.processor" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
312 "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
313 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
314 "checkstyle" : "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
315 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
316 "com.oracle.graal.nodeinfo",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
317 ],
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
318 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
319 "workingSets" : "Graal,Graph",
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
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
322 "com.oracle.graal.graph" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
323 "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
324 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
325 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
326 "com.oracle.graal.nodeinfo",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
327 "com.oracle.graal.compiler.common",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
328 "com.oracle.graal.api.collections",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
329 ],
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
330 "javaCompliance" : "1.8",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
331 "annotationProcessors" : deps([
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
332 "jvmci:JVMCI_OPTIONS_PROCESSOR",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
333 "GRAAL_NODEINFO_PROCESSOR"
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
334 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
335 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
336 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
337
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
338 "com.oracle.graal.graph.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
339 "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
340 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
341 "checkstyle" : "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
342 "dependencies" : [
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
343 "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
344 "com.oracle.graal.api.test",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
345 "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
346 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
347 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
348 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
349 "workingSets" : "Graal,Graph,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
350 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
351
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
352 "com.oracle.graal.asm" : {
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
353 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
354 "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
355 "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
356 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
357 "javaCompliance" : "1.8",
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
358 "workingSets" : "Graal,Assembler",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
359 },
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 "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
362 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
363 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
364 "dependencies" : [
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
365 "com.oracle.graal.asm",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
366 ],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
367 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
368 "javaCompliance" : "1.8",
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
369 "workingSets" : "Graal,Assembler,AMD64",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
370 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
371
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
372 "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
373 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
374 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
375 "dependencies" : [
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
376 "com.oracle.graal.asm",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
377 ],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
378 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
379 "javaCompliance" : "1.8",
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
380 "workingSets" : "Graal,Assembler,SPARC",
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
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
383 "com.oracle.graal.bytecode" : {
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
384 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
385 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
386 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
387 "javaCompliance" : "1.8",
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
388 "workingSets" : "Graal,Java",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
389 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
390
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 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
393 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
394 "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
395 "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
396 "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
397 "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
398 ],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
399 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
400 "javaCompliance" : "1.8",
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
401 "workingSets" : "Graal,Assembler,Test",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
402 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
403
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
404 "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
405 "subDir" : "graal",
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
406 "sourceDirs" : ["src"],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
407 "dependencies" : [
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
408 "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
409 "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
410 ],
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
411 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
412 "javaCompliance" : "1.8",
21724
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
413 "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
414 },
941940598b94 moved project definitions from JVMCI section to Graal section
Doug Simon <doug.simon@oracle.com>
parents: 21720
diff changeset
415
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
416 "com.oracle.graal.lir" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
417 "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
418 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
419 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
420 "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
421 "com.oracle.graal.asm",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
422 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
423 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
424 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
425 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
426 "workingSets" : "Graal,LIR",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
427 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
428
21249
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
429 "com.oracle.graal.lir.jtt" : {
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
430 "subDir" : "graal",
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
431 "sourceDirs" : ["src"],
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
432 "dependencies" : [
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
433 "com.oracle.graal.jtt",
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
434 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
435 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
21249
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
436 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
437 "javaCompliance" : "1.8",
21249
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
438 "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
439 "findbugs" : "false",
21249
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
440 },
42653f9ff18b Introduce LIRTest.
Josef Eisl <josef.eisl@jku.at>
parents: 21097
diff changeset
441
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
442 "com.oracle.graal.lir.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
443 "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
444 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
445 "dependencies" : [
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
446 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
447 "com.oracle.graal.lir",
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 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
450 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
451 "workingSets" : "Graal,LIR",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
452 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
453
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
454 "com.oracle.graal.lir.amd64" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
455 "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
456 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
457 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
458 "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
459 "com.oracle.graal.asm.amd64",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
460 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
461 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
462 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
463 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
464 "workingSets" : "Graal,LIR,AMD64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
465 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
466
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
467 "com.oracle.graal.lir.sparc" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
468 "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
469 "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
470 "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
471 "com.oracle.graal.asm.sparc",
21713
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
472 "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
473 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
474 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
475 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
476 "workingSets" : "Graal,LIR,SPARC",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
477 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
478
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 "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
481 "sourceDirs" : ["src"],
19803
17cbf6870ca7 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 19504
diff changeset
482 "dependencies" : ["com.oracle.graal.nodes"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
483 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
484 "javaCompliance" : "1.8",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
485 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
486 "workingSets" : "API,Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
487 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
488
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
489 "com.oracle.graal.replacements" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
490 "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
491 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
492 "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
493 "com.oracle.graal.api.directives",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
494 "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
495 "com.oracle.graal.loop",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
496 "com.oracle.graal.word",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
497 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
498 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
499 "javaCompliance" : "1.8",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
500 "annotationProcessors" : deps([
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
501 "jvmci:JVMCI_OPTIONS_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
502 "GRAAL_REPLACEMENTS_VERIFIER",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
503 "GRAAL_NODEINFO_PROCESSOR",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
504 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
505 "workingSets" : "Graal,Replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
506 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
507
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
508 "com.oracle.graal.replacements.amd64" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
509 "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
510 "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
511 "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
512 "com.oracle.graal.replacements",
20844
3081a57f95fd converted @MethodSubstitutions for java.lang.Math to MethodSubstitutionPlugins
Doug Simon <doug.simon@oracle.com>
parents: 20835
diff changeset
513 "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
514 "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
515 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
516 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
517 "javaCompliance" : "1.8",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
518 "annotationProcessors" : [
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
519 "GRAAL_NODEINFO_PROCESSOR",
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
520 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
521 "workingSets" : "Graal,Replacements,AMD64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
522 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
523
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
524 "com.oracle.graal.replacements.sparc" : {
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
525 "subDir" : "graal",
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
526 "sourceDirs" : ["src"],
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
527 "dependencies" : [
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
528 "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
529 "com.oracle.graal.compiler",
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
530 ],
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
531 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
532 "javaCompliance" : "1.8",
20835
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
533 "workingSets" : "Graal,Replacements,SPARC",
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
534 },
a2cd0e7072e2 added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Doug Simon <doug.simon@oracle.com>
parents: 20182
diff changeset
535
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
536 "com.oracle.graal.replacements.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
537 "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
538 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
539 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
540 "com.oracle.graal.compiler.test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
541 "com.oracle.graal.replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
542 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
543 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
544 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
545 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
546 "workingSets" : "Graal,Replacements,Test",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
547 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
548 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
549
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
550 "com.oracle.graal.replacements.verifier" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
551 "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
552 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
553 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
554 "com.oracle.graal.api.replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
555 "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
556 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
557 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
558 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
559 "workingSets" : "Graal,Replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
560 },
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 "com.oracle.graal.nodes" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
563 "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
564 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
565 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
566 "com.oracle.graal.graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
567 "com.oracle.graal.api.replacements",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
568 "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
569 "com.oracle.graal.bytecode",
17160
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 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
572 "javaCompliance" : "1.8",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
573 "annotationProcessors" : [
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
574 "GRAAL_NODEINFO_PROCESSOR",
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
575 "GRAAL_REPLACEMENTS_VERIFIER",
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
576 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
577 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
578 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
579
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
580 "com.oracle.graal.nodes.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
581 "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
582 "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
583 "dependencies" : ["com.oracle.graal.compiler.test"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
584 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
585 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
586 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
587 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
588
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
589 "com.oracle.graal.phases" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
590 "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
591 "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
592 "dependencies" : ["com.oracle.graal.nodes"],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
593 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
594 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
595 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
596 "workingSets" : "Graal,Phases",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
597 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
598
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
599 "com.oracle.graal.phases.common" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
600 "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
601 "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
602 "dependencies" : ["com.oracle.graal.phases"],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
603 "annotationProcessors" : deps([
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
604 "GRAAL_NODEINFO_PROCESSOR",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
605 "jvmci:JVMCI_OPTIONS_PROCESSOR"
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
606 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
607 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
608 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
609 "workingSets" : "Graal,Phases",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
610 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
611
18726
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
612 "com.oracle.graal.phases.common.test" : {
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
613 "subDir" : "graal",
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
614 "sourceDirs" : ["src"],
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
615 "dependencies" : [
22876
cc788c1189fc Remove GraalRuntimeAccess mechanism, and move Graal singleton class to test project.
Roland Schatz <roland.schatz@oracle.com>
parents: 22875
diff changeset
616 "com.oracle.graal.api.test",
18726
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
617 "com.oracle.graal.runtime",
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
618 "mx:JUNIT",
18726
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
619 ],
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
620 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
621 "javaCompliance" : "1.8",
18726
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
622 "workingSets" : "Graal,Test",
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
623 },
8153d8cf264c Added unit test for StampFactoryTest.createParameterStamps.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18531
diff changeset
624
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
625 "com.oracle.graal.virtual" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
626 "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
627 "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
628 "dependencies" : ["com.oracle.graal.phases.common"],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
629 "annotationProcessors" : deps([
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
630 "jvmci:JVMCI_OPTIONS_PROCESSOR",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
631 "GRAAL_NODEINFO_PROCESSOR"
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
632 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
633 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
634 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
635 "workingSets" : "Graal,Phases",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
636 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
637
18898
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
638 "com.oracle.graal.virtual.bench" : {
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
639 "subDir" : "graal",
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
640 "sourceDirs" : ["src"],
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
641 "dependencies" : ["JMH"],
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
642 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
643 "javaCompliance" : "1.8",
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
644 "annotationProcessors" : ["JMH"],
18898
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
645 "workingSets" : "Graal,Bench",
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
646 },
886621ee9bdb Microbenchmark for partial escape analysis.
Roland Schatz <roland.schatz@oracle.com>
parents: 18897
diff changeset
647
22610
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
648 "com.oracle.graal.microbenchmarks" : {
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
649 "subDir" : "graal",
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
650 "sourceDirs" : ["src"],
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
651 "dependencies" : [
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
652 "JMH",
22876
cc788c1189fc Remove GraalRuntimeAccess mechanism, and move Graal singleton class to test project.
Roland Schatz <roland.schatz@oracle.com>
parents: 22875
diff changeset
653 "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
654 "com.oracle.graal.java",
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
655 "com.oracle.graal.runtime",
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
656 ],
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
657 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
658 "javaCompliance" : "1.8",
22610
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
659 "annotationProcessors" : ["JMH"],
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
660 "workingSets" : "Graal,Bench",
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
661 },
0d282ecc09ab c.o.g.microbenchmarks: add graal jmh benchmarks.
Josef Eisl <josef.eisl@jku.at>
parents: 22608
diff changeset
662
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
663 "com.oracle.graal.loop" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
664 "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
665 "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
666 "dependencies" : ["com.oracle.graal.phases.common"],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
667 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
668 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
669 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
670 "workingSets" : "Graal,Phases",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
671 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
672
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
673 "com.oracle.graal.compiler" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
674 "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
675 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
676 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
677 "com.oracle.graal.virtual",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
678 "com.oracle.graal.loop",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
679 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
680 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
681 "javaCompliance" : "1.8",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
682 "annotationProcessors" : deps([
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
683 "jvmci:JVMCI_SERVICE_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
684 "jvmci:JVMCI_OPTIONS_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
685 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
686 "workingSets" : "Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
687 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
688
21097
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
689 "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
690 "subDir" : "graal",
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
691 "sourceDirs" : ["src"],
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
692 "dependencies" : [
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
693 "com.oracle.graal.compiler",
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
694 ],
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
695 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
696 "javaCompliance" : "1.8",
21097
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
697 "workingSets" : "Graal,Codegen",
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
698 },
391f94d4d23f Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21096
diff changeset
699
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
700 "com.oracle.graal.compiler.amd64" : {
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"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
703 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
704 "com.oracle.graal.compiler",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
705 "com.oracle.graal.lir.amd64",
22048
a566bda0fb86 AMD64: add custom AMD64SuitesProvider.
Josef Eisl <josef.eisl@jku.at>
parents: 22044
diff changeset
706 "com.oracle.graal.java",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
707 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
708 "checkstyle" : "com.oracle.graal.graph",
22917
be55d92d4cb6 a dependency on MatchProcessor requires a dependency on ServiceProviderProcessor
Doug Simon <doug.simon@oracle.com>
parents: 22915
diff changeset
709 "annotationProcessors" : deps([
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
710 "GRAAL_NODEINFO_PROCESSOR",
22917
be55d92d4cb6 a dependency on MatchProcessor requires a dependency on ServiceProviderProcessor
Doug Simon <doug.simon@oracle.com>
parents: 22915
diff changeset
711 "GRAAL_COMPILER_MATCH_PROCESSOR",
be55d92d4cb6 a dependency on MatchProcessor requires a dependency on ServiceProviderProcessor
Doug Simon <doug.simon@oracle.com>
parents: 22915
diff changeset
712 "jvmci:JVMCI_SERVICE_PROCESSOR",
be55d92d4cb6 a dependency on MatchProcessor requires a dependency on ServiceProviderProcessor
Doug Simon <doug.simon@oracle.com>
parents: 22915
diff changeset
713 ]),
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
714 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
715 "workingSets" : "Graal,AMD64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
716 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
717
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
718 "com.oracle.graal.compiler.amd64.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
719 "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
720 "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
721 "dependencies" : deps([
21449
006d8ddb7ef9 Move ConstantStackMoveTest and StackStoreTest to amd64 specific project.
Josef Eisl <josef.eisl@jku.at>
parents: 21420
diff changeset
722 "com.oracle.graal.lir.jtt",
22183
2fa87eb4ed95 fixed canonicalization
Doug Simon <doug.simon@oracle.com>
parents: 22182
diff changeset
723 "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
724 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
725 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
726 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
727 "workingSets" : "Graal,AMD64,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
728 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
729
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
730 "com.oracle.graal.compiler.sparc" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
731 "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
732 "sourceDirs" : ["src"],
21713
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
733 "dependencies" : [
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
734 "com.oracle.graal.compiler",
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
735 "com.oracle.graal.lir.sparc"
454a99ca00a9 fixed canonicalizeprojects issues
Doug Simon <doug.simon@oracle.com>
parents: 21712
diff changeset
736 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
737 "checkstyle" : "com.oracle.graal.graph",
22917
be55d92d4cb6 a dependency on MatchProcessor requires a dependency on ServiceProviderProcessor
Doug Simon <doug.simon@oracle.com>
parents: 22915
diff changeset
738 "annotationProcessors" : deps([
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
739 "GRAAL_NODEINFO_PROCESSOR",
22917
be55d92d4cb6 a dependency on MatchProcessor requires a dependency on ServiceProviderProcessor
Doug Simon <doug.simon@oracle.com>
parents: 22915
diff changeset
740 "GRAAL_COMPILER_MATCH_PROCESSOR",
be55d92d4cb6 a dependency on MatchProcessor requires a dependency on ServiceProviderProcessor
Doug Simon <doug.simon@oracle.com>
parents: 22915
diff changeset
741 "jvmci:JVMCI_SERVICE_PROCESSOR",
be55d92d4cb6 a dependency on MatchProcessor requires a dependency on ServiceProviderProcessor
Doug Simon <doug.simon@oracle.com>
parents: 22915
diff changeset
742 ]),
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
743 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
744 "workingSets" : "Graal,SPARC",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
745 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
746
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
747 "com.oracle.graal.compiler.sparc.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
748 "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
749 "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
750 "dependencies" : deps([
18246
58bbb14d5f49 Fix SPARCAllocatorTest junit assumption.
Josef Eisl <josef.eisl@jku.at>
parents: 18245
diff changeset
751 "com.oracle.graal.compiler.test",
22183
2fa87eb4ed95 fixed canonicalization
Doug Simon <doug.simon@oracle.com>
parents: 22182
diff changeset
752 "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
753 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
754 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
755 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
756 "workingSets" : "Graal,SPARC,Test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
757 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
758
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
759 "com.oracle.graal.runtime" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
760 "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
761 "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
762 "dependencies" : ["com.oracle.graal.compiler"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
763 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
764 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
765 "workingSets" : "Graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
766 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
767
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
768 "com.oracle.graal.java" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
769 "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
770 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
771 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
772 "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
773 "com.oracle.graal.graphbuilderconf",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
774 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
775 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
776 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
777 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
778 "workingSets" : "Graal,Java",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
779 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
780
19820
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
781 "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
782 "subDir" : "graal",
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
783 "sourceDirs" : ["src"],
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
784 "dependencies" : [
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
785 "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
786 ],
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
787 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
788 "javaCompliance" : "1.8",
19820
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
789 "workingSets" : "Graal,Java",
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
790 },
4d33cd6e0c8f refactored GraphBuilderConfiguration (and its component classes) into a separate project
Doug Simon <doug.simon@oracle.com>
parents: 19803
diff changeset
791
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
792 "com.oracle.graal.compiler.common" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
793 "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
794 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
795 "dependencies" : [
22350
06a9e6737dcf Drop initial version of the trace based register allocator.
Josef Eisl <josef.eisl@jku.at>
parents: 22300
diff changeset
796 "com.oracle.graal.debug",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
797 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
798 "annotationProcessors" : deps(["jvmci:JVMCI_OPTIONS_PROCESSOR"]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
799 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
800 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
801 "workingSets" : "Graal,Java",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
802 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
803
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
804 "com.oracle.graal.printer" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
805 "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
806 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
807 "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
808 "com.oracle.graal.code",
18939
732748092bae Temporarily remove java.decompiler project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18929
diff changeset
809 "com.oracle.graal.java",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
810 "com.oracle.graal.compiler",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
811 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
812 "annotationProcessors" : deps([
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
813 "jvmci:JVMCI_OPTIONS_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
814 "jvmci:JVMCI_SERVICE_PROCESSOR"
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
815 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
816 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
817 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
818 "workingSets" : "Graal,Graph",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
819 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
820
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
821 "com.oracle.graal.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
822 "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
823 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
824 "dependencies" : [
22294
6154850c82d1 inter-suite library references must use qualified form
Doug Simon <doug.simon@oracle.com>
parents: 22293
diff changeset
825 "mx:JUNIT",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
826 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
827 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
828 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
829 "workingSets" : "Graal,Test",
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
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
832 "com.oracle.graal.compiler.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
833 "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
834 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
835 "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
836 "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
837 "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
838 "com.oracle.graal.test",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
839 "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
840 "com.oracle.graal.graph.test",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
841 "JAVA_ALLOCATION_INSTRUMENTER",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
842 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
843 "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
844 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
845 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
846 "workingSets" : "Graal,Test",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
847 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
848 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
849
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
850 "com.oracle.graal.jtt" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
851 "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
852 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
853 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
854 "com.oracle.graal.compiler.test",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
855 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
856 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
857 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
858 "workingSets" : "Graal,Test",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
859 "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
860 "findbugs" : "false",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
861 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
862
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
863 # ------------- 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
864
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
865 "com.oracle.graal.truffle" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
866 "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
867 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
868 "dependencies" : [
22420
13ea85f171d3 Updating to latest version of Truffle API
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22407
diff changeset
869 "truffle:TRUFFLE_API",
22854
aa5c2df881dd Remove unused class.
Roland Schatz <roland.schatz@oracle.com>
parents: 22853
diff changeset
870 "com.oracle.graal.api.runtime",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
871 "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
872 "com.oracle.graal.replacements",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
873 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
874 "checkstyle" : "com.oracle.graal.graph",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
875 "annotationProcessors" : 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
876 "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
877 "GRAAL_REPLACEMENTS_VERIFIER",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
878 "jvmci:JVMCI_OPTIONS_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
879 "jvmci:JVMCI_SERVICE_PROCESSOR",
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
880 "truffle:TRUFFLE_DSL_PROCESSOR",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
881 ]),
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
882 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
883 "workingSets" : "Graal,Truffle",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
884 "jacoco" : "exclude",
17160
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
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
887 "com.oracle.graal.truffle.test" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
888 "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
889 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
890 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
891 "com.oracle.graal.truffle",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
892 "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
893 "truffle:TRUFFLE_SL",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
894 ],
22182
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
895 "annotationProcessors" : [
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
896 "GRAAL_NODEINFO_PROCESSOR",
a92e1f6d4ee4 fixed incomplete or redundant "annotationProcessors" attributes
Doug Simon <doug.simon@oracle.com>
parents: 22181
diff changeset
897 "truffle:TRUFFLE_DSL_PROCESSOR"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
898 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
899 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
900 "javaCompliance" : "1.8",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
901 "workingSets" : "Graal,Truffle,Test",
18894
31960077ea9d Specify jacoco project includes/excludes in suite.py
Paul Woegerer <paul.woegerer@oracle.com>
parents: 18746
diff changeset
902 "jacoco" : "exclude",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
903 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
904
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
905 "com.oracle.graal.truffle.hotspot" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
906 "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
907 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
908 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
909 "com.oracle.graal.truffle",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
910 "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
911 "com.oracle.nfi",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
912 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
913 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
914 "javaCompliance" : "1.8",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
915 "annotationProcessors" : deps([
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
916 "jvmci:JVMCI_OPTIONS_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
917 "jvmci:JVMCI_SERVICE_PROCESSOR"
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
918 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
919 "workingSets" : "Graal,Truffle",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
920 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
921
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
922 "com.oracle.graal.truffle.hotspot.amd64" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
923 "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
924 "sourceDirs" : ["src"],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
925 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
926 "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
927 "com.oracle.graal.hotspot.amd64",
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
928 ],
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
929 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
930 "javaCompliance" : "1.8",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
931 "annotationProcessors" : deps([
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
932 "jvmci:JVMCI_SERVICE_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
933 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
934 "workingSets" : "Graal,Truffle",
18744
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
935 },
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
936
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
937 "com.oracle.graal.truffle.hotspot.sparc" : {
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
938 "subDir" : "graal",
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
939 "sourceDirs" : ["src"],
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
940 "dependencies" : [
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
941 "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
942 "com.oracle.graal.asm.sparc",
18744
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
943 ],
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
944 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
945 "javaCompliance" : "1.8",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
946 "annotationProcessors" : deps(["jvmci:JVMCI_SERVICE_PROCESSOR"]),
18744
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
947 "workingSets" : "Graal,Truffle,SPARC",
22905
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
948 },
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
949
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
950 # ------------- Salver -------------
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
951
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
952 "com.oracle.graal.salver" : {
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
953 "subDir" : "graal",
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
954 "sourceDirs" : ["src"],
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
955 "dependencies" : [
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
956 "com.oracle.graal.java",
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
957 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
958 "annotationProcessors" : deps([
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
959 "jvmci:JVMCI_OPTIONS_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
960 "jvmci:JVMCI_SERVICE_PROCESSOR",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
961 ]),
22905
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
962 "checkstyle" : "com.oracle.graal.graph",
22915
c5aa3f4aac72 revert javaCompliance for Graal projects to 1.8
Doug Simon <doug.simon@oracle.com>
parents: 22913
diff changeset
963 "javaCompliance" : "1.8",
22905
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
964 "workingSets" : "Graal",
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
965 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
966 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
967
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
968 "distributions" : {
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
969
21705
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
970 # ------------- Distributions -------------
729e6acde6c0 added JVMCI_UTIL distribution
Doug Simon <doug.simon@oracle.com>
parents: 21677
diff changeset
971
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
972 "GRAAL_NODEINFO" : {
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
973 "subDir" : "graal",
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
974 "dependencies" : [
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
975 "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
976 ],
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
977 },
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
978
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
979 "GRAAL_API" : {
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
980 "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
981 "dependencies" : [
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
982 "com.oracle.graal.api.replacements",
22854
aa5c2df881dd Remove unused class.
Roland Schatz <roland.schatz@oracle.com>
parents: 22853
diff changeset
983 "com.oracle.graal.api.runtime",
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
984 "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
985 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
986 "exclude" : deps(["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
987 "distDependencies" : deps([
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
988 "jvmci:JVMCI_API",
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
989 "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
990 ]),
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
991 },
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
992
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
993 "GRAAL_COMPILER" : {
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
994 "subDir" : "graal",
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
995 "dependencies" : [
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
996 "com.oracle.graal.compiler",
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
997 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
998 "exclude" : deps(["JVMCI"]),
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
999 "distDependencies" : [
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1000 "GRAAL_API",
21607
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
1001 ],
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
1002 },
71b338926f2e moved JVMCI classes into their own distributions (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 21605
diff changeset
1003
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1004 "GRAAL" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1005 "subDir" : "graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1006 "dependencies" : [
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1007 "com.oracle.graal.replacements",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1008 "com.oracle.graal.runtime",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1009 "com.oracle.graal.code",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1010 "com.oracle.graal.printer",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1011 "com.oracle.graal.compiler.amd64",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1012 "com.oracle.graal.replacements.amd64",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1013 "com.oracle.graal.compiler.sparc",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1014 "com.oracle.graal.replacements.sparc",
22905
463553e69619 Add basic functionality for debug dumps via Salver trace events.
Stefan Rumzucker <stefan.rumzucker@jku.at>
parents: 22903
diff changeset
1015 "com.oracle.graal.salver",
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1016 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
1017 "exclude" : deps(["JVMCI"]),
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1018 "distDependencies" : [
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1019 "GRAAL_API",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1020 "GRAAL_COMPILER",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1021 ],
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1022 },
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1023
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1024 "GRAAL_HOTSPOT" : {
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1025 "subDir" : "graal",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1026 "dependencies" : [
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1027 "com.oracle.graal.hotspot.amd64",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1028 "com.oracle.graal.hotspot.sparc",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1029 "com.oracle.graal.hotspot",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1030 ],
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
1031 "exclude" : deps(["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
1032 "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
1033 "jvmci:JVMCI_HOTSPOT",
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1034 "GRAAL_COMPILER",
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1035 "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
1036 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1037 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1038
22278
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1039 "GRAAL_TEST" : {
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1040 "subDir" : "graal",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1041 "dependencies" : [
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1042 "com.oracle.graal.api.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1043 "com.oracle.graal.api.directives.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1044 "com.oracle.graal.asm.amd64.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1045 "com.oracle.graal.compiler.amd64.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1046 "com.oracle.graal.compiler.sparc.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1047 "com.oracle.graal.hotspot.amd64.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1048 "com.oracle.graal.jtt",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1049 "com.oracle.graal.lir.jtt",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1050 "com.oracle.graal.lir.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1051 "com.oracle.graal.nodes.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1052 "com.oracle.graal.phases.common.test",
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1053 ],
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
1054 "distDependencies" : deps([
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1055 "GRAAL_HOTSPOT",
22287
b31567b406ca Modify distDependencies
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22286
diff changeset
1056 "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
1057 ]),
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
1058 "exclude" : deps([
22711
3ffc0d85d79a exclude JAVA_ALLOCATION_INSTRUMENTER from GRAAL_TEST due to license conflict
Doug Simon <doug.simon@oracle.com>
parents: 22710
diff changeset
1059 "mx:JUNIT",
22913
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
1060 "JAVA_ALLOCATION_INSTRUMENTER",
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
1061 "JVMCI"
6ecf989e8556 use JVMCI (compile time) library instead of jvmci suite when default JDK is JDK9
Doug Simon <doug.simon@oracle.com>
parents: 22905
diff changeset
1062 ]),
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1063 },
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1064
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1065 "GRAAL_TRUFFLE" : {
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1066 "subDir" : "graal",
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1067 "dependencies" : [
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1068 "com.oracle.graal.truffle",
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1069 ],
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1070 "distDependencies" : [
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1071 "GRAAL",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1072 "truffle:TRUFFLE_API",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1073 ],
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1074 },
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1075
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1076 "GRAAL_TRUFFLE_HOTSPOT" : {
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1077 "subDir" : "graal",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1078 "dependencies" : [
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1079 "com.oracle.graal.truffle.hotspot.amd64",
18744
8ac074d3e7c0 SPARC support for Truffle
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18727
diff changeset
1080 "com.oracle.graal.truffle.hotspot.sparc"
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
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 "distDependencies" : [
22491
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1083 "GRAAL_HOTSPOT",
e6a7022319a9 Put HotSpot-specific projects in their own distribution
Christian Wimmer <christian.wimmer@oracle.com>
parents: 22485
diff changeset
1084 "GRAAL_TRUFFLE",
22420
13ea85f171d3 Updating to latest version of Truffle API
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22407
diff changeset
1085 "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
1086 ],
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1087 },
22138
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1088
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1089 "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
1090 "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
1091 "dependencies" : [
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1092 "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
1093 ],
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1094 "distDependencies" : [
22278
06cb94e7c5c4 Create GRAAL_TEST distribution.
Roland Schatz <roland.schatz@oracle.com>
parents: 22277
diff changeset
1095 "GRAAL_TEST",
22178
9737e6f88d58 removed mx_graal_makefile.py from 'graal' suite
Doug Simon <doug.simon@oracle.com>
parents: 22177
diff changeset
1096 "GRAAL_TRUFFLE",
9737e6f88d58 removed mx_graal_makefile.py from 'graal' suite
Doug Simon <doug.simon@oracle.com>
parents: 22177
diff changeset
1097 "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
1098 ],
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1099 },
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
1100
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
1101 "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
1102 "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
1103 "dependencies" : ["com.oracle.graal.nodeinfo.processor"],
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1104 "distDependencies" : [
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1105 "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
1106 ],
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
1107 },
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
1108
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
1109 "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
1110 "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
1111 "dependencies" : ["com.oracle.graal.replacements.verifier"],
22287
b31567b406ca Modify distDependencies
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22286
diff changeset
1112 "distDependencies" : [
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1113 "GRAAL_API",
22197
6cd6d5e670ad exclude truffle jars from GRAAL_TRUFFLE_TEST distribution
Andreas Woess <andreas.woess@oracle.com>
parents: 22193
diff changeset
1114 ],
22138
103f53747955 added GRAAL_TRUFFLE_TEST distribution to export test framework to downstream suites
Doug Simon <doug.simon@oracle.com>
parents: 22104
diff changeset
1115 },
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
1116
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
1117 "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
1118 "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
1119 "dependencies" : ["com.oracle.graal.compiler.match.processor"],
22287
b31567b406ca Modify distDependencies
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22286
diff changeset
1120 "distDependencies" : [
22320
b1ed20090527 Resolve cyclic dependencies involving annotation processors.
Roland Schatz <roland.schatz@oracle.com>
parents: 22319
diff changeset
1121 "GRAAL_COMPILER",
22287
b31567b406ca Modify distDependencies
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 22286
diff changeset
1122 ]
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
1123 },
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
1124 },
17160
adaecbc405cb projects file converted to new format
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1125 }