annotate mx.graal/suite.py @ 22913:6ecf989e8556

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