Comment cleanups.
[oota-llvm.git] / lib /
2010-12-21 Bill WendlingComment cleanups.
2010-12-21 Jakob Stoklund OlesenAdd EdgeBundles to SplitKit.
2010-12-21 Jakob Stoklund OlesenUse IntEqClasses to compute connected components of...
2010-12-21 Jakob Stoklund OlesenAdd ADT/IntEqClasses.h as a light-weight implementation...
2010-12-20 Owen AndersonSpeculatively revert the use of DenseMap in LazyValueIn...
2010-12-20 Owen AndersonAttempt to appease the DragonEgg buildbots.
2010-12-20 Owen AndersonRevert r122114 (CallbackVH observing use-list changes...
2010-12-20 Nate BegemanImplement feedback from Bruno on making pblendvb an...
2010-12-20 Owen AndersonConvert one of LVI's primary maps to a DenseMap, now...
2010-12-20 Wesley PeckTeach the MBlaze disassembler to disassemble special...
2010-12-20 Roman DivackySet the value of absolute symbols.
2010-12-20 Duncan SandsOops, forgot to add the pass itself!
2010-12-20 Duncan SandsAdd a new convenience pass for testing InstructionSimpl...
2010-12-20 Wesley PeckTeach the MBlaze asm parser how to parse special purpos...
2010-12-20 Dale JohannesenCosmetic changes.
2010-12-20 Benjamin KramerAdd a check missing from my last commit and avoid a...
2010-12-20 Owen AndersonMore LVI cleanups, including trying to simplify the...
2010-12-20 Owen AndersonReuse the reference into the LVI cache throughout the...
2010-12-20 Benjamin KramerReduce indentation.
2010-12-20 Benjamin KramerTeach InstCombine to merge (icmp ult (X + CA), C1)...
2010-12-20 Daniel DunbarAdd header...
2010-12-20 Daniel DunbarX86/MC/Mach-O: Split out createX86MachObjectWriter().
2010-12-20 Duncan SandsHave SimplifyBinOp dispatch Xor, Add and Sub to the...
2010-12-20 Michael J. SpencerSupport/PathV2: Add missing has_relative_path impl.
2010-12-20 Duncan SandsThere is no need for isAssociative to take the type...
2010-12-20 Chris Lattnerfix PR8807 by making transformConstExprCastCall aware...
2010-12-20 Chris Lattnervarious cleanups for transformConstExprCastCall
2010-12-20 Chris Lattnerwhen eliding a byval copy due to inlining a readonly...
2010-12-20 Chris Lattnerpull byval processing out to its own helper function.
2010-12-20 Chris Lattnerfix PR8769, a miscompilation by inliner when inlining...
2010-12-20 Cameron ZwarichMachineVerifier should count landing pad successors...
2010-12-20 Cameron ZwarichTeach MachineVerifier that early clobber defs begin...
2010-12-20 Cameron ZwarichAdd a missing check from r122218.
2010-12-20 Chris Lattnerimplement type legalization promotion support for SMULO...
2010-12-20 Chris Lattnernow that addc/adde are gone, "ADDC" in the X86 backend...
2010-12-20 Cameron ZwarichDon't assume that an instruction ending a register...
2010-12-20 Chris LattnerWe lower setb to sbb with the hope that the and will...
2010-12-20 Mon P WangAvoid dropping the address space when InstCombine optim...
2010-12-20 Chris Lattneruse for loop over types.
2010-12-20 Chris LattnerChange the X86 backend to stop using the evil ADDC...
2010-12-20 Chris LattnerFix a bug in the scheduler's handling of "unspillable...
2010-12-20 Chris Lattnerthe result of CheckForLiveRegDef is dead, remove it.
2010-12-20 Chris Lattnerreduce indentation, no functionality change.
2010-12-20 Cameron ZwarichIgnore debug values when performing MachineVerifier...
2010-12-19 Mon P WangPrevents PerformShuffleCombine from creating a node...
2010-12-19 Cameron ZwarichEarly clobber operands are allowed to be defined at...
2010-12-19 Chris Lattnerfix an oversight caught by Frits!
2010-12-19 Cameron ZwarichFix PR8815 by checking for an explicit clobber def...
2010-12-19 Chris Lattnerimprove the setcc -> setcc_carry optimization to happen...
2010-12-19 Cameron ZwarichFix PR8811 by teaching MachineVerifier about optional...
2010-12-19 Cameron ZwarichStrongPHIElimination will never run before TwoAddressIn...
2010-12-19 Chris Lattnersimplify some code to just reuse a setcc if we can...
2010-12-19 Nick LewyckyAdd missing standard headers. Patch by Joerg Sonnenberger!
2010-12-19 Nick LewyckyAdd missing std:: prefixes to some calls. C++ doesn...
2010-12-19 Chris Lattnerteach MaskedValueIsZero how to analyze ADDE. This is
2010-12-19 Chris Lattnertidy up
2010-12-19 Chris Lattnernow that generic vector types aren't selected onto...
2010-12-19 Chris Lattnerreduce copy/paste programming with the power of for...
2010-12-19 Chris LattnerX86 supports i8/i16 overflow ops (except i8 multiplies...
2010-12-19 Chris Lattnermove a transformation to a more logical place, simplify...
2010-12-19 Chris Lattnerrecognize an unsigned add with overflow idiom into...
2010-12-19 Chris Lattneroptimize uadd(x, cst) into a comparison when the normal
2010-12-19 Chris Lattneruse IC.ReplaceInstUsesWith instead of a raw RAUW so...
2010-12-19 Chris Lattnergeneralize the sadd creation code to not require that the
2010-12-19 Chris Lattnerfix another miscompile in the llvm.sadd formation logic...
2010-12-19 Cameron ZwarichRemove some checks for StrongPHIElim. These checks...
2010-12-19 Chris Lattnerfix a bug (possibly 8816) in the sadd forming xform...
2010-12-19 Chris Lattnerrework the code added in r122072 to pull it out to...
2010-12-19 Chris LattnerEnhance LICM to promote alias sets whose pointers thems...
2010-12-19 Chris Lattnerfix PR8602, a bug in an assertion: a volatile store...
2010-12-19 Chris Lattnerfix PR8642: if a critical edge has a PHI value that...
2010-12-19 Chris Lattnerrevert r122164, I'm going to go with a different approach.
2010-12-19 Rafael EspindolaFixed version of 122160 (the previous one would fold...
2010-12-19 Rafael EspindolaRevert 122160 while I debug it.
2010-12-19 Chris Lattnerfirst step to fixing PR8642: don't fold away empty...
2010-12-19 Rafael EspindolaMove all folding to AttemptToFoldSymbolOffsetDifference.
2010-12-18 Michael J. SpencerFix whitespace.
2010-12-18 Michael J. SpencerSupport/PathV1: Deprecate get{Basename,Dirname,Suffix}.
2010-12-18 Chris Lattnersimplify this a bit.
2010-12-18 Anton KorobeynikovRestore the behavior of frame lowering before my refact...
2010-12-18 Roman DivackyAdd support for lexing single quotes like 'c'.
2010-12-18 Owen AndersonRevert r122143 through r122140, which collectively...
2010-12-18 Rafael EspindolaMerge isAbsolute into IsSymbolRefDifferenceFullyResolved.
2010-12-18 Rafael EspindolaRemove the MCObjectFormat class.
2010-12-18 Rafael EspindolaAdd a FIXME and explain a hack.
2010-12-18 Michael J. SpencerFix whitespace.
2010-12-18 Michael J. SpencerSupport/PathV1: Deprecate get{Basename,Dirname,Suffix}.
2010-12-18 Rafael EspindolaFix the note.
2010-12-18 Rafael EspindolaRevert 122011, 122012, 122013, 122023 adding back an...
2010-12-18 Jakob Stoklund OlesenApparently, operandices is not a word.
2010-12-18 Rafael EspindolaMove some data to the TargetWriter.
2010-12-18 Jakob Stoklund OlesenTeach the inline spiller to attempt folding a load...
2010-12-18 Jakob Stoklund OlesenTweak debug spew.
2010-12-18 Bill Wendlingr120333 changed the opcode for the Thumb1 stuff from...
2010-12-18 Bill WendlingRemoveUnusedCPEntries can change things. Track it.
2010-12-18 Jakob Stoklund OlesenCheck that the register is live-in to the loop header...
2010-12-18 Nick LewyckyFix GCC warning:
2010-12-18 Rafael EspindolaRelax push instructions.
2010-12-18 Nick LewyckyMake LazyValueInfo non-recursive.
2010-12-18 Bob WilsonRearrange some Neon multiclasses. No functional changes.
next