Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [opaque pointer type] Add textual IR support for explicit type parameter to ↵ | David Blaikie | 2015-02-27 | 1 | -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 | ||||
* | Don't run RAFast in the optimizing regalloc pipeline. | Jakob Stoklund Olesen | 2012-06-08 | 1 | -1/+1 |
| | | | | | | | | | | | The fast register allocator is not supposed to work in the optimizing pipeline. It doesn't make sense to compute live intervals, run full copy coalescing, and then run RAFast. Fast register allocation in the optimizing pipeline is better done by RABasic. llvm-svn: 158242 | ||||
* | Remove the local register allocator. | Jakob Stoklund Olesen | 2010-06-15 | 1 | -1/+0 |
| | | | | | | Please use the fast allocator instead. llvm-svn: 106051 | ||||
* | Enable a bunch more -regalloc=fast tests | Jakob Stoklund Olesen | 2010-05-12 | 1 | -0/+1 |
| | | | | llvm-svn: 103531 | ||||
* | Eliminate more uses of llvm-as and llvm-dis. | Dan Gohman | 2009-09-09 | 1 | -1/+1 |
| | | | | llvm-svn: 81293 | ||||
* | Determine whether a spill kills the register it's spilling before insertion ↵ | Evan Cheng | 2008-02-11 | 1 | -0/+10 |
rather than trying to undo the kill marker afterwards. llvm-svn: 46953 |