Fix an issue that Chris noticed, where local PRE was not properly instantiating
[oota-llvm.git] / include /
2008-12-01 Bill WendlingExpand getVTList, getNodeValueTypes, and SelectNodeTo...
2008-12-01 Chris Lattnerreenable array_pod_sort, this time hopefully happy...
2008-12-01 Chris Lattnerdon't #include <algorithm> into the llvm namespace.
2008-12-01 Chris Lattnerswitch to std::sort until I have time to sort this...
2008-12-01 Chris Lattnercleanups suggested by duncan, thanks!
2008-12-01 Chris Lattnerdefine array_pod_sort in terms of operator< instead...
2008-12-01 Duncan SandsThere are no longer any places that require a
2008-12-01 Duncan SandsChange the interface to the type legalization method
2008-12-01 Chris Lattnerdon't assume iterators implicitly convert to pointers.
2008-12-01 Chris LattnerIntroduce a new array_pod_sort function and switch...
2008-12-01 Chris LattnerReimplement the non-local dependency data structure...
2008-12-01 Eli FriedmanFix bogus assertion using getSExtValue for legitimate...
2008-11-30 Chris LattnerEliminate the DepResultTy abstraction. It is now compl...
2008-11-30 Chris LattnerCache TargetData/AliasAnalysis in the pass instead...
2008-11-30 Chris Lattneradd the rest of the comparison routines.
2008-11-30 Chris LattnerTwo changes: Make getDependency remove QueryInst for...
2008-11-30 Chris Lattnerintroduce a typedef, no functionality change.
2008-11-30 Chris LattnerChange NonLocalDeps to be a densemap of pointers to...
2008-11-30 Chris Lattnerimplement a fixme by introducing a new getDependencyFro...
2008-11-30 Chris LattnerREmove an old fixme, resolve another fixme by adding...
2008-11-30 Chris Lattnerfix indentation. std::pair is "isPod" if the first...
2008-11-29 Chris LattnerEliminate the dropInstruction method, which is not...
2008-11-29 Nick LewyckyAdd protected visibility to libLTO.
2008-11-29 Chris Lattnerimplement some fixme's: when deleting an instruction...
2008-11-29 Chris LattnerChange MemDep::getNonLocalDependency to return its...
2008-11-29 Chris Lattnerreimplement getNonLocalDependency with a simpler worklist
2008-11-29 Chris Lattnertidy up some variable names.
2008-11-29 Chris Lattnerrename some maps.
2008-11-29 Torok Edwinprotect against negative values that would exceed allow...
2008-11-29 Chris Lattnerapparently GCC doesn't believe that I understand C
2008-11-29 Duncan SandsTypo fix.
2008-11-29 Chris LattnerSplit getDependency into getDependency and getDependenc...
2008-11-29 Chris LattnerNow that DepType is private, we can start cleaning...
2008-11-29 Chris LattnerIntroduce and use a new MemDepResult class to hold...
2008-11-29 Chris LattnerReimplement the internal abstraction used by MemDep...
2008-11-29 Chris LattnerFix sentinels to use correctly 'aligned' pointers.
2008-11-29 Chris LattnerFix spello, add DenseMapInfo specialization for Pointer...
2008-11-28 Chris Lattnerfix comment typo
2008-11-28 Chris Lattnerfix a bug.
2008-11-28 Chris Lattneradd a generic "bitmangled pointer" class, which allows...
2008-11-28 Chris Lattnercomment cleanups.
2008-11-28 Chris Lattnerforward declare CallSite instead of #includ'ing it.
2008-11-28 Chris Lattnerrename "ping" to "verifyRemoved". I don't know why...
2008-11-28 Chris Lattnercomment and indentation improvements.
2008-11-28 Mikhail GlushenkovAdd 'hidden' and 'really_hidden' option properties.
2008-11-27 Chris LattnerEnhance RecursivelyDeleteTriviallyDeadInstructions...
2008-11-27 Chris Lattnerremove doConstantPropagation and dceInstruction, they...
2008-11-27 Chris Lattnerimprove const correctness.
2008-11-27 Chris Lattnermove FindAvailableLoadedValue from JumpThreading to...
2008-11-27 Chris Lattnermove MergeBasicBlockIntoOnlyPred to Transforms/Utils.
2008-11-27 Evan ChengOn x86 favors folding short immediate into some arithme...
2008-11-27 Ted KremenekAdd typedef to StringMapEntry.
2008-11-26 Mikhail GlushenkovDisallow multiple edges.
2008-11-26 Devang PatelFix typo.
2008-11-26 Mikhail GlushenkovFix the -I option (llvmc -I dir1 -I dir2 didn't work).
2008-11-26 Mikhail GlushenkovRefactor Tools.td to remove repetition.
2008-11-26 Dan GohmanLiveRanges are represented as half-open ranges. Fix...
2008-11-26 Ted KremenekAdd 'tell' method to raw_fd_ostream that clients can...
2008-11-26 Chris Lattneradd a long-overdue AllocaInst::isStaticAlloca method.
2008-11-26 Nuno Lopeschange AnnotationManager to use 'const char*' instead...
2008-11-25 Mikhail GlushenkovMake -fsyntax-only, -include and -emit-llvm work for...
2008-11-25 Dan GohmanInitial support for anti-dependence breaking. Currently...
2008-11-24 Dan GohmanMove the scheduler constructor functions to SchedulerRe...
2008-11-24 Dan GohmanFix an unused-parameter warning.
2008-11-24 Dan GohmanCheck in the rest of this change. The isAntiDep flag...
2008-11-24 Duncan SandsIf the type legalizer actually legalized anything
2008-11-24 Evan ChengMove target independent td files from lib/Target/ to...
2008-11-23 Scott MichelRoll back rev 59890, since Chris says this can never...
2008-11-23 Duncan SandsRename SetCCResultContents to BooleanContents. In
2008-11-22 Scott MichelCheck for NULL before traversing the isa<> type hierarc...
2008-11-22 Anton KorobeynikovMake a convenient helper for printing offsets.
2008-11-22 Bill WendlingCleanup of the [SU]ADDO type legalization code. Patch...
2008-11-21 Chris Lattnerreapply Sanjiv's patch to genericize memcpy/memset...
2008-11-21 Bill WendlingRevert r59802. It was breaking the build of llvm-gcc:
2008-11-21 Sanjiv GuptaMake mem[cpy,move,set] intrinsics overloaded.
2008-11-21 Dan GohmanAdd a flag to SDep for tracking which edges are anti...
2008-11-21 Bill WendlingUpdate comment to reflect a semblance of reality.
2008-11-21 Dan GohmanRename SDep's isSpecial to isArtificial, to make this...
2008-11-21 Bill WendlingRename "ADDO" to "SADDO" and "UADDO". The "UADDO" isn...
2008-11-21 Bill WendlingImplement the sadd_with_overflow intrinsic. This is...
2008-11-21 Bill WendlingUpdate comment.
2008-11-21 Dan GohmanImplement ComputeLatency for MachineInstr ScheduleDAGs...
2008-11-21 Bill WendlingAdd UADDO and SADDO nodes. These will be used for deter...
2008-11-21 Bill WendlingIntroduce two new "add" intrinsics. These return the...
2008-11-20 Dan GohmanDelete redundant inline keywords.
2008-11-20 Dan GohmanDoxygenate comments.
2008-11-20 Bill WendlingReformatting. No functionality change.
2008-11-20 Chris Lattneradd an operator= to assign to smallstring.
2008-11-20 Evan Cheng- Register scavenger should use MachineRegisterInfo...
2008-11-20 Dan GohmanFactor out the code for verifying the work of the sched...
2008-11-19 Dan GohmanExperimental post-pass scheduling support. Post-pass...
2008-11-19 Dan GohmanMove the code for printing a graph node label for an...
2008-11-19 Dan GohmanConvert SUnit's dump method into a print method and...
2008-11-19 Devang PatelDo not use separate utility to walk all instructions...
2008-11-19 Sanjiv GuptaInt type for PIC16 is i16. Added i16 intrinsics for...
2008-11-19 Chris Lattneradd a write method.
2008-11-19 Daniel DunbarLLVMC2: -emit-llvm stops compilation.
2008-11-19 Daniel DunbarLLVMC2: Teach llvm_gcc_c tool about -include and -fsynt...
2008-11-18 Evan ChengFix indentation.
2008-11-18 Devang PatelAdd new helper pass that strips all symbol names except...
next