| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | RemoveBranch() and InsertBranch() now returns number of instructions deleted ↵ | Evan Cheng | 2007-05-18 | 2 | -6/+8 |
| | | | | | | | / inserted. llvm-svn: 37193 | ||||
| * | Drop 'const' | Devang Patel | 2007-05-03 | 2 | -4/+4 |
| | | | | | llvm-svn: 36662 | ||||
| * | Use 'static const char' instead of 'static const int'. | Devang Patel | 2007-05-02 | 2 | -4/+4 |
| | | | | | | | | Due to darwin gcc bug, one version of darwin linker coalesces static const int, which defauts PassID based pass identification. llvm-svn: 36652 | ||||
| * | Do not use typeinfo to identify pass in pass manager. | Devang Patel | 2007-05-01 | 2 | -3/+9 |
| | | | | | llvm-svn: 36632 | ||||
| * | eliminateFrameIndex() change. | Evan Cheng | 2007-05-01 | 2 | -2/+4 |
| | | | | | llvm-svn: 36626 | ||||
| * | Added MRegisterInfo hook to re-materialize an instruction. | Evan Cheng | 2007-03-20 | 2 | -0/+12 |
| | | | | | llvm-svn: 35205 | ||||
| * | Refactoring of formal parameter flags. Enable properly use of | Anton Korobeynikov | 2007-03-07 | 1 | -2/+4 |
| | | | | | | | zext/sext/aext stuff. llvm-svn: 35008 | ||||
| * | PEI now passes a RegScavenger ptr to eliminateFrameIndex. | Evan Cheng | 2007-02-28 | 2 | -3/+4 |
| | | | | | llvm-svn: 34707 | ||||
| * | By default, spills kills the register being stored. | Evan Cheng | 2007-02-23 | 1 | -3/+3 |
| | | | | | llvm-svn: 34515 | ||||
| * | Simplify lowering and selection of exception ops. | Jim Laskey | 2007-02-22 | 1 | -3/+0 |
| | | | | | llvm-svn: 34488 | ||||
| * | Support to provide exception and selector registers. | Jim Laskey | 2007-02-21 | 3 | -0/+17 |
| | | | | | llvm-svn: 34482 | ||||
| * | Re-apply my liveintervalanalysis changes. Now with PR1207 fixes. | Evan Cheng | 2007-02-19 | 2 | -0/+19 |
| | | | | | llvm-svn: 34428 | ||||
| * | For PR1207: | Reid Spencer | 2007-02-19 | 2 | -19/+0 |
| | | | | | | | | Revert patches that caused the problem. Evan, please investigate and reapply when you've discovered the problem. llvm-svn: 34399 | ||||
| * | Added getReservedRegs(). | Evan Cheng | 2007-02-17 | 2 | -0/+19 |
| | | | | | llvm-svn: 34376 | ||||
| * | Generalize TargetData strings, to support more interesting forms of data. | Chris Lattner | 2007-02-14 | 1 | -1/+1 |
| | | | | | | | Patch by Scott Michel. llvm-svn: 34266 | ||||
| * | Finish off bug 680, allowing targets to custom lower frame and return | Nate Begeman | 2007-01-29 | 1 | -0/+4 |
| | | | | | | | address nodes. llvm-svn: 33636 | ||||
| * | Make LABEL a builtin opcode. | Jim Laskey | 2007-01-26 | 1 | -1/+1 |
| | | | | | llvm-svn: 33537 | ||||
| * | hasFP() is now a virtual method of MRegisterInfo. | Evan Cheng | 2007-01-23 | 2 | -0/+5 |
| | | | | | llvm-svn: 33455 | ||||
| * | Teach TargetData to handle 'preferred' alignment for each target, and use | Chris Lattner | 2007-01-20 | 1 | -2/+2 |
| | | | | | | | these alignment amounts to align scalars when we can. Patch by Scott Michel! llvm-svn: 33409 | ||||
| * | Fix naming inconsistency. | Evan Cheng | 2007-01-02 | 2 | -8/+8 |
| | | | | | llvm-svn: 32823 | ||||
| * | For PR950: | Reid Spencer | 2006-12-31 | 1 | -19/+21 |
| | | | | | | | | | | | | | | | | | | | Three changes: 1. Convert signed integer types to signless versions. 2. Implement the @sext and @zext parameter attributes. Previously the type of an function parameter was used to determine whether it should be sign extended or zero extended before the call. This information is now communicated via the function type's parameter attributes. 3. The interface to LowerCallTo had to be changed in order to accommodate the parameter attribute information. Although it would have been convenient to pass in the FunctionType itself, there isn't always one present in the caller. Consequently, a signedness indication for the result type and for each parameter was provided for in the interface to this method. All implementations were changed to make the adjustment necessary. llvm-svn: 32788 | ||||
| * | eliminate static ctors for Statistic objects. | Chris Lattner | 2006-12-19 | 3 | -7/+10 |
| | | | | | llvm-svn: 32703 | ||||
| * | What should be the last unnecessary <iostream>s in the library. | Bill Wendling | 2006-12-07 | 5 | -10/+5 |
| | | | | | llvm-svn: 32333 | ||||
| * | Detemplatize the Statistic class. The only type it is instantiated with | Chris Lattner | 2006-12-06 | 3 | -4/+4 |
| | | | | | | | is 'unsigned'. llvm-svn: 32279 | ||||
| * | These asm printers shouldn't use assembly/writer.h | Chris Lattner | 2006-12-06 | 1 | -6/+1 |
| | | | | | llvm-svn: 32262 | ||||
| * | MachineInstr::setOpcode -> MachineInstr::setInstrDescriptor | Evan Cheng | 2006-11-30 | 1 | -3/+4 |
| | | | | | llvm-svn: 32034 | ||||
| * | Change MachineInstr ctor's to take a TargetInstrDescriptor reference instead | Evan Cheng | 2006-11-27 | 6 | -29/+38 |
| | | | | | | | of opcode and number of operands. llvm-svn: 31947 | ||||
| * | Properly transfer kill / dead info. | Evan Cheng | 2006-11-15 | 1 | -5/+9 |
| | | | | | llvm-svn: 31765 | ||||
| * | Matches MachineInstr changes. | Evan Cheng | 2006-11-13 | 3 | -8/+10 |
| | | | | | llvm-svn: 31712 | ||||
| * | Match tblegen changes. | Evan Cheng | 2006-11-08 | 1 | -6/+7 |
| | | | | | llvm-svn: 31571 | ||||
| * | remove redundant/dead vars | Chris Lattner | 2006-11-03 | 1 | -2/+0 |
| | | | | | llvm-svn: 31434 | ||||
| * | silence warnings | Chris Lattner | 2006-11-03 | 1 | -1/+1 |
| | | | | | llvm-svn: 31392 | ||||
| * | For PR786: | Reid Spencer | 2006-11-02 | 1 | -2/+0 |
| | | | | | | | | | | | Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting fall out by removing unused variables. Remaining warnings have to do with unused functions (I didn't want to delete code without review) and unused variables in generated code. Maintainers should clean up the remaining issues when they see them. All changes pass DejaGnu tests and Olden. llvm-svn: 31380 | ||||
| * | All targets expand BR_JT for now. | Evan Cheng | 2006-10-30 | 1 | -1/+2 |
| | | | | | llvm-svn: 31294 | ||||
| * | don't dist internal readme | Chris Lattner | 2006-10-28 | 1 | -1/+0 |
| | | | | | llvm-svn: 31247 | ||||
| * | fix warning about missing newline at end of file | Rafael Espindola | 2006-10-24 | 1 | -1/+1 |
| | | | | | llvm-svn: 31162 | ||||
| * | implement uncond branch insertion for sparc to fix regressions from last night | Chris Lattner | 2006-10-24 | 2 | -0/+13 |
| | | | | | | | due to branchfolding llvm-svn: 31157 | ||||
| * | Merge ISD::TRUNCSTORE to ISD::STORE. Switch to using StoreSDNode. | Evan Cheng | 2006-10-13 | 2 | -13/+12 |
| | | | | | llvm-svn: 30945 | ||||
| * | adjcallstackup/down clobbers the stack pointer | Chris Lattner | 2006-10-12 | 1 | -2/+2 |
| | | | | | llvm-svn: 30909 | ||||
| * | Add properties to ComplexPattern. | Evan Cheng | 2006-10-11 | 1 | -2/+2 |
| | | | | | llvm-svn: 30891 | ||||
| * | Reflects ISD::LOAD / ISD::LOADX / LoadSDNode changes. | Evan Cheng | 2006-10-09 | 2 | -26/+26 |
| | | | | | llvm-svn: 30844 | ||||
| * | Make use of getStore(). | Evan Cheng | 2006-10-05 | 1 | -8/+7 |
| | | | | | llvm-svn: 30759 | ||||
| * | Use getSectionForFunction | Chris Lattner | 2006-10-05 | 1 | -3/+5 |
| | | | | | llvm-svn: 30739 | ||||
| * | Combine ISD::EXTLOAD, ISD::SEXTLOAD, ISD::ZEXTLOAD into ISD::LOADX. Add an | Evan Cheng | 2006-10-04 | 1 | -4/+4 |
| | | | | | | | extra operand to LOADX to specify the exact value extension type. llvm-svn: 30714 | ||||
| * | Adding dllimport, dllexport and external weak linkage types. | Anton Korobeynikov | 2006-09-14 | 1 | -0/+8 |
| | | | | | | | | | | DLL* linkages got full (I hope) codegeneration support in C & both x86 assembler backends. External weak linkage added for future use, we don't provide any codegeneration, etc. support for it. llvm-svn: 30374 | ||||
| * | Reflects MachineConstantPoolEntry changes. | Evan Cheng | 2006-09-12 | 1 | -1/+1 |
| | | | | | llvm-svn: 30279 | ||||
| * | 1. Remove condition on delete. | Jim Laskey | 2006-09-07 | 2 | -5/+9 |
| | | | | | | | | | 2. Protect and outline createTargetAsmInfo. 3. Misc. kruft. llvm-svn: 30169 | ||||
| * | Make target asm info a property of the target machine. | Jim Laskey | 2006-09-07 | 2 | -14/+6 |
| | | | | | llvm-svn: 30162 | ||||
| * | Break out target asm info into separate files. | Jim Laskey | 2006-09-07 | 2 | -0/+56 |
| | | | | | llvm-svn: 30161 | ||||
| * | Separate target specific asm properties from the asm printers. | Jim Laskey | 2006-09-06 | 1 | -4/+12 |
| | | | | | llvm-svn: 30126 | ||||

