Skip to content

Commit 8571ae4

Browse files
committed
8274329: Fix non-portable HotSpot code in MethodMatcher::parse_method_pattern
Backport-of: c833b4d130fabfa6a6f3a38313f76eb7e392c6a5
1 parent 4ce49e6 commit 8571ae4

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

src/hotspot/share/compiler/methodMatcher.cpp

+18-8
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,29 @@
4545
// 0x28 '(' and 0x29 ')' are used for the signature
4646
// 0x2e '.' is always replaced before the matching
4747
// 0x2f '/' is only used in the class name as package separator
48+
//
49+
// It seems hard to get Non-ASCII characters to work in all circumstances due
50+
// to limitations in Windows. So only ASCII characters are supported on Windows.
4851

49-
#define RANGEBASE "\x1\x2\x3\x4\x5\x6\x7\x8\xa\xb\xc\xd\xe\xf" \
52+
#define RANGEBASE_ASCII "\x1\x2\x3\x4\x5\x6\x7\x8\xa\xb\xc\xd\xe\xf" \
5053
"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" \
5154
"\x21\x22\x23\x24\x25\x26\x27\x2a\x2b\x2c\x2d" \
5255
"\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" \
5356
"\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" \
5457
"\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5c\x5e\x5f" \
5558
"\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" \
56-
"\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f" \
57-
"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" \
59+
"\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
60+
61+
#define RANGEBASE_NON_ASCII "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" \
5862
"\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f" \
5963
"\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf" \
6064
"\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" \
6165
"\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf" \
6266
"\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf" \
6367
"\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef"
6468

69+
#define RANGEBASE RANGEBASE_ASCII NOT_WINDOWS(RANGEBASE_NON_ASCII)
70+
6571
#define RANGE0 "[*" RANGEBASE "]"
6672
#define RANGESLASH "[*" RANGEBASE "/]"
6773

@@ -167,6 +173,15 @@ bool MethodMatcher::canonicalize(char * line, const char *& error_msg) {
167173
if (*lp == ':') *lp = ' ';
168174
}
169175
if (*lp == ',' || *lp == '.') *lp = ' ';
176+
177+
#ifdef _WINDOWS
178+
// It seems hard to get Non-ASCII characters to work in all circumstances due
179+
// to limitations in Windows. So only ASCII characters are supported on Windows.
180+
if (!isascii(*lp)) {
181+
error_msg = "Non-ASCII characters are not supported on Windows.";
182+
return false;
183+
}
184+
#endif
170185
}
171186
return true;
172187
}
@@ -240,10 +255,6 @@ void skip_leading_spaces(char*& line, int* total_bytes_read ) {
240255
}
241256
}
242257

243-
PRAGMA_DIAG_PUSH
244-
// warning C4189: The file contains a character that cannot be represented
245-
// in the current code page
246-
PRAGMA_DISABLE_MSVC_WARNING(4819)
247258
void MethodMatcher::parse_method_pattern(char*& line, const char*& error_msg, MethodMatcher* matcher) {
248259
MethodMatcher::Mode c_match;
249260
MethodMatcher::Mode m_match;
@@ -334,7 +345,6 @@ void MethodMatcher::parse_method_pattern(char*& line, const char*& error_msg, Me
334345
error_msg = "Could not parse method pattern";
335346
}
336347
}
337-
PRAGMA_DIAG_POP
338348

339349
bool MethodMatcher::matches(const methodHandle& method) const {
340350
Symbol* class_name = method->method_holder()->name();

0 commit comments

Comments
 (0)