Skip to content

Commit 3979171

Browse files
author
GCC Administrator
committed
Daily bump.
1 parent f64448f commit 3979171

File tree

5 files changed

+144
-1
lines changed

5 files changed

+144
-1
lines changed

gcc/ChangeLog

+66
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,69 @@
1+
2024-01-27 H.J. Lu <[email protected]>
2+
3+
PR target/38534
4+
* config/i386/i386-options.cc (ix86_set_func_type): Don't
5+
save and restore callee saved registers for a noreturn function
6+
with nothrow or compiled with -fno-exceptions.
7+
8+
2024-01-27 H.J. Lu <[email protected]>
9+
10+
PR target/103503
11+
PR target/113312
12+
* config/i386/i386-expand.cc (ix86_expand_call): Replace
13+
no_caller_saved_registers check with call_saved_registers check.
14+
Clobber all registers that are not used by the callee with
15+
no_callee_saved_registers attribute.
16+
* config/i386/i386-options.cc (ix86_set_func_type): Set
17+
call_saved_registers to TYPE_NO_CALLEE_SAVED_REGISTERS for
18+
noreturn function. Disallow no_callee_saved_registers with
19+
interrupt or no_caller_saved_registers attributes together.
20+
(ix86_set_current_function): Replace no_caller_saved_registers
21+
check with call_saved_registers check.
22+
(ix86_handle_no_caller_saved_registers_attribute): Renamed to ...
23+
(ix86_handle_call_saved_registers_attribute): This.
24+
(ix86_gnu_attributes): Add
25+
ix86_handle_call_saved_registers_attribute.
26+
* config/i386/i386.cc (ix86_conditional_register_usage): Replace
27+
no_caller_saved_registers check with call_saved_registers check.
28+
(ix86_function_ok_for_sibcall): Don't allow callee with
29+
no_callee_saved_registers attribute when the calling function
30+
has callee-saved registers.
31+
(ix86_comp_type_attributes): Also check
32+
no_callee_saved_registers.
33+
(ix86_epilogue_uses): Replace no_caller_saved_registers check
34+
with call_saved_registers check.
35+
(ix86_hard_regno_scratch_ok): Likewise.
36+
(ix86_save_reg): Replace no_caller_saved_registers check with
37+
call_saved_registers check. Don't save any registers for
38+
TYPE_NO_CALLEE_SAVED_REGISTERS. Save all registers with
39+
TYPE_DEFAULT_CALL_SAVED_REGISTERS if function with
40+
no_callee_saved_registers attribute is called.
41+
(find_drap_reg): Replace no_caller_saved_registers check with
42+
call_saved_registers check.
43+
* config/i386/i386.h (call_saved_registers_type): New enum.
44+
(machine_function): Replace no_caller_saved_registers with
45+
call_saved_registers.
46+
* doc/extend.texi: Document no_callee_saved_registers attribute.
47+
48+
2024-01-27 Jakub Jelinek <[email protected]>
49+
50+
PR tree-optimization/113614
51+
* gimple-lower-bitint.cc (gimple_lower_bitint): Don't merge
52+
widening casts from signed to unsigned types with TRUNC_DIV_EXPR,
53+
TRUNC_MOD_EXPR or FLOAT_EXPR uses.
54+
55+
2024-01-27 Jakub Jelinek <[email protected]>
56+
57+
PR tree-optimization/113568
58+
* gimple-lower-bitint.cc (bitint_large_huge::lower_mergeable_stmt):
59+
For VIEW_CONVERT_EXPR use first operand of rhs1 instead of rhs1
60+
in the widening extension checks.
61+
62+
2024-01-27 Jakub Jelinek <[email protected]>
63+
64+
* gimple-lower-bitint.cc (gimple_lower_bitint): For
65+
TDF_DETAILS dump mapping of SSA_NAMEs to decls.
66+
167
2024-01-26 Hans-Peter Nilsson <[email protected]>
268

369
* cgraphunit.cc (process_function_and_variable_attributes): Tweak

gcc/DATESTAMP

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20240127
1+
20240128

gcc/c-family/ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2024-01-27 Lewis Hyatt <[email protected]>
2+
3+
PR preprocessor/105608
4+
* c-pch.cc (c_common_read_pch): Start a new line map before asking
5+
libcpp to restore macros defined prior to reading the PCH, instead
6+
of afterward.
7+
18
2024-01-23 Jakub Jelinek <[email protected]>
29

