Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [PowerPC][NFC] Avoid checking non-relevant .cfi instructions | Jinsong Ji | 2019-08-30 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | Summary: This is brought up in https://reviews.llvm.org/D64662?id=209923#inline-599490 CFI information are non-relevant to quite some testcases, we should get rid of checking them when its unecessary. This patch avoid generating cfi info in testcases that are not testing prolog/epilog or exception handling. Reviewers: kbarton, hfinkel, nemanjai, #powerpc Reviewed By: hfinkel Subscribers: MaskRay, shchenz, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D67016 llvm-svn: 370505 | ||||
* | [PowerPC] Replace float load/store pair with integer load/store pair when ↵ | Zi Xuan Wu | 2019-07-23 | 1 | -15/+15 |
| | | | | | | | | | | | | | | it's only used in load/store Replace float load/store pair with integer load/store pair when it's only used in load/store, because float load/store instructions cost more cycles then integer load/store. A typical scenario is when there is a call with more than 13 float arguments passing, we need pass them by stack. So we need a load/store pair to do such memory operation if the variable is global variable. Differential Revision: https://reviews.llvm.org/D64195 llvm-svn: 366775 | ||||
* | [NFC][PowerPC] Add test case for D64195 | Zi Xuan Wu | 2019-07-16 | 1 | -0/+106 |
llvm-svn: 366191 |