simplify some overly general code. The stack always grows down on x86.
[oota-llvm.git] / lib / Target /
2010-03-13 Chris Lattnersimplify some overly general code. The stack always...
2010-03-13 Benjamin KramerFix another warning. There is a functionality change...
2010-03-13 Bob WilsonAttempt to appease the arm-linux buildbot by fixing...
2010-03-13 Chris Lattnerswitch to the text section at the start of the .s file...
2010-03-13 Bob WilsonChange ARM ld/st multiple instructions to have variant...
2010-03-13 Daniel DunbarMC/X86: Add temporary hack to match shrl $1,%eax correc...
2010-03-13 Bob WilsonCombine the code to build VLDM and VSTM instructions...
2010-03-12 Bob WilsonTidy up. No functional changes.
2010-03-12 Bob WilsonRemove obsolete comments. VLDM is implemented in ARMIn...
2010-03-12 Jeffrey YasskinFix LLVM build when the user specifies CPPFLAGS on...
2010-03-12 Chris Lattnerremove special case code that isn't needed anymore.
2010-03-12 Chris Lattnerinline GetGlobalValueSymbol into the rest its callers and
2010-03-12 Chris Lattnerinline the now-trivial implementation of GetGlobalValue...
2010-03-12 Chris Lattnereliminate the X86 version of GetGlobalValueSymbol,...
2010-03-12 Chris Lattnerprune #includes, this file should be removed pending...
2010-03-12 Chris Lattnermove fastcall/stdcall mangling up into Mangler.
2010-03-12 Daniel DunbarMC: Constify MCAsmLayout argument to MCExpr::EvaluteAs...
2010-03-12 Chris Lattnergive Mangler access to TargetData.
2010-03-12 Chris Lattnermake DecorateCygMingName a static method.
2010-03-12 Chris Lattnerminor tidying, only do work if a function is
2010-03-12 Chris Lattnereliminate the string form of DecorateCygMingName
2010-03-12 Chris Lattnerremove the FnArgWords cache to make way for future...
2010-03-12 Bill WendlingAdd a beta-test for placing the LSDA into the TEXT...
2010-03-12 Devang PatelFix llc crash on invalid input.
2010-03-12 Chris LattnerRemove some dead code. This method only gets called on
2010-03-12 Chris Lattneruse Mang->getSymbol instead of duplicating the logic...
2010-03-12 Chris Lattnerfinally give Mangler a getSymbol method, which returns...
2010-03-12 Chris Lattnersimplify code to use OutContext.GetOrCreateTemporarySym...
2010-03-12 Chris Lattnermake the mangler take an MCContext instead of an MAI.
2010-03-12 Benjamin KramerUse StringRef::substr instead of std::string::substr...
2010-03-12 Bill WendlingThe same situation that effected ARM effects PPC with...
2010-03-12 Chris Lattnermake TargetLoweringObjectFile::getExprForDwarfReference
2010-03-11 Bill WendlingMC-ize PPC's asm printing of stubs.
2010-03-11 Chris Lattnerfix a fixme in TargetLoweringObjectFile::getExprForDwar...
2010-03-11 Dan GohmanRemove getWidenVectorType, which is no longer used.
2010-03-11 Johnny ChenSet the (Format)F filed of t2Int_MemBarrierV7 & t2Int_S...
2010-03-11 Bill Wendlingrevert r98270.
2010-03-11 Chris Lattnerrename getSymbolForDwarf* to getExprForDwarf* since...
2010-03-11 Evan ChengBad bad bug. x86 force indirect tail call address into...
2010-03-11 Richard OsborneRemove dead code. (S|U)MUL_LO is now lowered to LMUL...
2010-03-11 Richard OsborneAdd dag combine to simplify lmul(x, 0, a, b)
2010-03-11 Richard OsborneSwitch XCore over to using inline jump table entries.
2010-03-11 Eric ChristopherHave fast-isel understand llvm.objectsize. Update...
2010-03-11 Daniel DunbarMC: Sketch initial MCAsmLayout class, which encapsulate...
2010-03-11 Daniel DunbarMC: Sketch some TargetAsmBackend hooks we are going...
2010-03-11 Daniel DunbarMC: Provide the target triple to AsmBackend constructors.
2010-03-11 Bill WendlingWhen outputing a non-lazy pointer for a stub, we may...
2010-03-11 Johnny ChenAdded Thumb2 LDRD/STRD pre/post variants for disassembl...
2010-03-11 Bob WilsonFix ARM buildbot breakage.
2010-03-11 Chris Lattneradd support, testcases, and dox for the new GHC calling
2010-03-11 Bob WilsonLower small memcpys to load/stores on Thumb2.
2010-03-11 Chris LattnerWork around a bug in the openbsd assembler on i386,
2010-03-10 Bob WilsonFix an obvious typo in an assert.
2010-03-10 Bill WendlingAdd a bit along with the MCSymbols stored in the Machin...
2010-03-10 Dale JohannesenProgress towards shepherding debug info through Selecti...
2010-03-10 Chris Lattnermove PR6576 here.
2010-03-10 Jim GrosbachMake sure the LR gets pushed in functions that use...
2010-03-10 Jim Grosbachcomment why we use custom epilogue for t1 functions...
2010-03-10 Johnny ChenFactored out the disassembly printing of CPS option...
2010-03-10 Richard OsborneThe backend now makes a reasonable job of targeting...
2010-03-10 Richard OsborneHandle MVT::i64 type in DAG combine for ISD::ADD. Fold...
2010-03-10 Richard OsborneFix checking of intermediates having one use in isADDADDMUL
2010-03-10 Richard OsborneExtract recognition of patterns such as add(add(mul...
2010-03-10 Richard OsborneFix thinko.
2010-03-10 Richard OsborneFold add(add(mul(x,y),a),b) -> lmul(x,y,a,b) if the...
2010-03-10 Richard OsbornePrefer LMUL to MACCU as LMUL has no tied operands.
2010-03-10 Richard OsborneCustom lower (S|U)MUL_LOHI -> MACC(S|U)
2010-03-10 Richard OsborneFix indentation
2010-03-10 Richard OsborneLower add (mul a, b), c into MACCU / MACCS nodes which...
2010-03-10 Chris Lattnermove three lowering hooks from MAI to TLOF and make...
2010-03-10 Chris Lattnerset the temporary bit on MCSymbols correctly.
2010-03-10 Jim GrosbachClear up the last (famous last words) frame index value...
2010-03-09 Daniel DunbarMC/X86: Rename alternate spellings of ADD{8,16,32}...
2010-03-09 Daniel DunbarMC/X86: Rename alternate spellings of CMP{8,16,32}...
2010-03-09 Jim GrosbachChange the Value argument to eliminateFrameIndex to...
2010-03-09 Johnny ChenMSR (Move to Special Register from ARM core register...
2010-03-09 Dale JohannesenThe address of an indirect call must be in R12 on Darwin.
2010-03-09 Jim Grosbachscavenged frame index value re-use gets confused when...
2010-03-09 Bill WendlingThe ARM EH experiment worked!
2010-03-09 Richard OsborneIn cases where the carry / borrow unused converted...
2010-03-09 Richard OsborneCanonicalize ladd constant to RHS.
2010-03-09 Richard OsborneAdd DAG combine for ladd / lsub.
2010-03-09 Dan GohmanDon't try to fold V_SET0 and V_SETALLONES to loads...
2010-03-09 Bill WendlingThis is part of an LLC-beta test used to test <rdar...
2010-03-09 Bill WendlingPrint blank line and clear stubs vector.
2010-03-09 Bill WendlingMC-ize the stub printing in ARM.
2010-03-08 Chris Lattnerdon't reset defaults.
2010-03-08 Bob WilsonFix a crash compiling 254.gap for Thumb2. The Thumb2...
2010-03-08 Kevin EnderbyFix the vmxon entry in the X86InstrInfo.td so it has...
2010-03-08 Daniel DunbarX86: Fix encoding for TEST{8,16,32}rr.
2010-03-08 Devang PatelAvoid using DIDescriptor.isNull().
2010-03-08 Devang PatelRevert r97947.
2010-03-08 Chris Lattnerdisambiguate some types, add a fixme about some
2010-03-08 Chris Lattnerfix some more ambiguous patterns, remove another nontem...
2010-03-08 Chris LattnerCorrect immediate sizes.
2010-03-08 Chris Lattnerfix a type compatibility bug. imm is i32 in the input
2010-03-08 Chris Lattnerfix a bunch of partially ambiguous patterns on ARM...
2010-03-08 Chris LattnerFix a bunch of ambiguous patterns which tblgen happens...
2010-03-08 Chris Lattnertidy up
2010-03-08 Devang PatelAvoid using DIDescriptor.isNull().
next