comparison src/share/vm/jvmci/jvmciRuntime.hpp @ 21875:431b127fc0d1

Renaming of classes around jvmciOptions for clarity
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 09 Jun 2015 13:06:37 +0200
parents 7a7cf422160b
children 35affb9c707a
comparison
equal deleted inserted replaced
21874:f79218584d37 21875:431b127fc0d1
65 * Loads default option value overrides from a <jre_home>/lib/jvmci.options if it exists. Each 65 * Loads default option value overrides from a <jre_home>/lib/jvmci.options if it exists. Each
66 * line in this file must have the format of a JVMCI command line option without the 66 * line in this file must have the format of a JVMCI command line option without the
67 * leading "-G:" prefix. These option values are set prior to processing of any JVMCI 67 * leading "-G:" prefix. These option values are set prior to processing of any JVMCI
68 * options present on the command line. 68 * options present on the command line.
69 */ 69 */
70 static void parse_jvmci_options_file(OptionsValueTable* options); 70 static void parse_jvmci_options_file(OptionValuesTable* options);
71 71
72 static void print_flags_helper(TRAPS); 72 static void print_flags_helper(TRAPS);
73 73
74 /** 74 /**
75 * Instantiates a service object, calls its default constructor and returns it. 75 * Instantiates a service object, calls its default constructor and returns it.
82 82
83 /** 83 /**
84 * Parses the JVMCI specific VM options that were presented by the launcher and sets 84 * Parses the JVMCI specific VM options that were presented by the launcher and sets
85 * the relevants Java fields. 85 * the relevants Java fields.
86 */ 86 */
87 static OptionsValueTable* parse_arguments(); 87 static OptionValuesTable* parse_arguments();
88 88
89 static bool parse_argument(OptionsValueTable* options, const char* arg); 89 static bool parse_argument(OptionValuesTable* options, const char* arg);
90 90
91 static void set_options(OptionsValueTable* options, TRAPS); 91 static void set_options(OptionValuesTable* options, TRAPS);
92 92
93 /** 93 /**
94 * Ensures that the JVMCI class loader is initialized and the well known JVMCI classes are loaded. 94 * Ensures that the JVMCI class loader is initialized and the well known JVMCI classes are loaded.
95 */ 95 */
96 static void ensure_jvmci_class_loader_is_initialized(); 96 static void ensure_jvmci_class_loader_is_initialized();