|
| 1 | +2024-07-27 Roger Sayle < [email protected]> |
| 2 | + |
| 3 | + |
| 4 | + * match.pd (ctz (-X) => ctz (X)): New simplification. |
| 5 | + (ctz (abs (X)) => ctz (X)): Likewise. |
| 6 | + |
| 7 | +2024-07-27 Pan Li < [email protected]> |
| 8 | + |
| 9 | + * match.pd: Add case 9 and case 10 for .SAT_SUB when one |
| 10 | + of the op is IMM. |
| 11 | + |
| 12 | +2024-07-27 David Malcolm < [email protected]> |
| 13 | + |
| 14 | + PR middle-end/107941 |
| 15 | + * diagnostic-format-sarif.cc: Define INCLUDE_LIST and INCLUDE_MAP. |
| 16 | + (enum class location_relationship_kind): New. |
| 17 | + (diagnostic_artifact_role::scanned_file): New value. |
| 18 | + (class sarif_location_manager): New. |
| 19 | + (class sarif_result): Derive from sarif_location_manager rather |
| 20 | + than directly from sarif_object. |
| 21 | + (sarif_result::add_related_location): Convert to vfunc |
| 22 | + implementation. |
| 23 | + (sarif_location::m_relationships_map): New field. |
| 24 | + (class sarif_location_relationship): New. |
| 25 | + (class sarif_ice_notification): Derive from sarif_location_manager |
| 26 | + rather than directly from sarif_object. |
| 27 | + (sarif_builder::take_current_result): New. |
| 28 | + (sarif_builder::m_line_maps): New field. |
| 29 | + (sarif_builder::m_cur_group_result): Convert to std::unique_ptr. |
| 30 | + (sarif_artifact::add_role): Skip scanned_file. |
| 31 | + (get_artifact_role_string): Handle scanned_file. |
| 32 | + (sarif_location_manager::add_relationship_to_worklist): New. |
| 33 | + (sarif_location_manager::process_worklist): New. |
| 34 | + (sarif_location_manager::process_worklist_item): New. |
| 35 | + (sarif_result::on_nested_diagnostic): Pass *this to |
| 36 | + make_location_object. |
| 37 | + (sarif_location::lazily_add_id): New. |
| 38 | + (sarif_location::get_id): New. |
| 39 | + (get_string_for_location_relationship_kind): New. |
| 40 | + (sarif_location::lazily_add_relationship): New. |
| 41 | + (sarif_location::lazily_add_relationship_object): New. |
| 42 | + (sarif_location::lazily_add_relationships_array): New. |
| 43 | + (sarif_ice_notification::sarif_ice_notification): Fix overlong line. |
| 44 | + Pass *this to make_locations_arr. |
| 45 | + (sarif_ice_notification::add_related_location): New. |
| 46 | + (sarif_location_relationship::sarif_location_relationship): New. |
| 47 | + (sarif_location_relationship::get_target_id): New. |
| 48 | + (sarif_location_relationship::lazily_add_kind): New. |
| 49 | + (sarif_builder::sarif_builder): Add "line_maps" param and use it |
| 50 | + to initialize m_line_maps. |
| 51 | + (sarif_builder::end_diagnostic): Update for m_cur_group_result |
| 52 | + becoming a std::unique_ptr. Don't append to m_results_array yet. |
| 53 | + (sarif_builder::end_group): Append m_cur_group_result to |
| 54 | + m_results_array here, rather than in end_diagnostic. |
| 55 | + (sarif_builder::make_result_object): Pass result_obj to |
| 56 | + make_locations_arr and to make_code_flow_object. |
| 57 | + (sarif_builder::make_locations_arr): Add "loc_mgr" param and pass |
| 58 | + it to make_location_object. |
| 59 | + (sarif_builder::make_location_object): For two overloads, add |
| 60 | + "loc_mgr" param and call add_any_include_chain on the location. |
| 61 | + (sarif_builder::add_any_include_chain): New. |
| 62 | + (sarif_builder::make_location_object): New overload. |
| 63 | + (sarif_builder::make_code_flow_object): Add "result" param and |
| 64 | + pass it to make_thread_flow_location_object. |
| 65 | + (sarif_builder::make_thread_flow_location_object): Add "result" |
| 66 | + param and pass it to make_location_object. |
| 67 | + (sarif_builder::get_or_create_artifact): Handle scanned_file. |
| 68 | + (sarif_output_format::~sarif_output_format): Assert that there |
| 69 | + isn't a pending result. |
| 70 | + (sarif_output_format::sarif_output_format): Add "line_maps" param |
| 71 | + and pass it to m_builder's ctor. |
| 72 | + (sarif_stream_output_format::sarif_stream_output_format): Add |
| 73 | + "line_maps" param and pass it to base class ctor. |
| 74 | + (sarif_file_output_format::sarif_file_output_format): Likewise. |
| 75 | + (diagnostic_output_format_init_sarif_stderr): Pass "line_table" |
| 76 | + global to format. |
| 77 | + (diagnostic_output_format_init_sarif_file): Likewise. |
| 78 | + (diagnostic_output_format_init_sarif_stream): Likewise. |
| 79 | + (test_sarif_diagnostic_context::test_sarif_diagnostic_context): |
| 80 | + Likewise. |
| 81 | + (buffered_output_format::buffered_output_format): Likewise. |
| 82 | + (selftest::test_make_location_object): Likewise. |
| 83 | + (selftest::test_make_location_object): Create a sarif_result for |
| 84 | + use when calling make_location_object. |
| 85 | + * diagnostic.cc (diagnostic_context::finish): End any active |
| 86 | + diagnostic groups. |
| 87 | + (diagnostic_context::report_diagnostic): Assert that we're within |
| 88 | + a diagnostic group. |
| 89 | + * diagnostic.h (diagnostic_report_diagnostic): Add |
| 90 | + begin_group/end_group pair around call to |
| 91 | + diagnostic_context::report_diagnostic. |
| 92 | + * selftest-diagnostic.cc (test_diagnostic_context::report): Add |
| 93 | + begin_group/end_group pair around diagnostic_impl call. |
| 94 | + |
1 | 95 | 2024-07-26 Jeff Law < [email protected]>
|
2 | 96 |
|
3 | 97 | PR target/116085
|
|
0 commit comments