Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [mips] Use --check-prefixes where appropriate. NFC. | Daniel Sanders | 2016-06-24 | 1 | -9/+9 |
| | | | | llvm-svn: 273669 | ||||
* | [mips] Make Static a default relocation model for MIPS codegen | Petar Jovanovic | 2016-04-11 | 1 | -9/+9 |
| | | | | | | | | | | | | This change follows up defaults for GCC and Clang, so LLVM does not differ from them. While number of the test files are touched with this change, they all keep the old (expected) behaviour with the explicit option: "-relocation-model=pic" The tests that have not been touched are insensitive to relocation model. Differential Revision: http://reviews.llvm.org/D17995 llvm-svn: 265949 | ||||
* | [mips] Add support for dynamic stack realignment. | Vasileios Kalintiris | 2015-06-02 | 1 | -0/+299 |
Summary: With this change we are able to realign the stack dynamically, whenever it contains objects with alignment requirements that are larger than the alignment specified from the given ABI. We have to use the $fp register as the frame pointer when we perform dynamic stack realignment. In complex stack frames, with variably-sized objects, we reserve additionally the callee-saved register $s7 as the base pointer in order to reference locals. Reviewers: dsanders Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D8633 llvm-svn: 238829 |