310
PR c/113518

gcc/fortran/ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2024-01-27 Harald Anlauf <[email protected]>
2+
3+
PR fortran/104908
4+
* trans-array.cc (gfc_conv_array_ref): Restrict use of transformed
5+
descriptor (sym->backend_decl) to the unlimited polymorphic case.
6+
17
2024-01-24 Harald Anlauf <[email protected]>
28

39
PR fortran/113377

gcc/testsuite/ChangeLog

+64
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,67 @@
1+
2024-01-27 Jose E. Marchesi <[email protected]>
2+
3+
* gcc.target/bpf/helper-skb-ancestor-cgroup-id.c: Add constant
4+
version of kernel helper static pointer.
5+
6+
2024-01-27 Harald Anlauf <[email protected]>
7+
8+
PR fortran/104908
9+
* gfortran.dg/pr104908.f90: New test.
10+
11+
2024-01-27 H.J. Lu <[email protected]>
12+
13+
PR target/38534
14+
* gcc.target/i386/pr38534-1.c: New file.
15+
* gcc.target/i386/pr38534-2.c: Likewise.
16+
* gcc.target/i386/pr38534-3.c: Likewise.
17+
* gcc.target/i386/pr38534-4.c: Likewise.
18+
* gcc.target/i386/stack-check-17.c: Updated.
19+
20+
2024-01-27 H.J. Lu <[email protected]>
21+
22+
PR target/103503
23+
PR target/113312
24+
* gcc.dg/torture/no-callee-saved-run-1a.c: New file.
25+
* gcc.dg/torture/no-callee-saved-run-1b.c: Likewise.
26+
* gcc.target/i386/no-callee-saved-1.c: Likewise.
27+
* gcc.target/i386/no-callee-saved-2.c: Likewise.
28+
* gcc.target/i386/no-callee-saved-3.c: Likewise.
29+
* gcc.target/i386/no-callee-saved-4.c: Likewise.
30+
* gcc.target/i386/no-callee-saved-5.c: Likewise.
31+
* gcc.target/i386/no-callee-saved-6.c: Likewise.
32+
* gcc.target/i386/no-callee-saved-7.c: Likewise.
33+
* gcc.target/i386/no-callee-saved-8.c: Likewise.
34+
* gcc.target/i386/no-callee-saved-9.c: Likewise.
35+
* gcc.target/i386/no-callee-saved-10.c: Likewise.
36+
* gcc.target/i386/no-callee-saved-11.c: Likewise.
37+
* gcc.target/i386/no-callee-saved-12.c: Likewise.
38+
* gcc.target/i386/no-callee-saved-13.c: Likewise.
39+
* gcc.target/i386/no-callee-saved-14.c: Likewise.
40+
* gcc.target/i386/no-callee-saved-15.c: Likewise.
41+
* gcc.target/i386/no-callee-saved-16.c: Likewise.
42+
* gcc.target/i386/no-callee-saved-17.c: Likewise.
43+
* gcc.target/i386/no-callee-saved-18.c: Likewise.
44+
45+
2024-01-27 Jakub Jelinek <[email protected]>
46+
47+
PR tree-optimization/113614
48+
* gcc.dg/torture/bitint-54.c: New test.
49+
50+
2024-01-27 Jakub Jelinek <[email protected]>
51+
52+
PR tree-optimization/113568
53+
* gcc.dg/bitint-78.c: New test.
54+
55+
2024-01-27 Lewis Hyatt <[email protected]>
56+
57+
PR preprocessor/105608
58+
* g++.dg/pch/line-map-1.C: New test.
59+
* g++.dg/pch/line-map-1.Hs: New test.
60+
* g++.dg/pch/line-map-2.C: New test.
61+
* g++.dg/pch/line-map-2.Hs: New test.
62+
* g++.dg/pch/line-map-3.C: New test.
63+
* g++.dg/pch/line-map-3.Hs: New test.
64+
165
2024-01-26 Hans-Peter Nilsson <[email protected]>
266

367
* g++.dg/Wattributes-3.C: Adjust expected warning.

0 commit comments

Comments
 (0)