Skip to content

Commit fc2646b

Browse files
DamonFoolRealCLanger
authored andcommitted
8274329: Fix non-portable HotSpot code in MethodMatcher::parse_method_pattern
Reviewed-by: kvn Backport-of: c833b4d130fabfa6a6f3a38313f76eb7e392c6a5
1 parent aa5d5f3 commit fc2646b

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

src/hotspot/share/compiler/methodMatcher.cpp

+18-12
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,29 @@
4141
// 0x28 '(' and 0x29 ')' are used for the signature
4242
// 0x2e '.' is always replaced before the matching
4343
// 0x2f '/' is only used in the class name as package separator
44+
//
45+
// It seems hard to get Non-ASCII characters to work in all circumstances due
46+
// to limitations in Windows. So only ASCII characters are supported on Windows.
4447

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

65+
#define RANGEBASE RANGEBASE_ASCII NOT_WINDOWS(RANGEBASE_NON_ASCII)
66+
6167
#define RANGE0 "[*" RANGEBASE "]"
6268
#define RANGESLASH "[*" RANGEBASE "/]"
6369

@@ -164,6 +170,15 @@ bool MethodMatcher::canonicalize(char * line, const char *& error_msg) {
164170
if (*lp == ':') *lp = ' ';
165171
}
166172
if (*lp == ',' || *lp == '.') *lp = ' ';
173+
174+
#ifdef _WINDOWS
175+
// It seems hard to get Non-ASCII characters to work in all circumstances due
176+
// to limitations in Windows. So only ASCII characters are supported on Windows.
177+
if (!isascii(*lp)) {
178+
error_msg = "Non-ASCII characters are not supported on Windows.";
179+
return false;
180+
}
181+
#endif
167182
}
168183
return true;
169184
}
@@ -237,12 +252,6 @@ void skip_leading_spaces(char*& line, int* total_bytes_read ) {
237252
}
238253
}
239254

240-
#ifdef _MSC_VER
241-
#pragma warning(push)
242-
// warning C4189: The file contains a character that cannot be represented
243-
// in the current code page
244-
#pragma warning(disable : 4819)
245-
#endif
246255
void MethodMatcher::parse_method_pattern(char*& line, const char*& error_msg, MethodMatcher* matcher) {
247256
MethodMatcher::Mode c_match;
248257
MethodMatcher::Mode m_match;
@@ -312,9 +321,6 @@ void MethodMatcher::parse_method_pattern(char*& line, const char*& error_msg, Me
312321
error_msg = "Could not parse method pattern";
313322
}
314323
}
315-
#ifdef _MSC_VER
316-
#pragma warning(pop)
317-
#endif
318324

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

0 commit comments

Comments
 (0)