Searched refs:error_msg (Results 1 - 16 of 16) sorted by relevance

/openjdk10/hotspot/src/share/vm/compiler/
H A DmethodMatcher.cpp94 bool MethodMatcher::canonicalize(char * line, const char *& error_msg) { argument
101 error_msg = "Method pattern only allows one '::' allowed";
115 error_msg = "Method pattern uses '/' together with '::'";
136 error_msg = "Method pattern uses mixed '/' and '.' package separators";
141 error_msg = "Method pattern uses multiple '.' in pattern";
202 static MethodMatcher::Mode check_mode(char name[], const char*& error_msg) { argument
219 error_msg = "** Not a valid pattern";
224 error_msg = " Embedded * not allowed";
240 void MethodMatcher::parse_method_pattern(char*& line, const char*& error_msg, MethodMatcher* matcher) { argument
249 assert(error_msg
346 parse_method_pattern(char* line, const char*& error_msg) argument
384 parse_method_pattern(char* line, const char*& error_msg) argument
404 parse_inline_pattern(char* str, const char*& error_msg) argument
[all...]
H A DmethodMatcher.hpp61 static void parse_method_pattern(char*& line, const char*& error_msg, MethodMatcher* m);
67 static bool canonicalize(char * line, const char *& error_msg);
84 static BasicMatcher* parse_method_pattern(char* line, const char*& error_msg);
115 static InlineMatcher* parse_method_pattern(char* line, const char*& error_msg);
122 static InlineMatcher* parse_inline_pattern(char* line, const char*& error_msg);
H A DcompilerOracle.hpp38 static void print_parse_error(const char*& error_msg, char* original_line);
H A DdirectivesParser.cpp381 const char* error_msg = NULL; local
382 if (!current_directive->add_match(s, error_msg)) {
383 assert (error_msg != NULL, "Must have valid error message");
384 error(VALUE_ERROR, "Method pattern error: %s", error_msg);
401 const char* error_msg = NULL; local
403 if (current_directive->_c1_store->parse_and_add_inline(s, error_msg)) {
404 if (!current_directive->_c2_store->parse_and_add_inline(s, error_msg)) {
405 assert (error_msg != NULL, "Must have valid error message");
406 error(VALUE_ERROR, "Method pattern error: %s", error_msg);
409 assert (error_msg !
[all...]
H A DcompilerDirectives.cpp139 bool CompilerDirectives::add_match(char* str, const char*& error_msg) { argument
140 BasicMatcher* bm = BasicMatcher::parse_method_pattern(str, error_msg);
142 assert(error_msg != NULL, "Must have error message");
347 bool DirectiveSet::parse_and_add_inline(char* str, const char*& error_msg) { argument
348 InlineMatcher* m = InlineMatcher::parse_inline_pattern(str, error_msg);
354 assert(error_msg != NULL, "Error message must be set");
442 const char* error_msg = NULL; local
443 _default_directives->add_match(str, error_msg);
452 assert(error_msg == NULL, "Must succeed.");
H A DcompilerOracle.cpp134 static TypedMethodOptionMatcher* parse_method_pattern(char*& line, const char*& error_msg);
253 TypedMethodOptionMatcher* TypedMethodOptionMatcher::parse_method_pattern(char*& line, const char*& error_msg) { argument
254 assert(error_msg == NULL, "Dont call here with error_msg already set");
256 MethodMatcher::parse_method_pattern(line, error_msg, tom);
257 if (error_msg != NULL) {
442 // On failure, error_msg contains description for the first error.
443 // For future extensions: set error_msg on first error.
553 void CompilerOracle::print_parse_error(const char*& error_msg, char* original_line) { argument
554 assert(error_msg !
591 const char* error_msg = NULL; local
[all...]
H A DcompilerDirectives.hpp107 bool parse_and_add_inline(char* str, const char*& error_msg);
175 bool add_match(char* str, const char*& error_msg);
/openjdk10/hotspot/src/share/vm/utilities/
H A Ddebug.hpp137 void report_vm_error(const char* file, int line, const char* error_msg);
140 void report_vm_error(const char* file, int line, const char* error_msg,
147 void report_vm_error(const char* file, int line, const char* error_msg,
153 void report_vm_status_error(const char* file, int line, const char* error_msg,
H A Djson.hpp101 int expect_any(const char* valid_chars, const char* error_msg, JSON_ERROR e = SYNTAX_ERROR);
102 bool expect_string(const char* expected_string, const char* error_msg = "", JSON_ERROR e = SYNTAX_ERROR);
H A Djson.cpp448 int JSON::expect_any(const char* valid_chars, const char* error_msg, JSON_ERROR e) { argument
457 error(e, "Got EOS when expecting %s (%s\'%s\').", error_msg, len > 1 ? "one of " : "", valid_chars);
465 error(e, "Expected %s (%s\'%s\').", error_msg, len > 1 ? "one of " : "", valid_chars);
475 bool JSON::expect_string(const char* expected_string, const char* error_msg, JSON_ERROR e) { argument
491 error(e, "EOS encountered when expecting %s (\"%s\")", error_msg, expected_string);
494 error(e, "Expected \"%s\" (%s)", expected_string, error_msg);
H A Ddebug.cpp204 void report_vm_error(const char* file, int line, const char* error_msg) argument
206 report_vm_error(file, line, error_msg, "%s", "");
209 void report_vm_error(const char* file, int line, const char* error_msg, const char* detail_fmt, ...) argument
214 VMError::report_and_die(Thread::current_or_null(), file, line, error_msg, detail_fmt, detail_args); local
218 void report_vm_status_error(const char* file, int line, const char* error_msg, argument
220 report_vm_error(file, line, error_msg, "error %s(%d), %s", os::errno_name(status), status, detail);
/openjdk10/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp892 char* error_msg = NULL; local
898 zip = (*ZipOpen)(canonical_path, &error_msg);
900 if (zip != NULL && error_msg == NULL) {
904 if (error_msg == NULL) {
908 int len = (int)(strlen(path) + strlen(error_msg) + 128);
910 jio_snprintf(msg, len - 1, "error in opening JAR file <%s> %s", error_msg, path);
940 char* error_msg = NULL; local
947 zip = (*ZipOpen)(canonical_path, &error_msg);
949 if (zip != NULL && error_msg == NULL) {
/openjdk10/hotspot/src/share/vm/prims/
H A Dwhitebox.cpp873 const char* error_msg = NULL; variable
875 InlineMatcher* m = InlineMatcher::parse_inline_pattern(method_str, error_msg);
878 assert(error_msg != NULL, "Always have an error message");
879 tty->print_cr("Got error: %s", error_msg);
905 const char* error_msg = NULL; variable
907 BasicMatcher* m = BasicMatcher::parse_method_pattern(method_str, error_msg);
909 assert(error_msg != NULL, "Must have error_msg");
910 tty->print_cr("Got error: %s", error_msg);
/openjdk10/hotspot/src/share/vm/jvmci/
H A DjvmciRuntime.cpp499 const char *error_msg = where == 0L ? "<internal JVMCI error>" : (char*) (address) where; variable
506 report_vm_error(__FILE__, __LINE__, error_msg, "%s", detail_msg);
508 report_vm_error(__FILE__, __LINE__, error_msg);
/openjdk10/hotspot/src/share/vm/services/
H A Dmanagement.cpp1602 FormatBuffer<80> error_msg("%s", "");
1603 int succeed = WriteableFlags::set_flag(name, new_value, Flag::MANAGEMENT, error_msg);
1612 error_msg.buffer());
/openjdk10/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_64.cpp1017 error_msg = 17 * wordSize enumerator in enum:StubGenerator::__anon193
1076 __ movptr(c_rarg0, Address(rsp, error_msg)); // pass address of error message

Completed in 269 milliseconds