src/share/vm/compiler/directivesParser.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/compiler

src/share/vm/compiler/directivesParser.hpp

Print this page
rev 10435 : 8150646: Add support for blocking compiles though whitebox API
Reviewed-by: kvn, ppunegov, simonis, neliasso
Contributed-by: nils.eliasson@oracle.com, volker.simonis@gmail.com
   1 /*
   2  * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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  *


  34   doubleFlag,
  35   ccstrFlag,
  36   ccstrlistFlag,
  37   UnknownFlagType
  38 };
  39 
  40 static const char* flag_type_names[] = {
  41     "bool",
  42     "int",
  43     "double",
  44     "string",
  45     "string list",
  46     "unknown"
  47 };
  48 
  49 class DirectivesParser : public JSON {
  50 public:
  51   static bool has_file();
  52   static bool parse_from_flag();
  53   static bool parse_from_file(const char* filename, outputStream* st);
  54   static bool parse_string(const char* string, outputStream* st);
  55   bool install_directives();
  56 
  57 private:
  58   DirectivesParser(const char* text, outputStream* st);
  59   ~DirectivesParser();
  60 
  61   bool callback(JSON_TYPE t, JSON_VAL* v, uint level);
  62   static bool parse_from_file_inner(const char* filename, outputStream* st);
  63 
  64   // types of "keys". i.e recognized <key>:<value> pairs in our JSON syntax
  65   typedef enum {
  66      type_c1,
  67      type_c2,
  68      type_enable,
  69      type_preset,
  70      type_match,
  71      type_inline,
  72 
  73      // After here, there is no correlation between
  74      // keytype and keys array
  75      //type_strategy,


   1 /*
   2  * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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  *


  34   doubleFlag,
  35   ccstrFlag,
  36   ccstrlistFlag,
  37   UnknownFlagType
  38 };
  39 
  40 static const char* flag_type_names[] = {
  41     "bool",
  42     "int",
  43     "double",
  44     "string",
  45     "string list",
  46     "unknown"
  47 };
  48 
  49 class DirectivesParser : public JSON {
  50 public:
  51   static bool has_file();
  52   static bool parse_from_flag();
  53   static bool parse_from_file(const char* filename, outputStream* st);
  54   static int  parse_string(const char* string, outputStream* st);
  55   int install_directives();
  56 
  57 private:
  58   DirectivesParser(const char* text, outputStream* st);
  59   ~DirectivesParser();
  60 
  61   bool callback(JSON_TYPE t, JSON_VAL* v, uint level);
  62   static bool parse_from_file_inner(const char* filename, outputStream* st);
  63 
  64   // types of "keys". i.e recognized <key>:<value> pairs in our JSON syntax
  65   typedef enum {
  66      type_c1,
  67      type_c2,
  68      type_enable,
  69      type_preset,
  70      type_match,
  71      type_inline,
  72 
  73      // After here, there is no correlation between
  74      // keytype and keys array
  75      //type_strategy,


src/share/vm/compiler/directivesParser.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File