aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/SparcV8/SparcV8RegisterInfo.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Pass extra regclasses into spilling codeChris Lattner2005-09-301-2/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23537 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix code that assumes the register info will be dumped into a targetChris Lattner2005-08-191-18/+18
| | | | | | | | namespace instead of the reg class namespace. Update getRegClassForType() to use modified names due to tblgen change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22923 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove trailing whitespaceMisha Brukman2005-04-211-5/+5
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21425 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove dependency on MRegisterInfo::getRegClassBrian Gaeke2004-10-291-2/+15
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17346 91177308-0d34-0410-b5e6-96231b3b80d8
* Implement eliminateCallFramePseudoInstr().Brian Gaeke2004-10-101-6/+8
| | | | | | | Wrap a long comment line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16883 91177308-0d34-0410-b5e6-96231b3b80d8
* Use FpMOVD pseudo-instruction to move doubles around.Brian Gaeke2004-09-291-0/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16575 91177308-0d34-0410-b5e6-96231b3b80d8
* Back to compiling land for v8Brian Gaeke2004-09-021-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16138 91177308-0d34-0410-b5e6-96231b3b80d8
* Code insertion methods now return void instead of an int.Chris Lattner2004-08-151-10/+7
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15780 91177308-0d34-0410-b5e6-96231b3b80d8
* These methods no longer take a TargetRegisterClass* operand.Chris Lattner2004-08-151-12/+9
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15774 91177308-0d34-0410-b5e6-96231b3b80d8
* Update to no longer take MF as an argumentChris Lattner2004-08-141-2/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15748 91177308-0d34-0410-b5e6-96231b3b80d8
* Add #includesChris Lattner2004-07-041-0/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14625 91177308-0d34-0410-b5e6-96231b3b80d8
* Allow saving and restoring of double and float registers.Brian Gaeke2004-06-271-9/+27
| | | | | | | Allow copying of float registers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14445 91177308-0d34-0410-b5e6-96231b3b80d8
* The long integer pseudo-regs are history. So long, we hardly knew ye.Brian Gaeke2004-06-241-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14364 91177308-0d34-0410-b5e6-96231b3b80d8
* Rename the load and store opcodes. The non-fp ones only have oneBrian Gaeke2004-06-241-2/+2
| | | | | | | variant worth worrying about; the fp ones have two. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14362 91177308-0d34-0410-b5e6-96231b3b80d8
* Add pseudo-registers and register class for 64-bit integer values.Brian Gaeke2004-06-221-2/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14332 91177308-0d34-0410-b5e6-96231b3b80d8
* Make storeRegToStackSlot slightly shorter.Brian Gaeke2004-06-171-7/+7
| | | | | | | | Make copyRegToReg return 1 instead of -1. Edit a comment in emitPrologue(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14211 91177308-0d34-0410-b5e6-96231b3b80d8
* Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()Chris Lattner2004-06-171-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14201 91177308-0d34-0410-b5e6-96231b3b80d8
* Squash a warning from the Solaris assembler by aligning the stackBrian Gaeke2004-06-151-1/+2
| | | | | | | on a double-word boundary instead of a single-word boundary. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14177 91177308-0d34-0410-b5e6-96231b3b80d8
* I don't think we have to have 4 extra allocated (but unused) bytes on the stack.Brian Gaeke2004-04-131-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12905 91177308-0d34-0410-b5e6-96231b3b80d8
* Make generation of stack-slot loads and copies less ugly.Brian Gaeke2004-04-071-7/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12742 91177308-0d34-0410-b5e6-96231b3b80d8
* First attempt at handling frame index elimination.Brian Gaeke2004-04-061-8/+11
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12728 91177308-0d34-0410-b5e6-96231b3b80d8
* Add support for many of the MRegisterInfo callbacks.Brian Gaeke2004-04-021-9/+48
| | | | | | | | Eliminating call-frame pseudo instrs and frame indices are still stubs. Flesh out the emitPrologue method based on better ABI knowledge. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12632 91177308-0d34-0410-b5e6-96231b3b80d8
* Make prolog align stack properly. Make epilog not touch any registers.Brian Gaeke2004-03-061-4/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12183 91177308-0d34-0410-b5e6-96231b3b80d8
* Teach getRegClassForType where to find FP registersBrian Gaeke2004-03-061-3/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12180 91177308-0d34-0410-b5e6-96231b3b80d8
* Implement initial prolog/epilog code insertion methods.Chris Lattner2004-02-291-6/+14
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11979 91177308-0d34-0410-b5e6-96231b3b80d8
* Bring this directory into "it actually compiles" landChris Lattner2004-02-281-6/+6
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11955 91177308-0d34-0410-b5e6-96231b3b80d8
* SparcV8 skeletonBrian Gaeke2004-02-251-0/+99
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11828 91177308-0d34-0410-b5e6-96231b3b80d8