Add support for frameworks. Patch by Shantonu Sen!
[oota-llvm.git] / lib /
2008-01-27 Owen AndersonReg alloc doesn't really need LiveVariables.
2008-01-27 Nick LewyckyBe more careful modifying the use_list while also itera...
2008-01-27 Duncan SandsRevert r46393: readonly/readnone functions are no
2008-01-27 Chris LattnerImplement some dag combines that allow doing fneg/fabs...
2008-01-27 Chris Lattneradd a note
2008-01-27 Chris LattnerUse fldz and fld1 for long double constants instead...
2008-01-27 Bill WendlingThe CorrelatedExpressionElimination pass is known to...
2008-01-27 Chris LattnerFor long double constants, print an approximation of...
2008-01-27 Chris LattnerFold fptrunc(add (fpextend x), (fpextend y)) -> add...
2008-01-26 Chris LattnerAdd some notes.
2008-01-26 Chris LattnerRemove some code for inferring alignment info from...
2008-01-26 Chris LattnerInfer alignment of loads and increase their alignment...
2008-01-26 Bill WendlingIf there's no instructions being emitted on X86 for...
2008-01-26 Bill WendlingIf there are no machine instructions emitted for a...
2008-01-26 Duncan SandsCreate an explicit copy for byval parameters even
2008-01-26 Bill WendlingIf we have a function like this:
2008-01-26 Chris LattnerFix some bugs in SimplifyNodeWithTwoResults where it...
2008-01-26 Chris Lattnerdon't bother making x&-1 only to simplify it in dag...
2008-01-25 Chris Lattnerreduce indentation
2008-01-25 Duncan SandsDo this more neatly.
2008-01-25 Chris Lattnerfix long lines.
2008-01-25 Chris LattnerJITEmitter.cpp was trying to sync the icache for functi...
2008-01-25 Owen AndersonDeadStoreElimination can treat byval parameters as...
2008-01-25 Chris LattnerAdd skeletal code to increase the alignment of loads...
2008-01-25 Chris Lattnermove MachineFrameInfo::CreateFixedObject out of line...
2008-01-25 Chris Lattnerinclude alignment and volatility information in -view...
2008-01-25 Chris Lattneroptimize fxor like for
2008-01-25 Chris LattnerAdd target-specific dag combines for FAND(x,0) and...
2008-01-25 Anton KorobeynikovProvide correct DWARF register numbering for debug...
2008-01-24 Chris LattnerDon't dump the function!
2008-01-24 Chris LattnergetUnderlyingObject can return null, handle this.
2008-01-24 Chris LattnerTeach basicaa that 'byval' arguments define a new memor...
2008-01-24 Chris LattnerAdd hasByValAttr() and hasNoAliasAttr() methods to...
2008-01-24 Chris Lattnerclarify a comment, thanks Duncan.
2008-01-24 Chris LattnerSignificantly simplify and improve handling of FP funct...
2008-01-24 Chris LattnerFix this buggy transformation. Two observations:
2008-01-24 Chris LattnerThe dag combiner is missing revisiting nodes that it...
2008-01-24 Chris Lattnerfold fp_round(fp_round(x)) -> fp_round(x).
2008-01-24 Anton KorobeynikovFix potential buffer overflow
2008-01-24 Owen AndersonMove some functionality for adding flags to MachineInst...
2008-01-24 Evan ChengForgot these.
2008-01-23 Evan ChengLet each target decide byval alignment. For X86, it...
2008-01-23 Duncan SandsThe last pieces needed for loading arbitrary
2008-01-23 Dale JohannesenHonor explicit section information on Darwin.
2008-01-22 Owen AndersonFix an iterator invalidation issue.
2008-01-22 Evan ChengSSE varargs arguments are passed in memory.
2008-01-22 Chris LattnerSimplify SelectionDAG::getNode so that a big switch...
2008-01-22 Duncan SandsThe final piece needed for storing arbitrary precision
2008-01-22 Nick LewyckyEnable the fix I just checked in, silly me.
2008-01-22 Nick LewyckyMultiply can be evaluated in a different type, so long...
2008-01-22 Chris LattnerTrivial patch to fix two warnings, please pull into...
2008-01-21 Owen AndersonClarify a deviation from the original algorithm.
2008-01-21 Owen AndersonImprove a few comments.
2008-01-21 Duncan SandsIt turns out that in C++ it is legal to declare functions
2008-01-21 Duncan SandsCheck that sret is only used on pointers to types
2008-01-21 Duncan SandsBe consistent with other attribute methods, and
2008-01-21 Dale JohannesenMove DAG-changing code out of #ifndef NDEBUG.
2008-01-20 Duncan SandsMake sure the caller doesn't use freed memory.
2008-01-20 Anton KorobeynikovHonour ByVal parameter attribute for name decoration
2008-01-20 Anton KorobeynikovRemove Darwin'ism
2008-01-20 Anton KorobeynikovEnable PIC codegen on x86-64/linux
2008-01-20 Duncan SandsInitializing an unsigned with ~0UL causes the compiler
2008-01-20 Dale JohannesenDo not generate a FP_ROUND of f64 to f64.
2008-01-19 Duncan SandsNeed to handle any 'nest' parameter before integer
2008-01-19 Ted KremenekAdded FoldingSet style 'profiling' support for APSInt.
2008-01-19 Ted KremenekAdded FoldingSet style 'profiling' support for APInt.
2008-01-19 Ted KremenekMade 'FoldingSetNodeID' a proper class instead of a...
2008-01-18 Dale JohannesenImplement flt_rounds for PowerPC.
2008-01-18 Chris Lattnerremove extraneous &'s.
2008-01-18 Chris Lattnerget symbolic information for ppc ldbl nodes.
2008-01-18 Chris LattnerFix a latent bug exposed by my truncstore patch. We...
2008-01-18 Chris Lattnermake a method public
2008-01-17 Dale JohannesenRevert the part of 45849 that treated weak globals
2008-01-17 Dale JohannesenRevert the part of 45848 that treated weak globals
2008-01-17 Scott MichelForward progress: crtbegin.c now compiles successfully!
2008-01-17 Chris LattnerThis commit changes:
2008-01-17 Chris Lattnercode cleanups, no functionality change.
2008-01-17 Chris Lattner* Introduce a new SelectionDAG::getIntPtrConstant method
2008-01-17 Evan ChengDAE bug fix. Don't lose parameter attributes on vararg...
2008-01-17 Evan ChengWhen a live virtual register is being clobbered by...
2008-01-17 Chris LattnerFix arg promotion to propagate the correct attrs on...
2008-01-17 Evan ChengReplace std::vector<bool> with BitVector.
2008-01-16 Evan ChengFixes a nasty dag combiner bug that causes a bunch...
2008-01-16 Duncan SandsTrampoline support for x86-64. This looks like
2008-01-16 Chris LattnerHandle attribute(used) global variables that are i8.
2008-01-16 Dale JohannesenDo not mark EH tables no-dead-strip unless the
2008-01-16 Chris LattnerFix a ppc long double regression I introduced yesterday...
2008-01-16 Chris Lattnermerge a few pieces of code that do the store/load to...
2008-01-16 Chris Lattnerrename ExpandBIT_CONVERT to EmitStackConvert, generalizing
2008-01-16 Chris Lattnersimplify a bunch of code by using SelectionDAG::CreateS...
2008-01-16 Chris LattnerChange legalizeop of FP_ROUND and FP_EXTEND to not...
2008-01-16 Chris Lattnermake it more clear that this predicate only applies...
2008-01-16 Chris Lattnerintroduce a isTypeInSSEReg predicate, which allows...
2008-01-16 Chris LattnerMy previous commit had an incomplete message, it should...
2008-01-16 Chris Lattnermake the 'fp return in ST(0)' optimization smart enough to
2008-01-16 Chris Lattnervarious whitespace cleanups, no functionality change.
2008-01-16 Chris LattnerFactor the ReachesChainWithoutSideEffects out of dag...
2008-01-16 Devang PatelDo not strip llvm.used values.
2008-01-15 Dale JohannesenMissed file from previous checkin.
2008-01-15 Dale JohannesenFix and enable EH for x86-64 Darwin. Adds
next