annotate src/share/tools/ProjectCreator/BuildConfig.java @ 21792:da7e30544879

Fix windows build for jvmci (JBS:GRAAL-52)
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Mon, 08 Jun 2015 17:04:02 +0200
parents 2a69cbe850a8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
2 * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
25 import java.util.Enumeration;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
26 import java.util.Hashtable;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
27 import java.util.Vector;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class BuildConfig {
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
30 @SuppressWarnings("rawtypes")
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 Hashtable vars;
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
32 Vector<String> basicNames, basicPaths;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 String[] context;
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 static CompilerInterface ci;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 static CompilerInterface getCI() {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 if (ci == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 String comp = (String)getField(null, "CompilerVersion");
a61af66fc99e Initial load
duke
parents:
diff changeset
39 try {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 ci = (CompilerInterface)Class.forName("CompilerInterface" + comp).newInstance();
a61af66fc99e Initial load
duke
parents:
diff changeset
41 } catch (Exception cnfe) {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 System.err.println("Cannot find support for compiler " + comp);
a61af66fc99e Initial load
duke
parents:
diff changeset
43 throw new RuntimeException(cnfe.toString());
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 return ci;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 }
a61af66fc99e Initial load
duke
parents:
diff changeset
48
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
49 @SuppressWarnings("rawtypes")
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50 protected void initNames(String flavour, String build, String outDll) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 if (vars == null) vars = new Hashtable();
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 String flavourBuild = flavour + "_" + build;
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
54 String platformName = getFieldString(null, "PlatformName");
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
55 System.out.println();
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
56 System.out.println(flavourBuild);
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
57
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
58 put("Name", getCI().makeCfgName(flavourBuild, platformName));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
59 put("Flavour", flavour);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 put("Build", build);
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
61 put("PlatformName", platformName);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // ones mentioned above were needed to expand format
a61af66fc99e Initial load
duke
parents:
diff changeset
64 String buildBase = expandFormat(getFieldString(null, "BuildBase"));
a61af66fc99e Initial load
duke
parents:
diff changeset
65 String sourceBase = getFieldString(null, "SourceBase");
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
66 String buildSpace = getFieldString(null, "BuildSpace");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67 String outDir = buildBase;
10277
aabf54ccedb1 8008772: remove gamma launcher
twisti
parents: 8821
diff changeset
68 String jdkTargetRoot = getFieldString(null, "JdkTargetRoot");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
69
10510
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
70 String value = System.getenv("OUT_DIR");
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
71 if (value != null) {
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
72 outDir = value;
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
73 int lastDirectorySeparator = Math.max(outDir.lastIndexOf("/"), outDir.lastIndexOf("\\"));
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
74 if (lastDirectorySeparator >= 0) {
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
75 outDir = outDir.substring(0, lastDirectorySeparator);
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
76 }
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
77 outDir += Util.sep + build + Util.sep + "jre" + Util.sep + "bin";
21792
da7e30544879 Fix windows build for jvmci (JBS:GRAAL-52)
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18125
diff changeset
78 if (flavour.equals("jvmci")) {
da7e30544879 Fix windows build for jvmci (JBS:GRAAL-52)
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18125
diff changeset
79 outDir += Util.sep + "jvmci";
10510
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
80 } else if (flavour.equals("compiler1")) {
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
81 outDir += Util.sep + "client";
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
82 } else {
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
83 outDir += Util.sep + "server";
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
84 }
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
85 buildBase = outDir;
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
86 }
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
87
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88 put("Id", flavourBuild);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 put("OutputDir", outDir);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 put("SourceBase", sourceBase);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 put("BuildBase", buildBase);
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
92 put("BuildSpace", buildSpace);
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
93 put("OutputDll", outDir + Util.sep + outDll);
10277
aabf54ccedb1 8008772: remove gamma launcher
twisti
parents: 8821
diff changeset
94 put("JdkTargetRoot", jdkTargetRoot);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 context = new String [] {flavourBuild, flavour, build, null};
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
99 protected void init(Vector<String> includes, Vector<String> defines) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
100 initDefaultDefines(defines);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 initDefaultCompilerFlags(includes);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 initDefaultLinkerFlags();
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
103 //handleDB();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
107 protected void initDefaultCompilerFlags(Vector<String> includes) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
108 Vector compilerFlags = new Vector();
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 compilerFlags.addAll(getCI().getBaseCompilerFlags(getV("Define"),
a61af66fc99e Initial load
duke
parents:
diff changeset
111 includes,
a61af66fc99e Initial load
duke
parents:
diff changeset
112 get("OutputDir")));
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 put("CompilerFlags", compilerFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 protected void initDefaultLinkerFlags() {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 Vector linkerFlags = new Vector();
a61af66fc99e Initial load
duke
parents:
diff changeset
119
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
120 linkerFlags.addAll(getCI().getBaseLinkerFlags( get("OutputDir"), get("OutputDll"), get("PlatformName")));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 put("LinkerFlags", linkerFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
125 public boolean matchesIgnoredPath(String path) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
126 Vector<String> rv = new Vector<String>();
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
127 collectRelevantVectors(rv, "IgnorePath");
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
128 for (String pathPart : rv) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
129 if (path.contains(pathPart)) {
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
130 return true;
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
131 }
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
132 }
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
133 return false;
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
134 }
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
135
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
136 public boolean matchesHidePath(String path) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
137 Vector<String> rv = new Vector<String>();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
138 collectRelevantVectors(rv, "HidePath");
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
139 for (String pathPart : rv) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
140 if (path.contains(Util.normalize(pathPart))) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
141 return true;
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
142 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
143 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
144 return false;
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
145 }
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
146
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
147 public Vector<String> matchesAdditionalGeneratedPath(String fullPath) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
148 Vector<String> rv = new Vector<String>();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
149 Hashtable<String, String> v = (Hashtable<String, String>)BuildConfig.getField(this.toString(), "AdditionalGeneratedFile");
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
150 if (v != null) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
151 for (Enumeration<String> e=v.keys(); e.hasMoreElements(); ) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
152 String key = e.nextElement();
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
153 String val = v.get(key);
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
154
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
155 if (fullPath.endsWith(expandFormat(key))) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
156 rv.add(expandFormat(val));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
160 return rv;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162
12014
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
163 // Returns true if the specified path refers to a relative alternate
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
164 // source file. RelativeAltSrcInclude is usually "src\closed".
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
165 public static boolean matchesRelativeAltSrcInclude(String path) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
166 String relativeAltSrcInclude =
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
167 getFieldString(null, "RelativeAltSrcInclude");
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
168 Vector<String> v = getFieldVector(null, "AltRelativeInclude");
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
169 for (String pathPart : v) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
170 if (path.contains(relativeAltSrcInclude + Util.sep + pathPart)) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
171 return true;
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
172 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
173 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
174 return false;
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
175 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
176
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
177 // Returns the relative alternate source file for the specified path.
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
178 // Null is returned if the specified path does not have a matching
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
179 // alternate source file.
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
180 public static String getMatchingRelativeAltSrcFile(String path) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
181 Vector<String> v = getFieldVector(null, "RelativeAltSrcFileList");
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
182 if (v == null) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
183 return null;
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
184 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
185 for (String pathPart : v) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
186 if (path.endsWith(pathPart)) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
187 String relativeAltSrcInclude =
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
188 getFieldString(null, "RelativeAltSrcInclude");
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
189 return relativeAltSrcInclude + Util.sep + pathPart;
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
190 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
191 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
192 return null;
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
193 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
194
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
195 // Returns true if the specified path has a matching alternate
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
196 // source file.
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
197 public static boolean matchesRelativeAltSrcFile(String path) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
198 return getMatchingRelativeAltSrcFile(path) != null;
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
199 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
200
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
201 // Track the specified alternate source file. The source file is
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
202 // tracked without the leading .*<sep><RelativeAltSrcFileList><sep>
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
203 // part to make matching regular source files easier.
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
204 public static void trackRelativeAltSrcFile(String path) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
205 String pattern = getFieldString(null, "RelativeAltSrcInclude") +
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
206 Util.sep;
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
207 int altSrcInd = path.indexOf(pattern);
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
208 if (altSrcInd == -1) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
209 // not an AltSrc path
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
210 return;
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
211 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
212
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
213 altSrcInd += pattern.length();
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
214 if (altSrcInd >= path.length()) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
215 // not a valid AltSrc path
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
216 return;
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
217 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
218
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
219 String altSrcFile = path.substring(altSrcInd);
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
220 Vector v = getFieldVector(null, "RelativeAltSrcFileList");
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
221 if (v == null || !v.contains(altSrcFile)) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
222 addFieldVector(null, "RelativeAltSrcFileList", altSrcFile);
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
223 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
224 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
225
0
a61af66fc99e Initial load
duke
parents:
diff changeset
226 void addTo(Hashtable ht, String key, String value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 ht.put(expandFormat(key), expandFormat(value));
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 void initDefaultDefines(Vector defines) {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 Vector sysDefines = new Vector();
2184
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
232
2273
2ab52cda08e5 Merge with OpenJDK.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2184 2233
diff changeset
233 if( vars.get("PlatformName").equals("Win32")) {
2184
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
234 sysDefines.add("WIN32");
1408
0ba67bb5392c added c1x build directory, added MSVC Win64 project support
lstadler
parents: 844
diff changeset
235 } else {
2184
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
236 sysDefines.add("_AMD64_");
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
237 sysDefines.add("AMD64");
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
238 sysDefines.add("_WIN64");
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
239 sysDefines.add("_LP64");
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
240 if (System.getenv("MSC_VER") != null)
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
241 sysDefines.add("MSC_VER=" + System.getenv("MSC_VER"));
1408
0ba67bb5392c added c1x build directory, added MSVC Win64 project support
lstadler
parents: 844
diff changeset
242 sysDefines.add("HOTSPOT_LIB_ARCH=\\\"amd64\\\"");
0ba67bb5392c added c1x build directory, added MSVC Win64 project support
lstadler
parents: 844
diff changeset
243 }
2184
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
244
0
a61af66fc99e Initial load
duke
parents:
diff changeset
245 sysDefines.add("_WINDOWS");
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
246 sysDefines.add("HOTSPOT_BUILD_USER=\\\""+System.getProperty("user.name")+"\\\"");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
247 sysDefines.add("HOTSPOT_BUILD_TARGET=\\\""+get("Build")+"\\\"");
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
248 sysDefines.add("INCLUDE_TRACE=1");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
249 sysDefines.add("_JNI_IMPLEMENTATION_");
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
250 if (vars.get("PlatformName").equals("Win32")) {
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
251 sysDefines.add("HOTSPOT_LIB_ARCH=\\\"i386\\\"");
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
252 } else {
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
253 sysDefines.add("HOTSPOT_LIB_ARCH=\\\"amd64\\\"");
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
254 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 sysDefines.addAll(defines);
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 put("Define", sysDefines);
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 String get(String key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 return (String)vars.get(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 Vector getV(String key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 return (Vector)vars.get(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 Object getO(String key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 return vars.get(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273 Hashtable getH(String key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 return (Hashtable)vars.get(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 Object getFieldInContext(String field) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 for (int i=0; i<context.length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 Object rv = getField(context[i], field);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 if (rv != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
281 return rv;
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284 return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 Object lookupHashFieldInContext(String field, String key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
288 for (int i=0; i<context.length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 Hashtable ht = (Hashtable)getField(context[i], field);
a61af66fc99e Initial load
duke
parents:
diff changeset
290 if (ht != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
291 Object rv = ht.get(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
292 if (rv != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 return rv;
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
297 return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 void put(String key, String value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 vars.put(key, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 void put(String key, Vector vvalue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
305 vars.put(key, vvalue);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 void add(String key, Vector vvalue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 getV(key).addAll(vvalue);
a61af66fc99e Initial load
duke
parents:
diff changeset
310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 String flavour() {
a61af66fc99e Initial load
duke
parents:
diff changeset
313 return get("Flavour");
a61af66fc99e Initial load
duke
parents:
diff changeset
314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316 String build() {
a61af66fc99e Initial load
duke
parents:
diff changeset
317 return get("Build");
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319
2184
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
320 String outputDir() {
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
321 return get("OutputDir");
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
322 }
5d801e6b9a80 Imported build system changes from other repository.
Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
parents: 2044
diff changeset
323
0
a61af66fc99e Initial load
duke
parents:
diff changeset
324 Object getSpecificField(String field) {
a61af66fc99e Initial load
duke
parents:
diff changeset
325 return getField(get("Id"), field);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 void putSpecificField(String field, Object value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
329 putField(get("Id"), field, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 void collectRelevantVectors(Vector rv, String field) {
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
333 for (String ctx : context) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
334 Vector<String> v = getFieldVector(ctx, field);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
335 if (v != null) {
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
336 for (String val : v) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
337 rv.add(expandFormat(val).replace('/', '\\'));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339 }
a61af66fc99e Initial load
duke
parents:
diff changeset
340 }
a61af66fc99e Initial load
duke
parents:
diff changeset
341 }
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 void collectRelevantHashes(Hashtable rv, String field) {
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
344 for (String ctx : context) {
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
345 Hashtable v = (Hashtable)getField(ctx, field);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
346 if (v != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
347 for (Enumeration e=v.keys(); e.hasMoreElements(); ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
348 String key = (String)e.nextElement();
a61af66fc99e Initial load
duke
parents:
diff changeset
349 String val = (String)v.get(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 addTo(rv, key, val);
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352 }
a61af66fc99e Initial load
duke
parents:
diff changeset
353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356
a61af66fc99e Initial load
duke
parents:
diff changeset
357 Vector getDefines() {
a61af66fc99e Initial load
duke
parents:
diff changeset
358 Vector rv = new Vector();
a61af66fc99e Initial load
duke
parents:
diff changeset
359 collectRelevantVectors(rv, "Define");
a61af66fc99e Initial load
duke
parents:
diff changeset
360 return rv;
a61af66fc99e Initial load
duke
parents:
diff changeset
361 }
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363 Vector getIncludes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
364 Vector rv = new Vector();
a61af66fc99e Initial load
duke
parents:
diff changeset
365 collectRelevantVectors(rv, "AbsoluteInclude");
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
366 rv.addAll(getSourceIncludes());
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
367 return rv;
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
368 }
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
369
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
370 private Vector getSourceIncludes() {
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
371 Vector<String> rv = new Vector<String>();
12014
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
372 String sourceBase = getFieldString(null, "SourceBase");
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
373
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
374 // add relative alternate source include values:
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
375 String relativeAltSrcInclude =
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
376 getFieldString(null, "RelativeAltSrcInclude");
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
377 Vector<String> asri = new Vector<String>();
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
378 collectRelevantVectors(asri, "AltRelativeInclude");
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
379 for (String f : asri) {
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
380 rv.add(sourceBase + Util.sep + relativeAltSrcInclude +
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
381 Util.sep + f);
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
382 }
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
383
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
384 Vector<String> ri = new Vector<String>();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
385 collectRelevantVectors(ri, "RelativeInclude");
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
386 for (String f : ri) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
387 rv.add(sourceBase + Util.sep + f);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389 return rv;
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 static Hashtable cfgData = new Hashtable();
a61af66fc99e Initial load
duke
parents:
diff changeset
393 static Hashtable globalData = new Hashtable();
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 static boolean appliesToTieredBuild(String cfg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 return (cfg != null &&
a61af66fc99e Initial load
duke
parents:
diff changeset
397 (cfg.startsWith("compiler1") ||
a61af66fc99e Initial load
duke
parents:
diff changeset
398 cfg.startsWith("compiler2")));
a61af66fc99e Initial load
duke
parents:
diff changeset
399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
400
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
401 // Filters out the IgnoreFile and IgnorePaths since they are
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
402 // handled specially for tiered builds.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
403 static boolean appliesToTieredBuild(String cfg, String key) {
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
404 return (appliesToTieredBuild(cfg))&& (key != null && !key.startsWith("Ignore"));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
405 }
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 static String getTieredBuildCfg(String cfg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 assert appliesToTieredBuild(cfg) : "illegal configuration " + cfg;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 return "tiered" + cfg.substring(9);
a61af66fc99e Initial load
duke
parents:
diff changeset
410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 static Object getField(String cfg, String field) {
a61af66fc99e Initial load
duke
parents:
diff changeset
413 if (cfg == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
414 return globalData.get(field);
a61af66fc99e Initial load
duke
parents:
diff changeset
415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417 Hashtable ht = (Hashtable)cfgData.get(cfg);
a61af66fc99e Initial load
duke
parents:
diff changeset
418 return ht == null ? null : ht.get(field);
a61af66fc99e Initial load
duke
parents:
diff changeset
419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 static String getFieldString(String cfg, String field) {
a61af66fc99e Initial load
duke
parents:
diff changeset
422 return (String)getField(cfg, field);
a61af66fc99e Initial load
duke
parents:
diff changeset
423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
424
a61af66fc99e Initial load
duke
parents:
diff changeset
425 static Vector getFieldVector(String cfg, String field) {
a61af66fc99e Initial load
duke
parents:
diff changeset
426 return (Vector)getField(cfg, field);
a61af66fc99e Initial load
duke
parents:
diff changeset
427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 static void putField(String cfg, String field, Object value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
430 putFieldImpl(cfg, field, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
431 if (appliesToTieredBuild(cfg, field)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 putFieldImpl(getTieredBuildCfg(cfg), field, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 private static void putFieldImpl(String cfg, String field, Object value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 if (cfg == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 globalData.put(field, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
439 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442 Hashtable ht = (Hashtable)cfgData.get(cfg);
a61af66fc99e Initial load
duke
parents:
diff changeset
443 if (ht == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 ht = new Hashtable();
a61af66fc99e Initial load
duke
parents:
diff changeset
445 cfgData.put(cfg, ht);
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 ht.put(field, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450
a61af66fc99e Initial load
duke
parents:
diff changeset
451 static Object getFieldHash(String cfg, String field, String name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
452 Hashtable ht = (Hashtable)getField(cfg, field);
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 return ht == null ? null : ht.get(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 static void putFieldHash(String cfg, String field, String name, Object val) {
a61af66fc99e Initial load
duke
parents:
diff changeset
458 putFieldHashImpl(cfg, field, name, val);
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
459 if (appliesToTieredBuild(cfg, field)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
460 putFieldHashImpl(getTieredBuildCfg(cfg), field, name, val);
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463
a61af66fc99e Initial load
duke
parents:
diff changeset
464 private static void putFieldHashImpl(String cfg, String field, String name, Object val) {
a61af66fc99e Initial load
duke
parents:
diff changeset
465 Hashtable ht = (Hashtable)getField(cfg, field);
a61af66fc99e Initial load
duke
parents:
diff changeset
466
a61af66fc99e Initial load
duke
parents:
diff changeset
467 if (ht == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
468 ht = new Hashtable();
a61af66fc99e Initial load
duke
parents:
diff changeset
469 putFieldImpl(cfg, field, ht);
a61af66fc99e Initial load
duke
parents:
diff changeset
470 }
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 ht.put(name, val);
a61af66fc99e Initial load
duke
parents:
diff changeset
473 }
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 static void addFieldVector(String cfg, String field, String element) {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 addFieldVectorImpl(cfg, field, element);
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
477 if (appliesToTieredBuild(cfg, field)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
478 addFieldVectorImpl(getTieredBuildCfg(cfg), field, element);
a61af66fc99e Initial load
duke
parents:
diff changeset
479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481
a61af66fc99e Initial load
duke
parents:
diff changeset
482 private static void addFieldVectorImpl(String cfg, String field, String element) {
a61af66fc99e Initial load
duke
parents:
diff changeset
483 Vector v = (Vector)getField(cfg, field);
a61af66fc99e Initial load
duke
parents:
diff changeset
484
a61af66fc99e Initial load
duke
parents:
diff changeset
485 if (v == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
486 v = new Vector();
a61af66fc99e Initial load
duke
parents:
diff changeset
487 putFieldImpl(cfg, field, v);
a61af66fc99e Initial load
duke
parents:
diff changeset
488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
489
a61af66fc99e Initial load
duke
parents:
diff changeset
490 v.add(element);
a61af66fc99e Initial load
duke
parents:
diff changeset
491 }
a61af66fc99e Initial load
duke
parents:
diff changeset
492
a61af66fc99e Initial load
duke
parents:
diff changeset
493 String expandFormat(String format) {
a61af66fc99e Initial load
duke
parents:
diff changeset
494 if (format == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
495 return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
496 }
a61af66fc99e Initial load
duke
parents:
diff changeset
497
a61af66fc99e Initial load
duke
parents:
diff changeset
498 if (format.indexOf('%') == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
499 return format;
a61af66fc99e Initial load
duke
parents:
diff changeset
500 }
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502 StringBuffer sb = new StringBuffer();
a61af66fc99e Initial load
duke
parents:
diff changeset
503 int len = format.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
504 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
505 char ch = format.charAt(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
506 if (ch == '%') {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 char ch1 = format.charAt(i+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
508 switch (ch1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 case '%':
a61af66fc99e Initial load
duke
parents:
diff changeset
510 sb.append(ch1);
a61af66fc99e Initial load
duke
parents:
diff changeset
511 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
512 case 'b':
a61af66fc99e Initial load
duke
parents:
diff changeset
513 sb.append(build());
a61af66fc99e Initial load
duke
parents:
diff changeset
514 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
515 case 'f':
a61af66fc99e Initial load
duke
parents:
diff changeset
516 sb.append(flavour());
a61af66fc99e Initial load
duke
parents:
diff changeset
517 break;
18125
2a69cbe850a8 Reduce diff with upstream
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
518 case 'o':
2a69cbe850a8 Reduce diff with upstream
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
519 sb.append(outputDir());
2a69cbe850a8 Reduce diff with upstream
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039
diff changeset
520 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
521 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
522 sb.append(ch);
a61af66fc99e Initial load
duke
parents:
diff changeset
523 sb.append(ch1);
a61af66fc99e Initial load
duke
parents:
diff changeset
524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
525 i++;
a61af66fc99e Initial load
duke
parents:
diff changeset
526 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 sb.append(ch);
a61af66fc99e Initial load
duke
parents:
diff changeset
528 }
a61af66fc99e Initial load
duke
parents:
diff changeset
529 }
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 return sb.toString();
a61af66fc99e Initial load
duke
parents:
diff changeset
532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
533 }
a61af66fc99e Initial load
duke
parents:
diff changeset
534
a61af66fc99e Initial load
duke
parents:
diff changeset
535 abstract class GenericDebugConfig extends BuildConfig {
a61af66fc99e Initial load
duke
parents:
diff changeset
536 abstract String getOptFlag();
a61af66fc99e Initial load
duke
parents:
diff changeset
537
a61af66fc99e Initial load
duke
parents:
diff changeset
538 protected void init(Vector includes, Vector defines) {
a61af66fc99e Initial load
duke
parents:
diff changeset
539 defines.add("_DEBUG");
a61af66fc99e Initial load
duke
parents:
diff changeset
540 defines.add("ASSERT");
a61af66fc99e Initial load
duke
parents:
diff changeset
541
a61af66fc99e Initial load
duke
parents:
diff changeset
542 super.init(includes, defines);
a61af66fc99e Initial load
duke
parents:
diff changeset
543
a61af66fc99e Initial load
duke
parents:
diff changeset
544 getV("CompilerFlags").addAll(getCI().getDebugCompilerFlags(getOptFlag()));
a61af66fc99e Initial load
duke
parents:
diff changeset
545 getV("LinkerFlags").addAll(getCI().getDebugLinkerFlags());
a61af66fc99e Initial load
duke
parents:
diff changeset
546 }
a61af66fc99e Initial load
duke
parents:
diff changeset
547 }
a61af66fc99e Initial load
duke
parents:
diff changeset
548
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
549 abstract class GenericDebugNonKernelConfig extends GenericDebugConfig {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
550 protected void init(Vector includes, Vector defines) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
551 super.init(includes, defines);
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
552 getCI().getAdditionalNonKernelLinkerFlags(getV("LinkerFlags"));
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
553 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
554 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
555
4572
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
556 class GraalDebugConfig extends GenericDebugNonKernelConfig {
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
557 String getOptFlag() {
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
558 return getCI().getNoOptFlag();
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
559 }
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
560
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
561 GraalDebugConfig() {
21792
da7e30544879 Fix windows build for jvmci (JBS:GRAAL-52)
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18125
diff changeset
562 initNames("jvmci", "debug", "jvm.dll");
4572
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
563 init(getIncludes(), getDefines());
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
564 }
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
565 }
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
566
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
567 class GraalFastDebugConfig extends GenericDebugNonKernelConfig {
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
568 String getOptFlag() {
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
569 return getCI().getOptFlag();
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
570 }
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
571
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
572 GraalFastDebugConfig() {
21792
da7e30544879 Fix windows build for jvmci (JBS:GRAAL-52)
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18125
diff changeset
573 initNames("jvmci", "fastdebug", "jvm.dll");
4572
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
574 init(getIncludes(), getDefines());
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
575 }
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
576 }
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
577
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
578 class C1DebugConfig extends GenericDebugNonKernelConfig {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
579 String getOptFlag() {
a61af66fc99e Initial load
duke
parents:
diff changeset
580 return getCI().getNoOptFlag();
a61af66fc99e Initial load
duke
parents:
diff changeset
581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
582
a61af66fc99e Initial load
duke
parents:
diff changeset
583 C1DebugConfig() {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
584 initNames("compiler1", "debug", "jvm.dll");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
585 init(getIncludes(), getDefines());
a61af66fc99e Initial load
duke
parents:
diff changeset
586 }
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
588
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
589 class C1FastDebugConfig extends GenericDebugNonKernelConfig {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
590 String getOptFlag() {
a61af66fc99e Initial load
duke
parents:
diff changeset
591 return getCI().getOptFlag();
a61af66fc99e Initial load
duke
parents:
diff changeset
592 }
a61af66fc99e Initial load
duke
parents:
diff changeset
593
a61af66fc99e Initial load
duke
parents:
diff changeset
594 C1FastDebugConfig() {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
595 initNames("compiler1", "fastdebug", "jvm.dll");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
596 init(getIncludes(), getDefines());
a61af66fc99e Initial load
duke
parents:
diff changeset
597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
599
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
600 class C2DebugConfig extends GenericDebugNonKernelConfig {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
601 String getOptFlag() {
a61af66fc99e Initial load
duke
parents:
diff changeset
602 return getCI().getNoOptFlag();
a61af66fc99e Initial load
duke
parents:
diff changeset
603 }
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 C2DebugConfig() {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
606 initNames("compiler2", "debug", "jvm.dll");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
607 init(getIncludes(), getDefines());
a61af66fc99e Initial load
duke
parents:
diff changeset
608 }
a61af66fc99e Initial load
duke
parents:
diff changeset
609 }
a61af66fc99e Initial load
duke
parents:
diff changeset
610
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
611 class C2FastDebugConfig extends GenericDebugNonKernelConfig {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
612 String getOptFlag() {
a61af66fc99e Initial load
duke
parents:
diff changeset
613 return getCI().getOptFlag();
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615
a61af66fc99e Initial load
duke
parents:
diff changeset
616 C2FastDebugConfig() {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
617 initNames("compiler2", "fastdebug", "jvm.dll");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
618 init(getIncludes(), getDefines());
a61af66fc99e Initial load
duke
parents:
diff changeset
619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
621
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
622 class TieredDebugConfig extends GenericDebugNonKernelConfig {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
623 String getOptFlag() {
a61af66fc99e Initial load
duke
parents:
diff changeset
624 return getCI().getNoOptFlag();
a61af66fc99e Initial load
duke
parents:
diff changeset
625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 TieredDebugConfig() {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
628 initNames("tiered", "debug", "jvm.dll");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
629 init(getIncludes(), getDefines());
a61af66fc99e Initial load
duke
parents:
diff changeset
630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
631 }
a61af66fc99e Initial load
duke
parents:
diff changeset
632
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
633 class TieredFastDebugConfig extends GenericDebugNonKernelConfig {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
634 String getOptFlag() {
a61af66fc99e Initial load
duke
parents:
diff changeset
635 return getCI().getOptFlag();
a61af66fc99e Initial load
duke
parents:
diff changeset
636 }
a61af66fc99e Initial load
duke
parents:
diff changeset
637
a61af66fc99e Initial load
duke
parents:
diff changeset
638 TieredFastDebugConfig() {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
639 initNames("tiered", "fastdebug", "jvm.dll");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
640 init(getIncludes(), getDefines());
a61af66fc99e Initial load
duke
parents:
diff changeset
641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
643
a61af66fc99e Initial load
duke
parents:
diff changeset
644 abstract class ProductConfig extends BuildConfig {
a61af66fc99e Initial load
duke
parents:
diff changeset
645 protected void init(Vector includes, Vector defines) {
a61af66fc99e Initial load
duke
parents:
diff changeset
646 defines.add("NDEBUG");
a61af66fc99e Initial load
duke
parents:
diff changeset
647 defines.add("PRODUCT");
a61af66fc99e Initial load
duke
parents:
diff changeset
648
a61af66fc99e Initial load
duke
parents:
diff changeset
649 super.init(includes, defines);
a61af66fc99e Initial load
duke
parents:
diff changeset
650
a61af66fc99e Initial load
duke
parents:
diff changeset
651 getV("CompilerFlags").addAll(getCI().getProductCompilerFlags());
a61af66fc99e Initial load
duke
parents:
diff changeset
652 getV("LinkerFlags").addAll(getCI().getProductLinkerFlags());
a61af66fc99e Initial load
duke
parents:
diff changeset
653 }
a61af66fc99e Initial load
duke
parents:
diff changeset
654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
655
4572
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
656 class GraalProductConfig extends ProductConfig {
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
657 GraalProductConfig() {
21792
da7e30544879 Fix windows build for jvmci (JBS:GRAAL-52)
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18125
diff changeset
658 initNames("jvmci", "product", "jvm.dll");
4572
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
659 init(getIncludes(), getDefines());
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
660 }
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
661 }
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4475
diff changeset
662
0
a61af66fc99e Initial load
duke
parents:
diff changeset
663 class C1ProductConfig extends ProductConfig {
a61af66fc99e Initial load
duke
parents:
diff changeset
664 C1ProductConfig() {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
665 initNames("compiler1", "product", "jvm.dll");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
666 init(getIncludes(), getDefines());
a61af66fc99e Initial load
duke
parents:
diff changeset
667 }
a61af66fc99e Initial load
duke
parents:
diff changeset
668 }
a61af66fc99e Initial load
duke
parents:
diff changeset
669
a61af66fc99e Initial load
duke
parents:
diff changeset
670 class C2ProductConfig extends ProductConfig {
a61af66fc99e Initial load
duke
parents:
diff changeset
671 C2ProductConfig() {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
672 initNames("compiler2", "product", "jvm.dll");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
673 init(getIncludes(), getDefines());
a61af66fc99e Initial load
duke
parents:
diff changeset
674 }
a61af66fc99e Initial load
duke
parents:
diff changeset
675 }
a61af66fc99e Initial load
duke
parents:
diff changeset
676
a61af66fc99e Initial load
duke
parents:
diff changeset
677 class TieredProductConfig extends ProductConfig {
a61af66fc99e Initial load
duke
parents:
diff changeset
678 TieredProductConfig() {
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
679 initNames("tiered", "product", "jvm.dll");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
680 init(getIncludes(), getDefines());
a61af66fc99e Initial load
duke
parents:
diff changeset
681 }
a61af66fc99e Initial load
duke
parents:
diff changeset
682 }
a61af66fc99e Initial load
duke
parents:
diff changeset
683
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 4878
diff changeset
684
0
a61af66fc99e Initial load
duke
parents:
diff changeset
685 abstract class CompilerInterface {
a61af66fc99e Initial load
duke
parents:
diff changeset
686 abstract Vector getBaseCompilerFlags(Vector defines, Vector includes, String outDir);
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
687 abstract Vector getBaseLinkerFlags(String outDir, String outDll, String platformName);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
688 abstract Vector getDebugCompilerFlags(String opt);
a61af66fc99e Initial load
duke
parents:
diff changeset
689 abstract Vector getDebugLinkerFlags();
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
690 abstract void getAdditionalNonKernelLinkerFlags(Vector rv);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
691 abstract Vector getProductCompilerFlags();
a61af66fc99e Initial load
duke
parents:
diff changeset
692 abstract Vector getProductLinkerFlags();
a61af66fc99e Initial load
duke
parents:
diff changeset
693 abstract String getOptFlag();
a61af66fc99e Initial load
duke
parents:
diff changeset
694 abstract String getNoOptFlag();
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
695 abstract String makeCfgName(String flavourBuild, String platformName);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
696
a61af66fc99e Initial load
duke
parents:
diff changeset
697 void addAttr(Vector receiver, String attr, String value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
698 receiver.add(attr); receiver.add(value);
a61af66fc99e Initial load
duke
parents:
diff changeset
699 }
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
700 void extAttr(Vector receiver, String attr, String value) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
701 int attr_pos=receiver.indexOf(attr) ;
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
702 if ( attr_pos == -1) {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
703 // If attr IS NOT present in the Vector - add it
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
704 receiver.add(attr); receiver.add(value);
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
705 } else {
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
706 // If attr IS present in the Vector - append value to it
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
707 receiver.set(attr_pos+1,receiver.get(attr_pos+1)+value);
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
708 }
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
709 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
710 }