Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Migrate function attribute "no-frame-pointer-elim" to "frame-pointer"="all" ↵ | Fangrui Song | 2019-12-24 | 1 | -1/+1 |
| | | | | as cleanups after D56351 | ||||
* | [RISCV] Switch to the Machine Scheduler | Luis Marques | 2019-09-17 | 1 | -24/+24 |
| | | | | | | | | | Most of the test changes are trivial instruction reorderings and differing register allocations, without any obvious performance impact. Differential Revision: https://reviews.llvm.org/D66973 llvm-svn: 372106 | ||||
* | Revert Patch from Phabricator | Luis Marques | 2019-09-17 | 1 | -24/+24 |
| | | | | | | This reverts r372092 (git commit e38695a0255c9e7b53639f349f8101bae1ce5c04) llvm-svn: 372104 | ||||
* | Patch from Phabricator | Luis Marques | 2019-09-17 | 1 | -24/+24 |
| | | | | llvm-svn: 372092 | ||||
* | [RISCV] Fix a couple of tests' CHECKs | Luis Marques | 2019-08-30 | 1 | -84/+630 |
| | | | | llvm-svn: 370466 | ||||
* | [RISCV][NFC] Add nounwind attribute to functions missing it in ↵ | Alex Bradbury | 2019-05-16 | 1 | -6/+6 |
| | | | | | | | | test/CodeGen/RISCV This is in preparation for emitting CFI directives. llvm-svn: 360897 | ||||
* | [RISCV] Add support for _interrupt attribute | Ana Pazos | 2018-07-26 | 1 | -0/+217 |
- Save/restore only registers that are used. This includes Callee saved registers and Caller saved registers (arguments and temporaries) for integer and FP registers. - If there is a call in the interrupt handler, save/restore all Caller saved registers (arguments and temporaries) and all FP registers. - Emit special return instructions depending on "interrupt" attribute type. Based on initial patch by Zhaoshi Zheng. Reviewers: asb Reviewed By: asb Subscribers: rkruppe, the_o, MartinMosbeck, brucehoult, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, zzheng, edward-jones, mgrang, rogfer01, llvm-commits Differential Revision: https://reviews.llvm.org/D48411 llvm-svn: 338047 |