src/jdk.internal.vm.compiler/.mx.graal/suite.py
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File open Sdiff src/jdk.internal.vm.compiler/.mx.graal

src/jdk.internal.vm.compiler/.mx.graal/suite.py

Print this page




  90       "dependencies" : ["JVMCI_SERVICES"],
  91       "sourceDirs" : ["src"],
  92       "checkstyle" : "org.graalvm.compiler.graph",
  93       "javaCompliance" : "1.8",
  94       "workingSets" : "API,Graal",
  95     },
  96 
  97     "org.graalvm.compiler.serviceprovider.processor" : {
  98       "subDir" : "share/classes",
  99       "sourceDirs" : ["src"],
 100       "dependencies" : ["org.graalvm.compiler.serviceprovider"],
 101       "checkstyle" : "org.graalvm.compiler.graph",
 102       "javaCompliance" : "1.8",
 103       "workingSets" : "Graal,Codegen",
 104     },
 105 
 106     "org.graalvm.compiler.options" : {
 107       "subDir" : "share/classes",
 108       "dependencies" : ["JVMCI_SERVICES", "JVMCI_API", "org.graalvm.util"],
 109       "sourceDirs" : ["src"],
 110       "dependencies" : ["org.graalvm.util"],
 111       "checkstyle" : "org.graalvm.compiler.graph",
 112       "uses" : ["org.graalvm.compiler.options.OptionDescriptors"],
 113       "javaCompliance" : "1.8",
 114       "workingSets" : "Graal",
 115     },
 116 
 117     "org.graalvm.compiler.options.processor" : {
 118       "subDir" : "share/classes",
 119       "sourceDirs" : ["src"],
 120       "dependencies" : [
 121         "org.graalvm.compiler.options",
 122       ],
 123       "checkstyle" : "org.graalvm.compiler.graph",
 124       "javaCompliance" : "1.8",
 125       "workingSets" : "Graal,Codegen",
 126     },
 127 
 128     "org.graalvm.compiler.options.test" : {
 129       "subDir" : "share/classes",
 130       "sourceDirs" : ["src"],
 131       "dependencies" : [
 132         "org.graalvm.compiler.options",
 133         "mx:JUNIT",
 134       ],
 135       "checkstyle" : "org.graalvm.compiler.graph",
 136       "javaCompliance" : "1.8",
 137       "workingSets" : "Graal",
 138     },
 139 
 140     "org.graalvm.compiler.debug" : {
 141       "subDir" : "share/classes",
 142       "sourceDirs" : ["src"],
 143       "checkstyle" : "org.graalvm.compiler.graph",
 144       "uses" : [
 145         "org.graalvm.compiler.debug.DebugHandlersFactory",
 146         "org.graalvm.compiler.debug.TTYStreamProvider",
 147       ],
 148       "dependencies" : [
 149         "JVMCI_API",
 150         "org.graalvm.compiler.serviceprovider",

 151         "org.graalvm.compiler.options"
 152       ],
 153       "annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"],
 154       "javaCompliance" : "1.8",
 155       "workingSets" : "Graal,Debug",
 156     },
 157 
 158     "org.graalvm.compiler.debug.test" : {
 159       "subDir" : "share/classes",
 160       "sourceDirs" : ["src"],
 161       "dependencies" : [
 162         "mx:JUNIT",
 163         "org.graalvm.compiler.debug",
 164       ],
 165       "checkstyle" : "org.graalvm.compiler.graph",
 166       "javaCompliance" : "1.8",
 167       "workingSets" : "Graal,Debug,Test",
 168     },
 169 
 170     "org.graalvm.compiler.code" : {


 274         # All other internal packages are exported dynamically -
 275         # see org.graalvm.compiler.hotspot.HotSpotGraalJVMCIServiceLocator
 276         "jdk.internal.module",
 277       ],
 278       "checkstyle" : "org.graalvm.compiler.graph",
 279       "annotationProcessors" : [
 280         "GRAAL_NODEINFO_PROCESSOR",
 281         "GRAAL_COMPILER_MATCH_PROCESSOR",
 282         "GRAAL_REPLACEMENTS_VERIFIER",
 283         "GRAAL_OPTIONS_PROCESSOR",
 284         "GRAAL_SERVICEPROVIDER_PROCESSOR",
 285       ],
 286       "javaCompliance" : "1.8",
 287       "workingSets" : "Graal,HotSpot",
 288     },
 289 
 290     "org.graalvm.compiler.hotspot.aarch64" : {
 291       "subDir" : "share/classes",
 292       "sourceDirs" : ["src"],
 293       "dependencies" : [
 294         "org.graalvm.compiler.core.aarch64",
 295         "org.graalvm.compiler.hotspot",
 296         "org.graalvm.compiler.replacements.aarch64",
 297       ],
 298       "checkstyle" : "org.graalvm.compiler.graph",
 299       "annotationProcessors" : [
 300         "GRAAL_SERVICEPROVIDER_PROCESSOR",
 301         "GRAAL_NODEINFO_PROCESSOR"
 302       ],
 303       "javaCompliance" : "1.8",
 304       "workingSets" : "Graal,HotSpot,AArch64",
 305     },
 306 
 307     "org.graalvm.compiler.hotspot.amd64" : {
 308       "subDir" : "share/classes",
 309       "sourceDirs" : ["src"],
 310       "dependencies" : [
 311         "org.graalvm.compiler.core.amd64",
 312         "org.graalvm.compiler.hotspot",
 313         "org.graalvm.compiler.replacements.amd64",
 314       ],


 418       "dependencies" : [
 419         "org.graalvm.compiler.nodeinfo",
 420         "org.graalvm.compiler.core.common",
 421       ],
 422       "javaCompliance" : "1.8",
 423       "annotationProcessors" : [
 424         "GRAAL_OPTIONS_PROCESSOR",
 425         "GRAAL_NODEINFO_PROCESSOR"
 426       ],
 427       "workingSets" : "Graal,Graph",
 428     },
 429 
 430     "org.graalvm.compiler.graph.test" : {
 431       "subDir" : "share/classes",
 432       "sourceDirs" : ["src"],
 433       "checkstyle" : "org.graalvm.compiler.graph",
 434       "dependencies" : [
 435         "mx:JUNIT",
 436         "org.graalvm.compiler.api.test",
 437         "org.graalvm.compiler.graph",

 438       ],
 439       "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
 440       "javaCompliance" : "1.8",
 441       "workingSets" : "Graal,Graph,Test",
 442     },
 443 
 444     "org.graalvm.compiler.asm" : {
 445       "subDir" : "share/classes",
 446       "sourceDirs" : ["src"],
 447       "dependencies" : [
 448         "JVMCI_API",
 449         "org.graalvm.compiler.core.common"
 450       ],
 451       "checkstyle" : "org.graalvm.compiler.graph",
 452       "javaCompliance" : "1.8",
 453       "workingSets" : "Graal,Assembler",
 454     },
 455 
 456     "org.graalvm.compiler.asm.aarch64" : {
 457       "subDir" : "share/classes",


 928       "dependencies" : [
 929         "org.graalvm.compiler.core",
 930         "org.graalvm.compiler.lir.amd64",
 931         "org.graalvm.compiler.java",
 932       ],
 933       "checkstyle" : "org.graalvm.compiler.graph",
 934       "annotationProcessors" : [
 935         "GRAAL_NODEINFO_PROCESSOR",
 936         "GRAAL_COMPILER_MATCH_PROCESSOR",
 937       ],
 938       "javaCompliance" : "1.8",
 939       "workingSets" : "Graal,AMD64",
 940     },
 941 
 942     "org.graalvm.compiler.core.amd64.test" : {
 943       "subDir" : "share/classes",
 944       "sourceDirs" : ["src"],
 945       "dependencies" : [
 946         "org.graalvm.compiler.lir.jtt",
 947         "org.graalvm.compiler.lir.amd64",

 948         "JVMCI_HOTSPOT"
 949       ],
 950       "checkstyle" : "org.graalvm.compiler.graph",
 951       "javaCompliance" : "1.8",
 952       "workingSets" : "Graal,AMD64,Test",
 953     },
 954 
 955     "org.graalvm.compiler.core.sparc" : {
 956       "subDir" : "share/classes",
 957       "sourceDirs" : ["src"],
 958       "dependencies" : [
 959         "org.graalvm.compiler.core",
 960         "org.graalvm.compiler.lir.sparc",
 961         "org.graalvm.compiler.java"
 962       ],
 963       "checkstyle" : "org.graalvm.compiler.graph",
 964       "annotationProcessors" : [
 965         "GRAAL_NODEINFO_PROCESSOR",
 966         "GRAAL_COMPILER_MATCH_PROCESSOR",
 967       ],


1002       "workingSets" : "Graal,Java",
1003     },
1004 
1005     "org.graalvm.compiler.core.common" : {
1006       "subDir" : "share/classes",
1007       "sourceDirs" : ["src"],
1008       "dependencies" : [
1009         "org.graalvm.compiler.debug",
1010         "org.graalvm.word",
1011       ],
1012       "annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"],
1013       "checkstyle" : "org.graalvm.compiler.graph",
1014       "javaCompliance" : "1.8",
1015       "workingSets" : "Graal,Java",
1016     },
1017 
1018     "org.graalvm.compiler.printer" : {
1019       "subDir" : "share/classes",
1020       "sourceDirs" : ["src"],
1021       "dependencies" : [
1022         "org.graalvm.graphio",
1023         "org.graalvm.compiler.core",
1024         "org.graalvm.compiler.java",
1025       ],
1026       "annotationProcessors" : [
1027         "GRAAL_OPTIONS_PROCESSOR",
1028         "GRAAL_SERVICEPROVIDER_PROCESSOR"
1029       ],
1030       "checkstyle" : "org.graalvm.compiler.graph",
1031       "javaCompliance" : "1.8",
1032       "workingSets" : "Graal,Graph",
1033     },
1034 
1035     "org.graalvm.compiler.test" : {
1036       "subDir" : "share/classes",
1037       "sourceDirs" : ["src"],
1038       "dependencies" : [
1039         "org.graalvm.compiler.debug",
1040         "org.graalvm.util",
1041         "mx:JUNIT",
1042       ],




  90       "dependencies" : ["JVMCI_SERVICES"],
  91       "sourceDirs" : ["src"],
  92       "checkstyle" : "org.graalvm.compiler.graph",
  93       "javaCompliance" : "1.8",
  94       "workingSets" : "API,Graal",
  95     },
  96 
  97     "org.graalvm.compiler.serviceprovider.processor" : {
  98       "subDir" : "share/classes",
  99       "sourceDirs" : ["src"],
 100       "dependencies" : ["org.graalvm.compiler.serviceprovider"],
 101       "checkstyle" : "org.graalvm.compiler.graph",
 102       "javaCompliance" : "1.8",
 103       "workingSets" : "Graal,Codegen",
 104     },
 105 
 106     "org.graalvm.compiler.options" : {
 107       "subDir" : "share/classes",
 108       "dependencies" : ["JVMCI_SERVICES", "JVMCI_API", "org.graalvm.util"],
 109       "sourceDirs" : ["src"],

 110       "checkstyle" : "org.graalvm.compiler.graph",
 111       "uses" : ["org.graalvm.compiler.options.OptionDescriptors"],
 112       "javaCompliance" : "1.8",
 113       "workingSets" : "Graal",
 114     },
 115 
 116     "org.graalvm.compiler.options.processor" : {
 117       "subDir" : "share/classes",
 118       "sourceDirs" : ["src"],
 119       "dependencies" : [
 120         "org.graalvm.compiler.options",
 121       ],
 122       "checkstyle" : "org.graalvm.compiler.graph",
 123       "javaCompliance" : "1.8",
 124       "workingSets" : "Graal,Codegen",
 125     },
 126 
 127     "org.graalvm.compiler.options.test" : {
 128       "subDir" : "share/classes",
 129       "sourceDirs" : ["src"],
 130       "dependencies" : [
 131         "org.graalvm.compiler.options",
 132         "mx:JUNIT",
 133       ],
 134       "checkstyle" : "org.graalvm.compiler.graph",
 135       "javaCompliance" : "1.8",
 136       "workingSets" : "Graal",
 137     },
 138 
 139     "org.graalvm.compiler.debug" : {
 140       "subDir" : "share/classes",
 141       "sourceDirs" : ["src"],
 142       "checkstyle" : "org.graalvm.compiler.graph",
 143       "uses" : [
 144         "org.graalvm.compiler.debug.DebugHandlersFactory",
 145         "org.graalvm.compiler.debug.TTYStreamProvider",
 146       ],
 147       "dependencies" : [
 148         "JVMCI_API",
 149         "org.graalvm.compiler.serviceprovider",
 150         "org.graalvm.graphio",
 151         "org.graalvm.compiler.options"
 152       ],
 153       "annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"],
 154       "javaCompliance" : "1.8",
 155       "workingSets" : "Graal,Debug",
 156     },
 157 
 158     "org.graalvm.compiler.debug.test" : {
 159       "subDir" : "share/classes",
 160       "sourceDirs" : ["src"],
 161       "dependencies" : [
 162         "mx:JUNIT",
 163         "org.graalvm.compiler.debug",
 164       ],
 165       "checkstyle" : "org.graalvm.compiler.graph",
 166       "javaCompliance" : "1.8",
 167       "workingSets" : "Graal,Debug,Test",
 168     },
 169 
 170     "org.graalvm.compiler.code" : {


 274         # All other internal packages are exported dynamically -
 275         # see org.graalvm.compiler.hotspot.HotSpotGraalJVMCIServiceLocator
 276         "jdk.internal.module",
 277       ],
 278       "checkstyle" : "org.graalvm.compiler.graph",
 279       "annotationProcessors" : [
 280         "GRAAL_NODEINFO_PROCESSOR",
 281         "GRAAL_COMPILER_MATCH_PROCESSOR",
 282         "GRAAL_REPLACEMENTS_VERIFIER",
 283         "GRAAL_OPTIONS_PROCESSOR",
 284         "GRAAL_SERVICEPROVIDER_PROCESSOR",
 285       ],
 286       "javaCompliance" : "1.8",
 287       "workingSets" : "Graal,HotSpot",
 288     },
 289 
 290     "org.graalvm.compiler.hotspot.aarch64" : {
 291       "subDir" : "share/classes",
 292       "sourceDirs" : ["src"],
 293       "dependencies" : [

 294         "org.graalvm.compiler.hotspot",
 295         "org.graalvm.compiler.replacements.aarch64",
 296       ],
 297       "checkstyle" : "org.graalvm.compiler.graph",
 298       "annotationProcessors" : [
 299         "GRAAL_SERVICEPROVIDER_PROCESSOR",
 300         "GRAAL_NODEINFO_PROCESSOR"
 301       ],
 302       "javaCompliance" : "1.8",
 303       "workingSets" : "Graal,HotSpot,AArch64",
 304     },
 305 
 306     "org.graalvm.compiler.hotspot.amd64" : {
 307       "subDir" : "share/classes",
 308       "sourceDirs" : ["src"],
 309       "dependencies" : [
 310         "org.graalvm.compiler.core.amd64",
 311         "org.graalvm.compiler.hotspot",
 312         "org.graalvm.compiler.replacements.amd64",
 313       ],


 417       "dependencies" : [
 418         "org.graalvm.compiler.nodeinfo",
 419         "org.graalvm.compiler.core.common",
 420       ],
 421       "javaCompliance" : "1.8",
 422       "annotationProcessors" : [
 423         "GRAAL_OPTIONS_PROCESSOR",
 424         "GRAAL_NODEINFO_PROCESSOR"
 425       ],
 426       "workingSets" : "Graal,Graph",
 427     },
 428 
 429     "org.graalvm.compiler.graph.test" : {
 430       "subDir" : "share/classes",
 431       "sourceDirs" : ["src"],
 432       "checkstyle" : "org.graalvm.compiler.graph",
 433       "dependencies" : [
 434         "mx:JUNIT",
 435         "org.graalvm.compiler.api.test",
 436         "org.graalvm.compiler.graph",
 437         "org.graalvm.graphio",
 438       ],
 439       "annotationProcessors" : ["GRAAL_NODEINFO_PROCESSOR"],
 440       "javaCompliance" : "1.8",
 441       "workingSets" : "Graal,Graph,Test",
 442     },
 443 
 444     "org.graalvm.compiler.asm" : {
 445       "subDir" : "share/classes",
 446       "sourceDirs" : ["src"],
 447       "dependencies" : [
 448         "JVMCI_API",
 449         "org.graalvm.compiler.core.common"
 450       ],
 451       "checkstyle" : "org.graalvm.compiler.graph",
 452       "javaCompliance" : "1.8",
 453       "workingSets" : "Graal,Assembler",
 454     },
 455 
 456     "org.graalvm.compiler.asm.aarch64" : {
 457       "subDir" : "share/classes",


 928       "dependencies" : [
 929         "org.graalvm.compiler.core",
 930         "org.graalvm.compiler.lir.amd64",
 931         "org.graalvm.compiler.java",
 932       ],
 933       "checkstyle" : "org.graalvm.compiler.graph",
 934       "annotationProcessors" : [
 935         "GRAAL_NODEINFO_PROCESSOR",
 936         "GRAAL_COMPILER_MATCH_PROCESSOR",
 937       ],
 938       "javaCompliance" : "1.8",
 939       "workingSets" : "Graal,AMD64",
 940     },
 941 
 942     "org.graalvm.compiler.core.amd64.test" : {
 943       "subDir" : "share/classes",
 944       "sourceDirs" : ["src"],
 945       "dependencies" : [
 946         "org.graalvm.compiler.lir.jtt",
 947         "org.graalvm.compiler.lir.amd64",
 948         "org.graalvm.compiler.core.amd64",
 949         "JVMCI_HOTSPOT"
 950       ],
 951       "checkstyle" : "org.graalvm.compiler.graph",
 952       "javaCompliance" : "1.8",
 953       "workingSets" : "Graal,AMD64,Test",
 954     },
 955 
 956     "org.graalvm.compiler.core.sparc" : {
 957       "subDir" : "share/classes",
 958       "sourceDirs" : ["src"],
 959       "dependencies" : [
 960         "org.graalvm.compiler.core",
 961         "org.graalvm.compiler.lir.sparc",
 962         "org.graalvm.compiler.java"
 963       ],
 964       "checkstyle" : "org.graalvm.compiler.graph",
 965       "annotationProcessors" : [
 966         "GRAAL_NODEINFO_PROCESSOR",
 967         "GRAAL_COMPILER_MATCH_PROCESSOR",
 968       ],


1003       "workingSets" : "Graal,Java",
1004     },
1005 
1006     "org.graalvm.compiler.core.common" : {
1007       "subDir" : "share/classes",
1008       "sourceDirs" : ["src"],
1009       "dependencies" : [
1010         "org.graalvm.compiler.debug",
1011         "org.graalvm.word",
1012       ],
1013       "annotationProcessors" : ["GRAAL_OPTIONS_PROCESSOR"],
1014       "checkstyle" : "org.graalvm.compiler.graph",
1015       "javaCompliance" : "1.8",
1016       "workingSets" : "Graal,Java",
1017     },
1018 
1019     "org.graalvm.compiler.printer" : {
1020       "subDir" : "share/classes",
1021       "sourceDirs" : ["src"],
1022       "dependencies" : [

1023         "org.graalvm.compiler.core",
1024         "org.graalvm.compiler.java",
1025       ],
1026       "annotationProcessors" : [
1027         "GRAAL_OPTIONS_PROCESSOR",
1028         "GRAAL_SERVICEPROVIDER_PROCESSOR"
1029       ],
1030       "checkstyle" : "org.graalvm.compiler.graph",
1031       "javaCompliance" : "1.8",
1032       "workingSets" : "Graal,Graph",
1033     },
1034 
1035     "org.graalvm.compiler.test" : {
1036       "subDir" : "share/classes",
1037       "sourceDirs" : ["src"],
1038       "dependencies" : [
1039         "org.graalvm.compiler.debug",
1040         "org.graalvm.util",
1041         "mx:JUNIT",
1042       ],


src/jdk.internal.vm.compiler/.mx.graal/suite.py
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File