Implement and use new method Function::hasAddressTaken().
[oota-llvm.git] / lib /
2009-06-10 Jay FoadImplement and use new method Function::hasAddressTaken().
2009-06-10 Sanjiv GuptaRemove warnings: no newline at end of file.
2009-06-09 Anton KorobeynikovSilence a warning
2009-06-09 Jay FoadRemove an unused function SafeToDestroyConstant()....
2009-06-09 Bill WendlingSimplified logic of this if-then statement to reduce...
2009-06-09 Owen AndersonAdd the beginnings of an implementatation of lazy liven...
2009-06-09 Dan GohmanUse expandCodeFor instead of expand when the result...
2009-06-09 Sanjiv GuptaPIC16 emits auto variables as globals. When optimizer...
2009-06-08 Anton KorobeynikovTypo
2009-06-08 Anton KorobeynikovRevert hunk commited by accident
2009-06-08 Anton KorobeynikovThe attached patches implement most of the ARM AAPCS...
2009-06-08 Anton KorobeynikovSeparate V6 from V6T2 since the latter has some extra...
2009-06-08 Anton KorobeynikovAdd helper for checking of Thumb1 mode
2009-06-08 Bill WendlingRevert r72898. It does not solve the problem I want...
2009-06-07 Bruno Cardoso LopesDelete comment and fix typo
2009-06-07 Bruno Cardoso LopesFix wrong elf class and byte order initializations.
2009-06-07 Bruno Cardoso LopesSimple ELF32/64 binary files can now be emitted for...
2009-06-07 Eli FriedmanTweak the expansion code for BIT_CONVERT to generate...
2009-06-07 Eli FriedmanGet rid of some unnecessary code.
2009-06-07 Nick LewyckyCreate FunctionType::isValidArgumentType to go along...
2009-06-07 Eli FriedmanSlightly generalize the code that handles shuffles...
2009-06-07 Nick LewyckyRemove cyclic MDNode detection. Any attempt to create...
2009-06-07 Nick LewyckyRefuse metadata* type for function arguments.
2009-06-07 Eli FriedmanPR3628: Add patterns to match SHL/SRL/SRA to the corres...
2009-06-06 Nick LewyckyDon't crash on multiple return value with no obvious...
2009-06-06 Eli FriedmanPR4340: Run SimplifyDemandedVectorElts on insertelement...
2009-06-06 Jay FoadUse cast<> instead of dyn_cast<> for things that are...
2009-06-06 Dan GohmanRename UnknownValue to CouldNotCompute, since it holds...
2009-06-06 Eli FriedmanFix the expansion for CONCAT_VECTORS so that it doesn...
2009-06-06 Eli FriedmanFactor out a couple of helpers.
2009-06-06 Eli FriedmanAvoid crashing on a variable-index insertelement with...
2009-06-06 Eli FriedmanGet rid of some bogus patterns for X86vzmovl. Don...
2009-06-06 Eli FriedmanFix an obvious typo.
2009-06-06 Bruno Cardoso Lopesx86_64 now uses the correct ELF e_machine type
2009-06-06 Eli FriedmanGet rid of a bogus pattern that interferes with optimiz...
2009-06-06 Eli FriedmanPR2598: make sure to expand illegal forms of integer...
2009-06-06 Bruno Cardoso LopesRemove elf specific info from ELFWriter.h to Elf.h...
2009-06-06 Eli FriedmanMake SINT_TO_FP/UINT_TO_FP vector legalization queries...
2009-06-05 Devang PatelSimplify.
2009-06-05 Dan GohmanAdd explicit keywords.
2009-06-05 Devang PatelSimplify.
2009-06-05 Devang PatelAdd new function attribute - noimplicitfloat
2009-06-05 Nate BegemanAdapt the x86 build_vector dagcombine to the current...
2009-06-05 Evan ChengChanging allocation ordering from r3 ... r0 back to...
2009-06-05 Devang PatelEvan thinks NoImplicitFloat check is not required here.
2009-06-05 Dan GohmanFix a copy+pasto in an assertion string that Jay Foad...
2009-06-05 Evan ChengWhen merging multiple load / store instructions. Use...
2009-06-05 Evan ChengCode clean up: return vector by reference rather than...
2009-06-05 Dan GohmanMove SCEVExpander::getOrInsertCanonicalInductionVariabl...
2009-06-05 Dan GohmanRemove some unnecessary #includes.
2009-06-05 Dan GohmanUpdate the Verifier to be aware of the difference betwe...
2009-06-05 Sanjiv GuptaLower i16/i32 sdiv/udiv/srem/urem using libcalls.
2009-06-05 Sanjiv GuptaAllow libcalls for i16 sdiv/udiv/rem operations.
2009-06-05 Bruno Cardoso LopesELF Code Emitter now uses CurBufferPtr, BufferBegin...
2009-06-04 Dan GohmanFix an erroneous check for isFNeg; the FNeg case is...
2009-06-04 Bill WendlingThe DWARF unwind info was incorrect. While compiling...
2009-06-04 Dan GohmanSplit the Add, Sub, and Mul instruction opcodes into...
2009-06-04 Devang PatelAdd new function attribute - noredzone.
2009-06-04 Dale JohannesenFix FP_TO_UINT->i32 on ppc32 -mcpu=g5. This was
2009-06-04 Evan ChengRALinScan::attemptTrivialCoalescing() was returning...
2009-06-04 Evan ChengA value defined by an implicit_def can be liven to...
2009-06-04 Lang HamesRemoved SimpleRewriter.
2009-06-04 Dan GohmanDon't do the X * 0.0 -> 0.0 transformation in instcombi...
2009-06-04 Dan GohmanFix comments.
2009-06-04 Sanjiv GuptaRemove unused code.
2009-06-04 Sanjiv GuptaCustom lower SUB with two register operands.
2009-06-04 Torok EdwinFix comments.
2009-06-04 Torok EdwinAdd support for outputting ANSI colors to raw_fd_ostream.
2009-06-04 Eli FriedmanPR3739, part 2: Use an explicit store to spill XMM...
2009-06-04 Eli FriedmanPR3739, part 1: Disable the red zone on Win64.
2009-06-04 Dan GohmanRemove a #include of <iostream>.
2009-06-04 Evan ChengRe-apply 72756 with fixes. One of those was introduced...
2009-06-04 Lang HamesRemoved more testing code that snuck in earlier.
2009-06-04 Bruno Cardoso LopesUse uint8_t and int32_t in {JIT,Machine}CodeEmiters
2009-06-03 Stuart HastingsEvan says it's wrong; back out 72808.
2009-06-03 Stuart HastingsRecognize another euphemism for MOVDQ2Q.
2009-06-03 Evan ChengFor Darwin / x86_64, override -relocation-model=static...
2009-06-03 Dan GohmanConvert Alpha and Mips to use a MachineFunctionInfo...
2009-06-03 Dan GohmanRemove the redundant TM member from X86DAGToDAGISel...
2009-06-03 Dan GohmanDon't attempt to simplify an non-affine IV expression...
2009-06-03 Mike StumpMake the buildbot see green (to make it easier to spot...
2009-06-03 Bruno Cardoso LopesMove ELFCodeEmiter stuff to new files
2009-06-03 Bruno Cardoso LopesRevert 72650
2009-06-03 Dan GohmanRemove unnecessary #includes.
2009-06-03 Sanjiv GuptaEmit file directives correctly in case of a .bc is...
2009-06-03 Sanjiv GuptaFrameIndex could be used as a value (addressof (arg...
2009-06-03 Oscar FuentesCMake: Added missing source file to lib/CodeGen/CMakeLi...
2009-06-03 Sanjiv GuptaFixed a bug in which signed comparisons were being...
2009-06-03 Duncan SandsAvoid a warning "'U' might be used uninitialized in
2009-06-03 Duncan SandsAt a newline at the end of this file.
2009-06-03 Evan ChengFix for PR4225: When rewriter reuse a value in a physic...
2009-06-03 Evan ChengTemporarily revert 72756 for now.
2009-06-03 Evan ChengFold preceding / trailing base inc / dec into the singl...
2009-06-03 Evan ChengIf there is a def of a super-register followed by a...
2009-06-03 Bruno Cardoso LopesMove structures and classes into header files, providin...
2009-06-03 Dan GohmanRevert r72734. The Darwin assembler doesn't support...
2009-06-02 Dan GohmanChange ConstantFoldConstantExpression to accept a null
2009-06-02 Dan GohmanFix CodeGenPrepare's address-mode sinking to handle...
2009-06-02 Lang HamesFixed warning, removed some temporary validation code...
2009-06-02 Evan ChengOn Darwin x86_64 small code model doesn't guarantee...
next