| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | PowerPCRegisterInfo no longer takes a bool to differentiate 32 vs 64 bits | Misha Brukman | 2004-08-17 | 1 | -6/+3 | |
| | | | | | llvm-svn: 15854 | |||||
| * | The PowerPCInstrInfo class has gone away. | Misha Brukman | 2004-08-17 | 1 | -34/+0 | |
| | | | | | llvm-svn: 15853 | |||||
| * | PowerPCInstrInfo has gone away, PPC32 and PPC64 share opcodes. | Misha Brukman | 2004-08-17 | 1 | -1/+2 | |
| | | | | | llvm-svn: 15852 | |||||
| * | PowerPC 32-/64-bit split: Part II, 64-bit customizations on PowerPC | Misha Brukman | 2004-08-17 | 9 | -27/+592 | |
| | | | | | llvm-svn: 15851 | |||||
| * | PowerPC 32-/64-bit split: Part I, PPC32* bit files, adapted from former PowerPC* | Misha Brukman | 2004-08-17 | 9 | -40/+616 | |
| | | | | | llvm-svn: 15850 | |||||
| * | Print float constants as 4 byte values. | Chris Lattner | 2004-08-17 | 1 | -22/+25 | |
| | | | | | | | Also, fix endianness problems when cross compiling from little-endian host. llvm-svn: 15847 | |||||
| * | Make sure to put an _ prefix on all identifiers! | Chris Lattner | 2004-08-17 | 1 | -16/+29 | |
| | | | | | | | Also, add some (currently disabled) code to print float's as 32-bits. llvm-svn: 15846 | |||||
| * | More changes to make PPC32 and X86 more similar | Chris Lattner | 2004-08-16 | 1 | -11/+9 | |
| | | | | | llvm-svn: 15842 | |||||
| * | Minor changes to make the diff be nothing against the X86 version | Chris Lattner | 2004-08-16 | 1 | -19/+4 | |
| | | | | | llvm-svn: 15841 | |||||
| * | Finegrainify namespacification | Chris Lattner | 2004-08-16 | 1 | -109/+15 | |
| | | | | | | | Start using the AsmPrinter base class to factor out a bunch of code llvm-svn: 15840 | |||||
| * | There is no need for a cast here | Chris Lattner | 2004-08-16 | 1 | -1/+1 | |
| | | | | | llvm-svn: 15810 | |||||
| * | Update the current state of the world | Nate Begeman | 2004-08-16 | 1 | -6/+1 | |
| | | | | | llvm-svn: 15809 | |||||
| * | Fix typo of the word 'implicit' I made resolving a CVS conflict. Whoops! | Nate Begeman | 2004-08-16 | 1 | -1/+1 | |
| | | | | | llvm-svn: 15808 | |||||
| * | Fix frame pointer handling: | Nate Begeman | 2004-08-16 | 2 | -32/+33 | |
| | | | | | | | | | | | Reserve R0 in store/load from stack slot for building >32k offsets from SP or FP. This also requires we use R11 rather than R0 for holding the LR value we want to save or restore. Also, tell the register allocator not to use R31 (our FP) in functions that have a frame pointer. These changes fix Burg. llvm-svn: 15807 | |||||
| * | Fix mismatched adjust down/up of SP in functions that contain variable | Nate Begeman | 2004-08-16 | 1 | -4/+4 | |
| | | | | | | | sized allocas. llvm-svn: 15806 | |||||
| * | Insertion methods now return void instead of #instrs inserted. Also, use | Chris Lattner | 2004-08-15 | 2 | -31/+25 | |
| | | | | | | | more powerful forms of BuildMI to concisify the code llvm-svn: 15782 | |||||
| * | These methods no longer take a TargetRegisterClass* operand. | Chris Lattner | 2004-08-15 | 2 | -8/+7 | |
| | | | | | llvm-svn: 15774 | |||||
| * | Make this compile on gc 3.4.1 (static_cast to non-const type was not | Alkis Evlogimenos | 2004-08-15 | 1 | -2/+2 | |
| | | | | | | | allowed). llvm-svn: 15766 | |||||
| * | Add future optimization opportunity | Nate Begeman | 2004-08-15 | 1 | -0/+1 | |
| | | | | | llvm-svn: 15760 | |||||
| * | Fix float to int codepath by always allocating 8 bytes for the target of a ↵ | Nate Begeman | 2004-08-15 | 1 | -6/+9 | |
| | | | | | | | double store; optimize cmplwi generation. llvm-svn: 15759 | |||||
| * | Zimm16 is now dead. Its entry is not removed from the enum, to avoid having | Chris Lattner | 2004-08-15 | 2 | -4/+0 | |
| | | | | | | | | to renumber everything. Similar elimination should be applied to other operand enum values that are only used to format printing in the .s file. llvm-svn: 15755 | |||||
| * | Convert all of the DForm_6* operations, which makes all of the Zimm16 users | Chris Lattner | 2004-08-15 | 3 | -12/+24 | |
| | | | | | | | dead. llvm-svn: 15754 | |||||
| * | Reenable the CCRC | Chris Lattner | 2004-08-15 | 1 | -1/+2 | |
| | | | | | llvm-svn: 15752 | |||||
| * | Convert the DForm_4 over to the asmprintergen | Chris Lattner | 2004-08-15 | 3 | -9/+29 | |
| | | | | | llvm-svn: 15751 | |||||
| * | Remove dead code | Nate Begeman | 2004-08-15 | 1 | -8/+0 | |
| | | | | | llvm-svn: 15750 | |||||
| * | Print mflr using the asmwriter generator | Chris Lattner | 2004-08-14 | 2 | -2/+21 | |
| | | | | | llvm-svn: 15749 | |||||
| * | Replace PowerPCPEI.cpp with target independant PrologEpilogInserter | Nate Begeman | 2004-08-14 | 6 | -353/+64 | |
| | | | | | llvm-svn: 15746 | |||||
| * | Add support for frame pointers, and large offsets from stack and frame ↵ | Nate Begeman | 2004-08-14 | 2 | -28/+72 | |
| | | | | | | | pointers. Adopt elimination of MachineFunction& arg from eliminateFrameIndex. llvm-svn: 15745 | |||||
| * | Add indexed forms of load doubleword and load word algebraic for 64 bit targets | Nate Begeman | 2004-08-14 | 1 | -0/+2 | |
| | | | | | llvm-svn: 15743 | |||||
| * | Fix handling of FP constants with single precision, and loading of internal ↵ | Nate Begeman | 2004-08-14 | 1 | -27/+27 | |
| | | | | | | | linkage function addresses llvm-svn: 15742 | |||||
| * | Add initial support for using the generated asm writer. Also, fix FP ↵ | Nate Begeman | 2004-08-14 | 1 | -61/+73 | |
| | | | | | | | constant printing to always print 8 byte intializers. Move printing of LinkOnce stubs. llvm-svn: 15741 | |||||
| * | Add generation of asm writer from tablegen files to Makefile | Nate Begeman | 2004-08-14 | 1 | -1/+6 | |
| | | | | | llvm-svn: 15740 | |||||
| * | Remove an unneeded header and forward declaration | Nate Begeman | 2004-08-13 | 1 | -2/+0 | |
| | | | | | llvm-svn: 15722 | |||||
| * | Fix siod by switching BoolTy to byte rather than int until CFE changes for | Nate Begeman | 2004-08-13 | 2 | -27/+28 | |
| | | | | | | | | Darwin. Also, change asm printer to output proper stubs for external functions whose address is passed as an argument to aid in bugpointing. llvm-svn: 15721 | |||||
| * | Fix 177.mesa compilation, don't use floating point regs for base addresses! | Nate Begeman | 2004-08-13 | 1 | -1/+1 | |
| | | | | | llvm-svn: 15720 | |||||
| * | Fix llc crasher compiling siod by giving BuildMI the correct number of arguments | Nate Begeman | 2004-08-13 | 1 | -1/+1 | |
| | | | | | llvm-svn: 15719 | |||||
| * | Longs are in one register on PowerPC 64; use appropriate instructions to ↵ | Nate Begeman | 2004-08-13 | 1 | -158/+22 | |
| | | | | | | | operate on them. llvm-svn: 15711 | |||||
| * | Add some more 64 bit instructions we need for the PowerPC-64 ISel to the ↵ | Nate Begeman | 2004-08-13 | 2 | -2/+57 | |
| | | | | | | | tablegen files llvm-svn: 15710 | |||||
| * | Disable PPC64 backend by default because LLC cannot choose automatically between | Misha Brukman | 2004-08-12 | 1 | -2/+2 | |
| | | | | | | | | SparcV9 and PowerPC64 without target triples, since they are both 64-bit big-endian targets. llvm-svn: 15688 | |||||
| * | * Correct 64-bit version: blr 1 (not 0) | Misha Brukman | 2004-08-12 | 1 | -2/+2 | |
| | | | | | | | * BuildMI() can build 0-param instructions (e.g., NOP) llvm-svn: 15681 | |||||
| * | * Print out full names for non-GPR or -FPR registers | Misha Brukman | 2004-08-12 | 1 | -3/+5 | |
| | | | | | | | * BuildMI() really *does* handle 0 params! llvm-svn: 15680 | |||||
| * | * Pointers are 8 bytes, hence cLong type on 64-bit PPC | Misha Brukman | 2004-08-12 | 1 | -6/+8 | |
| | | | | | | | * Fix loading of GlobalValues llvm-svn: 15678 | |||||
| * | Eliminate special-casing 14-bit immediate load/store opcodes | Misha Brukman | 2004-08-12 | 1 | -16/+5 | |
| | | | | | llvm-svn: 15677 | |||||
| * | Correctly print out ASCII literal strings on AIX | Misha Brukman | 2004-08-12 | 1 | -22/+48 | |
| | | | | | llvm-svn: 15674 | |||||
| * | Mark R2 as available for allocation on Darwin/PPC32, but not AIX/PPC64 | Misha Brukman | 2004-08-12 | 1 | -3/+6 | |
| | | | | | llvm-svn: 15673 | |||||
| * | * Move AIX into the llvm namespace to be accessed from RegisterInfo | Misha Brukman | 2004-08-11 | 2 | -11/+15 | |
| | | | | | | | | * Mark InstrInfo with 32 vs. 64 bit flag * Enable the 64-bit isel and asm printer llvm-svn: 15672 | |||||
| * | Set the is64bit flag and propagate it to PowerPCRegisterInfo | Misha Brukman | 2004-08-11 | 2 | -3/+6 | |
| | | | | | llvm-svn: 15671 | |||||
| * | * Set the is64bit boolean flag in PowerPCRegisterInfo | Misha Brukman | 2004-08-11 | 3 | -18/+30 | |
| | | | | | | | | | * Doubles are 8 bytes in 64-bit PowerPC, and use the general register class * Use double-word loads and stores for restoring from/saving to stack * Do not allocate R2 if compiling for AIX llvm-svn: 15670 | |||||
| * | 64-bit instruction selector and AIX-specific 64-bit asm printer | Misha Brukman | 2004-08-11 | 3 | -1/+3887 | |
| | | | | | llvm-svn: 15669 | |||||
| * | Fix names of 64-bit CMP*D* opcodes, add LWA and STD* opcodes | Misha Brukman | 2004-08-11 | 1 | -4/+10 | |
| | | | | | llvm-svn: 15668 | |||||

