| Commit message (Expand) | Author | Age | Files | Lines |
* | Unnamed symbol index should be >= 1. This was lost during the mangler refacto... | Benjamin Kramer | 2010-01-18 | 1 | -1/+1 |
* | stop the CBE from using Mangler::appendMangledName, which is a private functi... | Chris Lattner | 2010-01-17 | 1 | -5/+0 |
* | fix uninit member, thanks to Benjamin Kramer for identifying the bug. | Chris Lattner | 2010-01-17 | 1 | -1/+1 |
* | Get MCSymbol out of the mangling business, and move all the logic | Chris Lattner | 2010-01-17 | 1 | -0/+6 |
* | now that mangler is in libtarget, it can use MCAsmInfo instead of clients | Chris Lattner | 2010-01-17 | 1 | -15/+3 |
* | move the mangler into libtarget from vmcore. | Chris Lattner | 2010-01-16 | 1 | -0/+86 |
* | Retrying r91337: | Bill Wendling | 2010-01-16 | 1 | -0/+14 |
* | DEBUG_VALUE is now variable sized, as it has a | Dale Johannesen | 2010-01-15 | 1 | -1/+1 |
* | Hook up llc's -filetype=obj to use MCStreamer if an MCCodeEmitter is available. | Nate Begeman | 2010-01-15 | 1 | -0/+8 |
* | Remove DEBUG_DECLARE, looks like we don't need it. | Dale Johannesen | 2010-01-15 | 2 | -13/+1 |
* | Split the TargetAsmParser "ParseInstruction" interface in half: | Chris Lattner | 2010-01-14 | 1 | -2/+13 |
* | prune #includes in TargetAsmParser.h | Chris Lattner | 2010-01-14 | 1 | -3/+4 |
* | change Mangler::makeNameProper to return its result in a SmallVector | Chris Lattner | 2010-01-13 | 1 | -1/+1 |
* | Fix a comment. | Dale Johannesen | 2010-01-13 | 1 | -1/+1 |
* | Add a quick pass to optimize sign / zero extension instructions. For targets ... | Evan Cheng | 2010-01-13 | 1 | -10/+9 |
* | Add TargetInstrInfo::isCoalescableInstr. It returns true if the specified | Evan Cheng | 2010-01-12 | 1 | -0/+13 |
* | Add DEBUG_DECLARE. Not used yet. | Dale Johannesen | 2010-01-09 | 2 | -1/+12 |
* | Add DEBUG_VALUE. Not used yet. | Dale Johannesen | 2010-01-08 | 2 | -1/+12 |
* | Add comments. | Jakob Stoklund Olesen | 2010-01-07 | 1 | -0/+2 |
* | Add Target hook to duplicate machine instructions. | Jakob Stoklund Olesen | 2010-01-06 | 1 | -0/+8 |
* | Teach dag combine to fold the following transformation more aggressively: | Evan Cheng | 2010-01-06 | 1 | -2/+4 |
* | Remove the CPAttrParentAsRoot code, which is unused, and inconvenient | Dan Gohman | 2010-01-04 | 1 | -8/+1 |
* | Allow targets to specify the return type of libcalls that are generated for f... | Sanjiv Gupta | 2009-12-28 | 1 | -0/+6 |
* | Add more plumbing. This time in the LowerArguments and "get" functions which | Bill Wendling | 2009-12-22 | 1 | -1/+1 |
* | Fix setting and default setting of code model for jit. Do this | Eric Christopher | 2009-12-21 | 1 | -0/+7 |
* | Delete unused code. | Dan Gohman | 2009-12-19 | 1 | -14/+0 |
* | Changes from review: | Bill Wendling | 2009-12-18 | 1 | -0/+5 |
* | Add @earlyclobber TableGen constraint | Jim Grosbach | 2009-12-16 | 1 | -2/+3 |
* | Fix these asserts to check the invariant that the code actually | Dan Gohman | 2009-12-14 | 1 | -2/+2 |
* | Whitespace changes, comment clarification. No functional changes. | Bill Wendling | 2009-12-14 | 1 | -5/+4 |
* | Silence conversion warning from 64 to 32-bit. | Eric Christopher | 2009-12-09 | 1 | -1/+1 |
* | Move isConsecutiveLoad to SelectionDAG. It's not target dependent and it's pr... | Evan Cheng | 2009-12-09 | 1 | -6/+0 |
* | Revert 90789 for now. It caused massive compile time regression. Post-ra sche... | Evan Cheng | 2009-12-08 | 1 | -1/+1 |
* | Apply Pekka Jääskeläinen's patch to raise the first virtual register | Dan Gohman | 2009-12-07 | 1 | -2/+2 |
* | Remove the target hook TargetInstrInfo::BlockHasNoFallThrough in favor of | Dan Gohman | 2009-12-05 | 1 | -8/+0 |
* | Remove an unneeded include. | David Greene | 2009-12-05 | 1 | -1/+1 |
* | Fix a bad merge. | David Greene | 2009-12-04 | 1 | -7/+0 |
* | Update the TargetInstrInfo interfaces so hasLoad/StoreFrom/ToStackSlot | David Greene | 2009-12-04 | 1 | -6/+17 |
* | remove some dead std::ostream using code. | Chris Lattner | 2009-12-03 | 1 | -2/+0 |
* | This initial code is meant to convert TargetData to use an AbstractTypesUser so | Bill Wendling | 2009-12-03 | 1 | -2/+1 |
* | Remove isProfitableToDuplicateIndirectBranch target hook. It is profitable | Bob Wilson | 2009-11-30 | 1 | -4/+0 |
* | Rollback changes r89516: Added two SubtargetFeatures::AddFeatures methods, wh... | Viktor Kutuzov | 2009-11-25 | 1 | -7/+0 |
* | Add the rest of the build system logic for optional target disassemblers | Daniel Dunbar | 2009-11-25 | 1 | -0/+14 |
* | Refactor target hook for tail duplication as requested by Chris. | Bob Wilson | 2009-11-24 | 1 | -6/+3 |
* | * Move stub allocation inside the JITEmitter, instead of exposing a | Jeffrey Yasskin | 2009-11-23 | 1 | -10/+17 |
* | Remove ISD::DEBUG_LOC and ISD::DBG_LABEL, which are no longer used. | Dan Gohman | 2009-11-23 | 1 | -7/+0 |
* | Add getFrameIndexReference() to TargetRegisterInfo, which allows targets to | Jim Grosbach | 2009-11-22 | 1 | -0/+12 |
* | Allow target to disable if-converting predicable instructions. e.g. NEON inst... | Evan Cheng | 2009-11-21 | 1 | -0/+7 |
* | Maintain stylistic consistency. | Evan Cheng | 2009-11-21 | 1 | -1/+3 |
* | Added two SubtargetFeatures::AddFeatures methods, which accept a comma-separa... | Viktor Kutuzov | 2009-11-21 | 1 | -0/+7 |