1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
/*
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package compiler.compilercontrol.share.scenario;
import compiler.compilercontrol.share.JSONFile;
import compiler.compilercontrol.share.method.MethodDescriptor;
import compiler.compilercontrol.share.method.MethodGenerator;
import compiler.compilercontrol.share.pool.PoolHelper;
import jdk.test.lib.util.Pair;
import java.lang.reflect.Executable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
import java.util.stream.Collectors;
/**
* Directive file and state builder class
*/
public class DirectiveBuilder implements StateBuilder<CompileCommand> {
private static final List<Pair<Executable, Callable<?>>> METHODS
= new PoolHelper().getAllMethods();
private final Map<Executable, State> stateMap = new HashMap<>();
private final String fileName;
private final Map<MethodDescriptor, List<CompileCommand>> matchBlocks
= new LinkedHashMap<>();
private final List<CompileCommand> inlines = new ArrayList<>();
private boolean isFileValid = true;
public DirectiveBuilder(String fileName) {
this.fileName = fileName;
}
@Override
public List<String> getOptions() {
List<String> options = new ArrayList<>();
if (!matchBlocks.isEmpty()) {
// add option only if there are any directive available
options.add("-XX:CompilerDirectivesFile=" + fileName);
}
return options;
}
@Override
public List<CompileCommand> getCompileCommands() {
return matchBlocks.keySet().stream()
// only method descriptor is required to check print_directives
.map(md -> new CompileCommand(null, md, null, null))
.collect(Collectors.toList());
}
@Override
public boolean isValid() {
// Invalid directives file makes VM exit with error code
return isFileValid;
}
@Override
public Map<Executable, State> getStates() {
writeDirectiveFile();
if (isFileValid) {
// Build states for each method according to match blocks
for (Pair<Executable, Callable<?>> pair : METHODS) {
State state = getState(pair);
if (state != null) {
stateMap.put(pair.first, state);
}
}
return stateMap;
} else {
// return empty map because invalid file doesn't change states
return new HashMap<>();
}
}
private void writeDirectiveFile() {
try (DirectiveWriter dirFile = new DirectiveWriter(fileName)) {
for (MethodDescriptor matchDescriptor : matchBlocks.keySet()) {
// Write match block with all options converted from commands
dirFile.match(matchDescriptor);
for (CompileCommand compileCommand :
matchBlocks.get(matchDescriptor)) {
handleCommand(dirFile, compileCommand);
}
if ("Inlinee.caller()".matches(matchDescriptor.getRegexp())
&& !inlines.isEmpty()) {
// Got a *.* match block, where inline would be written
writeInlines(dirFile);
inlines.clear();
}
dirFile.end(); // ends match block
}
/*
* Write inline directive in the end to the latest match block
* if we didn't do this before
* Inlinee caller methods should match this block only
*/
if (!inlines.isEmpty()) {
Pair<Executable, Callable<?>> pair = METHODS.get(0);
MethodDescriptor md = MethodGenerator.anyMatchDescriptor(
pair.first);
CompileCommand cc = new CompileCommand(Command.QUIET, md,
null, Scenario.Type.DIRECTIVE);
List<CompileCommand> commands = new ArrayList<>();
// Add appropriate "*.*" match block
commands.add(cc);
matchBlocks.put(md, commands);
// Add match block for this descriptor with inlines
dirFile.match(md);
writeInlines(dirFile);
dirFile.end();
}
if (!matchBlocks.isEmpty()) {
// terminates file
dirFile.end();
}
}
}
private State getState(Pair<Executable, Callable<?>> pair) {
State state = null;
MethodDescriptor execDesc = MethodGenerator.commandDescriptor(
pair.first);
boolean isMatchFound = false;
if (stateMap.containsKey(pair.first)) {
state = stateMap.get(pair.first);
}
for (MethodDescriptor matchDesc : matchBlocks.keySet()) {
if (execDesc.getCanonicalString().matches(matchDesc.getRegexp())) {
/*
* if executable matches regex
* then apply commands from this match to the state
*/
for (CompileCommand cc : matchBlocks.get(matchDesc)) {
if (state == null) {
state = new State();
}
if (!isMatchFound) {
// this is a first found match, apply all commands
state.apply(cc);
} else {
// apply only inline directives
switch (cc.command) {
case INLINE:
case DONTINLINE:
state.apply(cc);
break;
}
}
}
isMatchFound = true;
}
}
return state;
}
private void handleCommand(DirectiveWriter dirFile, CompileCommand cmd) {
Command command = cmd.command;
switch (command) {
case COMPILEONLY:
dirFile.excludeCompile(cmd.compiler, false);
break;
case EXCLUDE:
dirFile.excludeCompile(cmd.compiler, true);
break;
case QUIET:
/* there are no appropriate directive for this, just make
match be enabled */
case INLINE:
case DONTINLINE:
/* Inline commands will be written later.
Just make this match be enabled */
dirFile.emitCompiler(Scenario.Compiler.C1);
dirFile.option(DirectiveWriter.Option.ENABLE, true);
dirFile.end();
dirFile.emitCompiler(Scenario.Compiler.C2);
dirFile.option(DirectiveWriter.Option.ENABLE, true);
dirFile.end();
break;
case LOG:
dirFile.option(DirectiveWriter.Option.LOG, true);
break;
case PRINT:
dirFile.option(DirectiveWriter.Option.PRINT_ASSEMBLY, true);
break;
case NONEXISTENT:
dirFile.write(JSONFile.Element.PAIR, command.name);
dirFile.write(JSONFile.Element.OBJECT);
dirFile.write(JSONFile.Element.PAIR, command.name);
dirFile.write(JSONFile.Element.VALUE,
cmd.methodDescriptor.getString());
dirFile.end(); // ends object
break;
default:
throw new Error("TESTBUG: wrong command: " + command);
}
}
private void writeInlines(DirectiveWriter dirFile) {
List<String> c1Block = new ArrayList<>();
List<String> c2Block = new ArrayList<>();
List<String> allBlock = new ArrayList<>();
for (CompileCommand cc : inlines) {
String inlineMethodPattern;
switch (cc.command) {
case INLINE:
inlineMethodPattern = "+" + cc.methodDescriptor.getString();
break;
case DONTINLINE:
inlineMethodPattern = "-" + cc.methodDescriptor.getString();
break;
default:
throw new Error("TESTBUG: incorrect command got in "
+ "the list: " + cc.command);
}
if (cc.compiler == Scenario.Compiler.C1) {
c1Block.add(inlineMethodPattern);
} else if (cc.compiler == Scenario.Compiler.C2) {
c2Block.add(inlineMethodPattern);
} else {
allBlock.add(inlineMethodPattern);
}
}
dirFile.emitCompiler(Scenario.Compiler.C1);
if (!c1Block.isEmpty()) {
dirFile.inline(c1Block);
} else {
dirFile.option(DirectiveWriter.Option.ENABLE, true);
}
dirFile.end();
dirFile.emitCompiler(Scenario.Compiler.C2);
if (!c2Block.isEmpty()) {
dirFile.inline(c2Block);
} else {
dirFile.option(DirectiveWriter.Option.ENABLE, true);
}
dirFile.end();
if (!allBlock.isEmpty()) {
dirFile.inline(allBlock);
}
}
@Override
public void add(CompileCommand compileCommand) {
isFileValid &= compileCommand.isValid();
MethodDescriptor methodDescriptor = compileCommand.methodDescriptor;
switch (compileCommand.command) {
case INLINE:
case DONTINLINE:
inlines.add(compileCommand);
break;
}
for (MethodDescriptor md: matchBlocks.keySet()) {
if (methodDescriptor.getCanonicalString().matches(md.getRegexp())) {
matchBlocks.get(md).add(compileCommand);
}
}
if (!matchBlocks.containsKey(compileCommand.methodDescriptor)) {
List<CompileCommand> commands = new ArrayList<>();
commands.add(compileCommand);
matchBlocks.put(compileCommand.methodDescriptor, commands);
}
}
}
|