aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
AgeCommit message (Expand)Author
2012-11-29Initial commit of MemorySanitizer.Evgeniy Stepanov
2012-11-29[asan/tsan] initialize the asan/tsan callbacks in runOnFunction as opposed to...Kostya Serebryany
2012-11-29[asan] when checking the noreturn attribute on the call, also check it on the...Kostya Serebryany
2012-11-29Issue a fatal error if the line doesn't have a regular expression.Nick Lewycky
2012-11-28When we delete a dead basic block, see if any of its successors are dead andBill Wendling
2012-11-28[asan] Split AddressSanitizer into two passes (FunctionPass, ModulePass), LLV...Kostya Serebryany
2012-11-28BBVectorize: Correctly merge SubclassOptionalDataHal Finkel
2012-11-27instcombine: Don't replace all uses for instructions with no usesMeador Inge
2012-11-27Remove the dependent libraries feature.Bill Wendling
2012-11-27tsan: instrument atomic nand operationDmitry Vyukov
2012-11-27instcombine: Migrate sprintf optimizationsMeador Inge
2012-11-26Get rid of the getPointeeAlignment helper function fromEli Friedman
2012-11-26rdar://12329730 (defect 2)Shuxin Yang
2012-11-26Fix a comment bug in toascii simplifierMeador Inge
2012-11-26instcombine: Migrate printf optimizationsMeador Inge
2012-11-26Move the code that uses SCEVs prior to creating the new loops. Nadav Rotem
2012-11-26Remove stray trailing backslashMatt Beaumont-Gay
2012-11-26tsan: fix lint warningsDmitry Vyukov
2012-11-26[tsan] add fail order to compare_exchangeDmitry Vyukov
2012-11-26instcombine: Migrate toascii optimizationsMeador Inge
2012-11-26instcombine: Migrate isascii optimizationsMeador Inge
2012-11-26instcombine: Migrate isdigit optimizationsMeador Inge
2012-11-26instcombine: Migrate *abs optimizationsMeador Inge
2012-11-25instcombine: Migrate ffs* optimizationsMeador Inge
2012-11-25Move the max vector width to a constant parameter. No functionality change.Nadav Rotem
2012-11-25Fix the document style.Nadav Rotem
2012-11-25Refactor the ptr runtime check generation code. No functionality change.Nadav Rotem
2012-11-25Rename method. No functionality change.Nadav Rotem
2012-11-25The induction-pointer work is inspired by a research paper. This commit adds ...Nadav Rotem
2012-11-25Add support for pointer induction variables even when there is no integer ind...Nadav Rotem
2012-11-23CodeGenPrepare: Move ret duplication out of the instruction iteration loop.Benjamin Kramer
2012-11-23Remove unused parameter Penalty from the BoundsChecking pass.Joey Gouly
2012-11-22llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp: Prune AddressSaniti...NAKAMURA Takumi
2012-11-22[asan] rip off the creation of global redzones from the main AddressSanitizer...Kostya Serebryany
2012-11-21PR14055: Implement support for sub-vector operations in SROA.Chandler Carruth
2012-11-20[asan] use names of globals instead of an external set to distinguish the glo...Kostya Serebryany
2012-11-20[asan] don't instrument linker-initialized globals even with external linkage...Kostya Serebryany
2012-11-20[asan] make sure that linker-initialized globals (non-extern) are not instrum...Kostya Serebryany
2012-11-20Use LLVM_ENABLE_DUMP for the variables used in printing as well as theChandler Carruth
2012-11-20Fix PR14132 and handle OOB loads speculated throuh PHI nodes.Chandler Carruth
2012-11-20Make the AttrListPtr object a part of the LLVMContext.Bill Wendling
2012-11-20Add a comment to associate a FIXME with a PR where it is matters.Chandler Carruth
2012-11-20Rework the rewriting of loads and stores for vector and integer allocasChandler Carruth
2012-11-19Clean up handling of always-inline functions in the inliner.Bob Wilson
2012-11-18Remove the last bit of constant folding from LinearizeExprTree (most of it wasDuncan Sands
2012-11-18Fix PR14060, an infinite loop in reassociate. The problem was that one of theDuncan Sands
2012-11-18Don't try to calculate the alignment of an unsigned type. Fixes PR14371!Nick Lewycky
2012-11-17Plug a memory leak in the GCOV profiling emitter, which never released the ed...Benjamin Kramer
2012-11-17LoopVectorizer: Add initial support for pointer induction variables (for exam...Nadav Rotem
2012-11-17Teach SROA rewriteVectorizedStoreInst to handle cases when the loaded value i...Evan Cheng