src/share/vm/compiler/compilerOracle.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/compiler/compilerOracle.cpp

src/share/vm/compiler/compilerOracle.cpp

Print this page

        

*** 103,113 **** void print_base() { print_symbol(class_name(), _class_mode); tty->print("."); print_symbol(method_name(), _method_mode); if (signature() != NULL) { - tty->print(" "); signature()->print_symbol_on(tty); } } virtual void print() { --- 103,112 ----
*** 490,511 **** tty->print_cr(" compileonly java/lang/StringBuffer.toString ()Ljava/lang/String;"); tty->print_cr(" exclude java/lang/String*.*"); tty->print_cr(" exclude *.toString"); } ! ! // The characters allowed in a class or method name. All characters > 0x7f ! // are allowed in order to handle obfuscated class files (e.g. Volano) ! #define RANGEBASE "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789$_<>" \ "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" \ "\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" \ "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf" \ "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" \ "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" \ "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" \ ! "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef" \ ! "\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff" #define RANGE0 "[*" RANGEBASE "]" #define RANGESLASH "[*" RANGEBASE "/]" static MethodMatcher::Mode check_mode(char name[], const char*& error_msg) { --- 489,527 ---- tty->print_cr(" compileonly java/lang/StringBuffer.toString ()Ljava/lang/String;"); tty->print_cr(" exclude java/lang/String*.*"); tty->print_cr(" exclude *.toString"); } ! // The characters allowed is based on the JVM specification. ! // Some tokens disallowed in the JVMS have some meaning ! // when parsing so we need to include them here. ! // The parser do not enforce all rules of the JVMS - a successful parse ! // does not mean that it is an allowed name. Illegal names will simply ! // be ignored since they never can match a class or method. ! // ! // '\0' and 0xf0-0xff are disallowed in constant string values ! // 0x20 ' ', 0x09 '\t' are used in the matching ! // 0x5b '[' and 0x5d ']' can not be used by the matcher ! // 0x28 '(' and 0x29 ')' are used for the signature ! // 0x2e '.' is always replaced before the matching ! // 0x2f '/' is only used in the class name (package separator) ! ! #define RANGEBASE "\x1\x2\x3\x4\x5\x6\x7\x8\xa\xb\xc\xd\xe\xf" \ ! "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" \ ! "\x21\x22\x23\x24\x25\x26\x27\x2a\x2b\x2c\x2d" \ ! "\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" \ ! "\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" \ ! "\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5c\x5e\x5f" \ ! "\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" \ ! "\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" \ "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" \ "\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" \ "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf" \ "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" \ "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" \ "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" \ ! "\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef" #define RANGE0 "[*" RANGEBASE "]" #define RANGESLASH "[*" RANGEBASE "/]" static MethodMatcher::Mode check_mode(char name[], const char*& error_msg) {
*** 679,689 **** line += bytes_read; ResourceMark rm; if (command == UnknownCommand) { ttyLocker ttyl; ! tty->print_cr("CompilerOracle: unrecognized line"); tty->print_cr(" \"%s\"", original_line); return; } if (command == QuietCommand) { --- 695,705 ---- line += bytes_read; ResourceMark rm; if (command == UnknownCommand) { ttyLocker ttyl; ! tty->print_cr("CompileCommand: unrecognized command"); tty->print_cr(" \"%s\"", original_line); return; } if (command == QuietCommand) {
*** 710,722 **** Symbol* c_name = SymbolTable::new_symbol(class_name, CHECK); Symbol* m_name = SymbolTable::new_symbol(method_name, CHECK); Symbol* signature = NULL; line += bytes_read; // there might be a signature following the method. // signatures always begin with ( so match that by hand ! if (1 == sscanf(line, "%*[ \t](%254[[);/" RANGEBASE "]%n", sig + 1, &bytes_read)) { sig[0] = '('; line += bytes_read; signature = SymbolTable::new_symbol(sig, CHECK); } --- 726,746 ---- Symbol* c_name = SymbolTable::new_symbol(class_name, CHECK); Symbol* m_name = SymbolTable::new_symbol(method_name, CHECK); Symbol* signature = NULL; line += bytes_read; + + // Skip any leading spaces before signature + int whitespace_read = 0; + sscanf(line, "%*[ \t]%n", &whitespace_read); + if (whitespace_read > 0) { + line += whitespace_read; + } + // there might be a signature following the method. // signatures always begin with ( so match that by hand ! if (1 == sscanf(line, "(%254[[);/" RANGEBASE "]%n", sig + 1, &bytes_read)) { sig[0] = '('; line += bytes_read; signature = SymbolTable::new_symbol(sig, CHECK); }
*** 738,748 **** char option[256]; // stores flag for Type (1) and type of Type (2) while (sscanf(line, "%*[ \t]%255[a-zA-Z0-9]%n", option, &bytes_read) == 1) { if (match != NULL && !_quiet) { // Print out the last match added ttyLocker ttyl; ! tty->print("CompilerOracle: %s ", command_names[command]); match->print(); } line += bytes_read; if (strcmp(option, "intx") == 0 --- 762,772 ---- char option[256]; // stores flag for Type (1) and type of Type (2) while (sscanf(line, "%*[ \t]%255[a-zA-Z0-9]%n", option, &bytes_read) == 1) { if (match != NULL && !_quiet) { // Print out the last match added ttyLocker ttyl; ! tty->print("CompileCommand: %s ", command_names[command]); match->print(); } line += bytes_read; if (strcmp(option, "intx") == 0
*** 773,797 **** } ttyLocker ttyl; if (error_msg != NULL) { // an error has happened ! tty->print_cr("CompilerOracle: unrecognized line"); tty->print_cr(" \"%s\"", original_line); if (error_msg != NULL) { tty->print_cr("%s", error_msg); } } else { // check for remaining characters bytes_read = 0; sscanf(line, "%*[ \t]%n", &bytes_read); if (line[bytes_read] != '\0') { ! tty->print_cr("CompilerOracle: unrecognized line"); tty->print_cr(" \"%s\"", original_line); tty->print_cr(" Unrecognized text %s after command ", line); } else if (match != NULL && !_quiet) { ! tty->print("CompilerOracle: %s ", command_names[command]); match->print(); } } } --- 797,821 ---- } ttyLocker ttyl; if (error_msg != NULL) { // an error has happened ! tty->print_cr("CompileCommand: An error occured during parsing"); tty->print_cr(" \"%s\"", original_line); if (error_msg != NULL) { tty->print_cr("%s", error_msg); } } else { // check for remaining characters bytes_read = 0; sscanf(line, "%*[ \t]%n", &bytes_read); if (line[bytes_read] != '\0') { ! tty->print_cr("CompileCommand: Bad pattern"); tty->print_cr(" \"%s\"", original_line); tty->print_cr(" Unrecognized text %s after command ", line); } else if (match != NULL && !_quiet) { ! tty->print("CompileCommand: %s ", command_names[command]); match->print(); } } }
src/share/vm/compiler/compilerOracle.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File