@@ -691,8 +691,8 @@ pointers to floats. Nor will it change the default display for Afloat and Bfloa
691
691
692
692
ConstString typeCS (arg_entry.ref );
693
693
if (m_command_options.m_regex ) {
694
- RegularExpressionSP typeRX (new RegularExpression ());
695
- if (!typeRX->Compile (arg_entry. ref )) {
694
+ RegularExpressionSP typeRX (new RegularExpression (arg_entry. ref ));
695
+ if (!typeRX->IsValid ( )) {
696
696
result.AppendError (
697
697
" regex format error (maybe this is not really a regex?)" );
698
698
result.SetStatus (eReturnStatusFailed);
@@ -1043,9 +1043,9 @@ class CommandObjectTypeFormatterList : public CommandObjectParsed {
1043
1043
std::unique_ptr<RegularExpression> formatter_regex;
1044
1044
1045
1045
if (m_options.m_category_regex .OptionWasSet ()) {
1046
- category_regex.reset (new RegularExpression ());
1047
- if (!category_regex-> Compile (
1048
- m_options. m_category_regex . GetCurrentValueAsRef () )) {
1046
+ category_regex.reset (new RegularExpression (
1047
+ m_options. m_category_regex . GetCurrentValueAsRef ()));
1048
+ if (!category_regex-> IsValid ( )) {
1049
1049
result.AppendErrorWithFormat (
1050
1050
" syntax error in category regular expression '%s'" ,
1051
1051
m_options.m_category_regex .GetCurrentValueAsRef ().str ().c_str ());
@@ -1056,8 +1056,9 @@ class CommandObjectTypeFormatterList : public CommandObjectParsed {
1056
1056
1057
1057
if (argc == 1 ) {
1058
1058
const char *arg = command.GetArgumentAtIndex (0 );
1059
- formatter_regex.reset (new RegularExpression ());
1060
- if (!formatter_regex->Compile (llvm::StringRef::withNullAsEmpty (arg))) {
1059
+ formatter_regex.reset (
1060
+ new RegularExpression (llvm::StringRef::withNullAsEmpty (arg)));
1061
+ if (!formatter_regex->IsValid ()) {
1061
1062
result.AppendErrorWithFormat (" syntax error in regular expression '%s'" ,
1062
1063
arg);
1063
1064
result.SetStatus (eReturnStatusFailed);
@@ -1629,8 +1630,8 @@ bool CommandObjectTypeSummaryAdd::AddSummary(ConstString type_name,
1629
1630
}
1630
1631
1631
1632
if (type == eRegexSummary) {
1632
- RegularExpressionSP typeRX (new RegularExpression ());
1633
- if (!typeRX->Compile (type_name. GetStringRef () )) {
1633
+ RegularExpressionSP typeRX (new RegularExpression (type_name. GetStringRef () ));
1634
+ if (!typeRX->IsValid ( )) {
1634
1635
if (error)
1635
1636
error->SetErrorString (
1636
1637
" regex format error (maybe this is not really a regex?)" );
@@ -2115,9 +2116,9 @@ class CommandObjectTypeCategoryList : public CommandObjectParsed {
2115
2116
std::unique_ptr<RegularExpression> regex;
2116
2117
2117
2118
if (argc == 1 ) {
2118
- regex.reset (new RegularExpression ());
2119
2119
const char *arg = command.GetArgumentAtIndex (0 );
2120
- if (!regex->Compile (llvm::StringRef::withNullAsEmpty (arg))) {
2120
+ regex.reset (new RegularExpression (llvm::StringRef::withNullAsEmpty (arg)));
2121
+ if (!regex->IsValid ()) {
2121
2122
result.AppendErrorWithFormat (
2122
2123
" syntax error in category regular expression '%s'" , arg);
2123
2124
result.SetStatus (eReturnStatusFailed);
@@ -2369,8 +2370,8 @@ bool CommandObjectTypeSynthAdd::AddSynth(ConstString type_name,
2369
2370
}
2370
2371
2371
2372
if (type == eRegexSynth) {
2372
- RegularExpressionSP typeRX (new RegularExpression ());
2373
- if (!typeRX->Compile (type_name. GetStringRef () )) {
2373
+ RegularExpressionSP typeRX (new RegularExpression (type_name. GetStringRef () ));
2374
+ if (!typeRX->IsValid ( )) {
2374
2375
if (error)
2375
2376
error->SetErrorString (
2376
2377
" regex format error (maybe this is not really a regex?)" );
@@ -2497,8 +2498,9 @@ class CommandObjectTypeFilterAdd : public CommandObjectParsed {
2497
2498
}
2498
2499
2499
2500
if (type == eRegexFilter) {
2500
- RegularExpressionSP typeRX (new RegularExpression ());
2501
- if (!typeRX->Compile (type_name.GetStringRef ())) {
2501
+ RegularExpressionSP typeRX (
2502
+ new RegularExpression (type_name.GetStringRef ()));
2503
+ if (!typeRX->IsValid ()) {
2502
2504
if (error)
2503
2505
error->SetErrorString (
2504
2506
" regex format error (maybe this is not really a regex?)" );
0 commit comments