[PATCH] D40712: [Driver] Add flag enabling the function stack size section that was added in r319430

2018-01-08 Thread Sean Eveson via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. seaneveson marked an inline comment as done. Closed by commit rL321992: [Driver] Add flag enabling the function stack size section that was added in… (authored by seaneveson, committed by ). Changed prior to commit:

[PATCH] D40712: [Driver] Add flag enabling the function stack size section that was added in r319430

2018-01-05 Thread Sean Eveson via Phabricator via cfe-commits
seaneveson updated this revision to Diff 128745. seaneveson added a comment. Thanks Bruno, Changed the default for cc1 to be false regardless of the target. The default in the driver is still true for PS4 (only). https://reviews.llvm.org/D40712 Files: include/clang/Driver/Options.td

[PATCH] D40712: [Driver] Add flag enabling the function stack size section that was added in r319430

2018-01-02 Thread Sean Eveson via Phabricator via cfe-commits
seaneveson added a comment. Ping. https://reviews.llvm.org/D40712 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[PATCH] D40712: [Driver] Add flag enabling the function stack size section that was added in r319430

2017-12-13 Thread Sean Eveson via Phabricator via cfe-commits
seaneveson marked an inline comment as done. seaneveson added a comment. In https://reviews.llvm.org/D40712#949979, @MatzeB wrote: > I also wonder whether it would be possible to move the fact that it defaults > to on for PS4 into the PS4CPU.cpp file somehow (not that things are > distributed

[PATCH] D40712: [Driver] Add flag enabling the function stack size section that was added in r319430

2017-12-11 Thread Sean Eveson via Phabricator via cfe-commits
seaneveson updated this revision to Diff 126350. seaneveson added a comment. Improve tests. https://reviews.llvm.org/D40712 Files: include/clang/Driver/Options.td include/clang/Frontend/CodeGenOptions.def lib/CodeGen/BackendUtil.cpp lib/Driver/ToolChains/Clang.cpp

[PATCH] D40712: Add cc1 flag enabling the function stack size section that was added in r319430

2017-12-08 Thread Sean Eveson via Phabricator via cfe-commits
seaneveson added a comment. Ping. https://reviews.llvm.org/D40712 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[PATCH] D40712: Add cc1 flag enabling the function stack size section that was added in r319430

2017-12-01 Thread Sean Eveson via Phabricator via cfe-commits
seaneveson created this revision. Adds the -fstack-size-section flag to enable the .stack_sizes section. The flag defaults to on for the PS4 triple. Follow up change from: https://reviews.llvm.org/D39788 Original RFC: http://lists.llvm.org/pipermail/llvm-dev/2017-August/117028.html