< prev index next >

test/compiler/compilercontrol/share/processors/PrintDirectivesProcessor.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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.processors;
  25 
  26 import compiler.compilercontrol.share.method.MethodDescriptor;
  27 import compiler.compilercontrol.share.scenario.CompileCommand;
  28 import jdk.test.lib.Asserts;
  29 import jdk.test.lib.OutputAnalyzer;
  30 
  31 import java.util.ArrayList;
  32 import java.util.Iterator;
  33 import java.util.List;
  34 import java.util.function.Consumer;
  35 import java.util.regex.Matcher;
  36 import java.util.regex.Pattern;
  37 import java.util.stream.Collectors;
  38 
  39 public class PrintDirectivesProcessor
  40         implements Consumer<List<OutputAnalyzer>> {
  41     private final List<CompileCommand> commands;
  42     private static final Pattern MATCH_PATTERN
  43             = Pattern.compile(" matching: (.*)");
  44 
  45     public PrintDirectivesProcessor(List<CompileCommand> commands) {
  46         this.commands = commands;
  47     }
  48 
  49     @Override




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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.processors;
  25 
  26 import compiler.compilercontrol.share.method.MethodDescriptor;
  27 import compiler.compilercontrol.share.scenario.CompileCommand;
  28 import jdk.test.lib.Asserts;
  29 import jdk.test.lib.process.OutputAnalyzer;
  30 
  31 import java.util.ArrayList;
  32 import java.util.Iterator;
  33 import java.util.List;
  34 import java.util.function.Consumer;
  35 import java.util.regex.Matcher;
  36 import java.util.regex.Pattern;
  37 import java.util.stream.Collectors;
  38 
  39 public class PrintDirectivesProcessor
  40         implements Consumer<List<OutputAnalyzer>> {
  41     private final List<CompileCommand> commands;
  42     private static final Pattern MATCH_PATTERN
  43             = Pattern.compile(" matching: (.*)");
  44 
  45     public PrintDirectivesProcessor(List<CompileCommand> commands) {
  46         this.commands = commands;
  47     }
  48 
  49     @Override


< prev index next >