aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils
AgeCommit message (Expand)Author
2010-07-09cache result of operator*Gabor Greif
2010-07-09cache result of operator*Gabor Greif
2010-07-09cache result of operator*Gabor Greif
2010-07-09cache result of operator*Gabor Greif
2010-07-09cache result of operator*Gabor Greif
2010-07-09cache result of operator*Gabor Greif
2010-07-09cache operator*'s result (in multiple functions)Gabor Greif
2010-07-02MDString is already checked earlier.Devang Patel
2010-06-30lowerinvoke needs to handle aggregate function args like sjlj eh does.Jim Grosbach
2010-06-30use getArgOperand instead of getOperandGabor Greif
2010-06-28use CallInst::ArgOffsetGabor Greif
2010-06-28use ArgOperand API and CallInst::ArgOffsetGabor Greif
2010-06-25The hasMemory argument is irrelevant to how the argumentDale Johannesen
2010-06-25use ArgOperand API (one more hunk I could split)Gabor Greif
2010-06-25use ArgOperand API (some hunks I could split)Gabor Greif
2010-06-24use callsite to obtain all argumentsGabor Greif
2010-06-24Use ValueMap instead of DenseMap.Devang Patel
2010-06-24Use available typedef for " DenseMap<const Value*, Value*>".Devang Patel
2010-06-23Cosmetic change.Devang Patel
2010-06-22Revert 106592 for now. It causes clang-selfhost build failure.Devang Patel
2010-06-22If a metadata operand is seeded in value map and the metadata should also be ...Devang Patel
2010-06-22While cloning a module, clone metadata attached with instructions.Devang Patel
2010-06-22Clone named metadata while cloning a module.Devang Patel
2010-06-22Use pre-increment instead of post-increment when the result is not used.Dan Gohman
2010-06-22Revert 106528. It is causing self host failures.Devang Patel
2010-06-22Do not rely on DenseMap slot which can be easily invalidated when DenseMap gr...Devang Patel
2010-06-22Revert my change to clone named metadata. Buildbots are complaining.Bob Wilson
2010-06-22Include named metadata when cloning a module.Bob Wilson
2010-06-21Use A.append(...) instead of A.insert(A.end(), ...) when A is aDan Gohman
2010-06-16remove trailing whitespaceJim Grosbach
2010-06-15simplify-libcalls: fold strstr(a, b) == a -> strncmp(a, b, strlen(b)) == 0Benjamin Kramer
2010-06-04Copy location info for current function argument from dbg.declare if respecti...Devang Patel
2010-06-01Remove unused codeJim Grosbach
2010-06-01fix think-oJim Grosbach
2010-06-01Simplify things a bit more. Fix prototype to use SmallVectorImpl andJim Grosbach
2010-06-01mirror of r105280 changes for LowerInvoke, which uses the same basic logic hereJim Grosbach
2010-06-01Use SmallVector instead of std::vector.Jim Grosbach
2010-05-31Fix PR7272: when inlining through a callsite with byval arguments,Duncan Sands
2010-05-31The memcpy intrinsic only takes i8* for %src and %dst, so cast them to thatNick Lewycky
2010-05-28Move FindAvailableLoadedValue isSafeToLoadUnconditionally out ofDan Gohman
2010-05-28Fix typo.Devang Patel
2010-05-28Fix typo.Devang Patel
2010-05-27Do not drop location info for inlined function args.Devang Patel
2010-05-11Fixes for Microsoft Visual Studio 2010, from Steven Watanabe!Douglas Gregor
2010-05-07Wrap const MDNode * inside DIDescriptor.Devang Patel
2010-05-07Use overloaded operators instead of DIDescriptor::getNode()Devang Patel
2010-05-04Combine the implementations of the core part of the SSAUpdater andBob Wilson
2010-05-01rename InlineInfo.DevirtualizedCalls -> InlinedCalls toChris Lattner
2010-05-01Implement rdar://6295824 and PR6724 with two tiny changesChris Lattner
2010-04-26Fix a problem that lower invoke has with allocas (PR6694), and Chris Lattner