< prev index next >

test/compiler/compilercontrol/share/scenario/DirectiveBuilder.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package compiler.compilercontrol.share.scenario;
  25 
  26 import compiler.compilercontrol.share.JSONFile;
  27 import compiler.compilercontrol.share.method.MethodDescriptor;
  28 import compiler.compilercontrol.share.method.MethodGenerator;
  29 import compiler.compilercontrol.share.pool.PoolHelper;
  30 import jdk.test.lib.Pair;
  31 
  32 import java.lang.reflect.Executable;
  33 import java.util.ArrayList;
  34 import java.util.HashMap;
  35 import java.util.LinkedHashMap;
  36 import java.util.List;
  37 import java.util.Map;
  38 import java.util.concurrent.Callable;
  39 import java.util.stream.Collectors;
  40 
  41 /**
  42  * Directive file and state builder class
  43  */
  44 public class DirectiveBuilder implements StateBuilder<CompileCommand> {
  45     private static final List<Pair<Executable, Callable<?>>> METHODS
  46             = new PoolHelper().getAllMethods();
  47     private final Map<Executable, State> stateMap = new HashMap<>();
  48     private final String fileName;
  49     private final Map<MethodDescriptor, List<CompileCommand>> matchBlocks
  50             = new LinkedHashMap<>();




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package compiler.compilercontrol.share.scenario;
  25 
  26 import compiler.compilercontrol.share.JSONFile;
  27 import compiler.compilercontrol.share.method.MethodDescriptor;
  28 import compiler.compilercontrol.share.method.MethodGenerator;
  29 import compiler.compilercontrol.share.pool.PoolHelper;
  30 import jdk.test.lib.util.Pair;
  31 
  32 import java.lang.reflect.Executable;
  33 import java.util.ArrayList;
  34 import java.util.HashMap;
  35 import java.util.LinkedHashMap;
  36 import java.util.List;
  37 import java.util.Map;
  38 import java.util.concurrent.Callable;
  39 import java.util.stream.Collectors;
  40 
  41 /**
  42  * Directive file and state builder class
  43  */
  44 public class DirectiveBuilder implements StateBuilder<CompileCommand> {
  45     private static final List<Pair<Executable, Callable<?>>> METHODS
  46             = new PoolHelper().getAllMethods();
  47     private final Map<Executable, State> stateMap = new HashMap<>();
  48     private final String fileName;
  49     private final Map<MethodDescriptor, List<CompileCommand>> matchBlocks
  50             = new LinkedHashMap<>();


< prev index next >