summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/SPARC/globals.ll
Commit message (Collapse)AuthorAgeFilesLines
* [opaque pointer type] Add textual IR support for explicit type parameter to ↵David Blaikie2015-02-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | load instruction Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 llvm-svn: 230794
* [Sparc] Emit retl/ret instead of jmp instruction. It improves the ↵Venkatraman Govindaraju2014-01-101-5/+5
| | | | | | readability of the assembly generated. llvm-svn: 198910
* [SPARC] Make functions with GLOBAL_OFFSET_TABLE access as non-leaf functions.Venkatraman Govindaraju2013-09-221-4/+6
| | | | llvm-svn: 191160
* Sparc: Perform leaf procedure optimization by defaultVenkatraman Govindaraju2013-06-021-10/+15
| | | | llvm-svn: 183083
* Add support for the abs64 SPARC v9 code model.Jakob Stoklund Olesen2013-04-141-0/+10
| | | | | | For when 16 TB just isn't enough. llvm-svn: 179474
* Add support for the SPARC v9 abs44 code model.Jakob Stoklund Olesen2013-04-141-0/+8
| | | | | | | This is the default model for non-PIC 64-bit code. It supports text+data+bss linked anywhere in the low 16 TB of the address space. llvm-svn: 179473
* Fix patterns for 64-bit pointers.Jakob Stoklund Olesen2013-04-141-0/+9
| | | | | | This fixes the pic32 code model for SPARC v9. llvm-svn: 179469
* Define SPARC code models.Jakob Stoklund Olesen2013-04-131-0/+23
Currently, only abs32 and pic32 are implemented. Add a test case for abs32 with 64-bit code. 64-bit PIC code is currently broken. llvm-svn: 179463
OpenPOWER on IntegriCloud