Move a bunch of methods from CallSite to CallSiteBase, so that they can
[oota-llvm.git] / lib / Transforms /
2010-04-14 Evan Cheng- Code clean up to reduce indentation.
2010-04-14 Gabor Greifperformance: cache the dereferenced use_iterator
2010-04-14 Gabor Greifperformance: cache the dereferenced use_iterator
2010-04-14 Nick LewyckyI don't know how, but I managed to goof the revert...
2010-04-14 Nick LewyckyRevert r101213.
2010-04-14 Nick LewyckyRemove tab.
2010-04-14 Nick LewyckyWhile DAE can't modify the function signature of an...
2010-04-13 Eric ChristopherActually... return after the check for invalid input.
2010-04-13 Owen AndersonRemove SCCVN from the CMake build system.
2010-04-13 Owen AndersonSCCVN, we hardly knew ye!
2010-04-13 Dan GohmanTeach IndVarSimplify how to eliminate remainder operato...
2010-04-12 Dan GohmanSuppress LinearFunctionTestReplace when the computed...
2010-04-12 Dan GohmanDelete this code, which is no longer needed.
2010-04-12 Dan GohmanMove the EliminateIVUsers call back out to its original...
2010-04-12 Dan GohmanUse RecursivelyDeleteTriviallyDeadInstructions in Elimi...
2010-04-12 Eric ChristopherVerify function prototypes before trying to optimize...
2010-04-12 Dan GohmanRe-apply r101000, with a fix: Don't eliminate an icmp...
2010-04-12 Dan GohmanRevert 101000, which is breaking self-host builds.
2010-04-11 Dan GohmanTeach IndVarSimplify how to eliminate comparisons invol...
2010-04-11 Dan GohmanRename isLoopGuardedByCond to isLoopEntryGuardedByCond...
2010-04-10 Chris LattnerImplement support for varargs functions without any...
2010-04-10 Chris Lattnerfix PR6743, a case where we'd delete an instruction...
2010-04-10 Chris Lattnerfix PR6760, a missing check in heap SRoA.
2010-04-09 Dan GohmanWhen determining a canonical insert position, don't...
2010-04-09 Chris Lattnersuck the propagating "has dynamic libs" check into...
2010-04-09 Chris Lattneradd minix support, patch by Kees van Reeuwijk! PR6797
2010-04-09 Wesley PeckAdding IPSCCP and Internalize passes to the C-bindings
2010-04-09 Dan GohmanWhen looking for loop-invariant users, look through...
2010-04-09 Gabor Greifperformance: cache result of looking up user
2010-04-09 Dan GohmanMinor code simplification.
2010-04-09 Gabor Greifconst-ize a predicate
2010-04-09 Dan GohmanRefactor the code for computing the insertion point...
2010-04-09 Chris Lattnerfix a SCCP miscompilation that could happen when a
2010-04-08 Dan GohmanAvoid allocating a value of zero in a register if the...
2010-04-08 Dan GohmanAdd variants of ult, ule, etc. which take a uint64_t...
2010-04-08 Dan GohmanWhen expanding expressions which are using post-inc...
2010-04-07 Dan GohmanSay bitcast instead of bitconvert.
2010-04-07 Eric ChristopherAdd support for stpncpy_chk.
2010-04-07 Chris Lattnerrename llvm::llvm_report_error -> llvm::report_fatal_error
2010-04-07 Dan GohmanGeneralize IVUsers to track arbitrary expressions rathe...
2010-04-07 Gabor Greiffix 80-col violations
2010-04-06 Gabor Greifperformance: get rid of repeated dereferencing of use_i...
2010-04-06 Gabor Greifmake more two predicates constant
2010-04-06 Gabor Greifperformance: get rid of repeated dereferencing of use_i...
2010-04-06 Gabor Greifconst-ize predicate ValueIsOnlyUsedLocallyOrStoredToOne...
2010-04-06 Gabor Greifuse CallSite to access calls vs. invokes uniformly
2010-04-05 Chris Lattnerfix a really nasty bug that Evan was tracking in SCCP...
2010-04-05 Chris Lattnersome code cleanups, use SwitchInst::findCaseValue,...
2010-04-05 Evan ChengCode clean up.
2010-04-04 Mon P WangReapply address space patch after fixing an issue in...
2010-04-03 Chris Lattnerrequire that the branch being controlled by the IV
2010-04-03 Chris Lattneradd integer overflow check for the fp induction variable
2010-04-03 Chris Lattneradd a comment and fix some consistency issues, converting
2010-04-03 Chris Lattnerfix PR6761, a miscompilation due to the fp->int IV...
2010-04-03 Chris Lattnerjust eliminate the uitofp checks. This code isn't...
2010-04-03 Chris Lattnerrename PH -> PN to be consistent with WeakPN and the...
2010-04-03 Chris Lattnerimprove comment and drop a dead check. If PH had
2010-04-03 Chris Lattnerstrength reduce a ridiculous use of APInt.
2010-04-03 Chris Lattnerrename stuff improve comment grammar.
2010-04-03 Chris Lattnersimplify some code and resolve a fixme.
2010-04-03 Chris LattnerThere is no guarantee that the increment and the branch
2010-04-03 Chris Lattnerfirst half of a pass through IndVarSimplify::HandleFloa...
2010-04-03 Chris Lattnerdon't internalize available_externally functions, they are
2010-04-03 Bob WilsonRevert all my SSAUpdater patches. The PHI placement...
2010-04-03 Bob WilsonAdd a DEBUG_TYPE for the SSAUpdater.
2010-04-03 Evan ChengCode refactoring.
2010-04-02 Mon P WangRevert r100191 since it breaks objc in clang
2010-04-02 Mon P WangReapply address space patch after fixing an issue in...
2010-04-02 Dan GohmanManually notify ScalarEvolution before making an operan...
2010-04-02 Bob WilsonRecommit 100158 now that the buildbots are happy again.
2010-04-02 Dan GohmanRevert the recent alignment changes. They're broken...
2010-04-02 Bob WilsonRevert 100158 in case it is causing some of the buildbo...
2010-04-02 Dan GohmanMake globalopt refine global variable alignment.
2010-04-02 Bob WilsonCheck for terminating conditions before adding PHIs...
2010-04-01 Bob WilsonRemove trailing whitespace.
2010-04-01 Bob WilsonRewrite another SSAUpdater function to avoid recursion.
2010-04-01 Bob WilsonChange another SSAUpdater function to avoid recursion.
2010-04-01 Bob WilsonSimplify the code to check for existing PHIs, now that...
2010-04-01 Bob WilsonThe SSAUpdater should avoid recursive traversals of...
2010-04-01 Gabor GreifIntroduce ImmutableCallSite, useful for contexts where...
2010-04-01 Nick LewyckyClean up this file a little, no functionality change...
2010-03-31 Bob WilsonRewrite part of the SSAUpdater to be more careful about...
2010-03-31 Dale JohannesenFix a nasty dangling-pointer heisenbug that could
2010-03-30 Bob WilsonRevert Mon Ping's change 99928, since it broke all...
2010-03-30 Mon P WangAdded support for address spaces and added a isVolatile...
2010-03-30 Dan GohmanFix a grammaro.
2010-03-30 Gabor Greiffix two cases where the arguments were extracted from...
2010-03-27 Jeffrey YasskinRemove another memory leak from ABCD by using Edges...
2010-03-27 Jeffrey YasskinIn ABCD, change the non-null Bound*s to Bound&s.
2010-03-27 Jeffrey YasskinFix a memory leak in ABCD by giving ownership of Bound...
2010-03-27 Eric ChristopherWhen we promote a load of an argument make sure to...
2010-03-26 Dan GohmanIgnore debug intrinsics in yet more places.
2010-03-25 Gabor Greifrename pred_const_iterator to const_pred_iterator for...
2010-03-25 Gabor Greifrename use_const_iterator to const_use_iterator for...
2010-03-25 Chris Lattnerfix PR6642, GVN forwarding from memset to load of the...
2010-03-24 Eric ChristopherTemporarily revert this, it's causing an issue with...
2010-03-24 Evan ChengMove OptChkCall off LibCallOptimization into StrCpyOpt.
2010-03-24 Gabor GreifFinally land the InvokeInst operand reordering.
2010-03-24 Gabor Greiftighten a type and remove trailing whitespace, no funct...
2010-03-24 Gabor Greifincrease const goodness and remove pointless getUser...
next