aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Analysis
AgeCommit message (Expand)Author
2009-02-27Make LoopInfo::print() identify header, exit, and latch blocks,Dan Gohman
2009-02-24Rename ScalarEvolution's getIterationCount to getBackedgeTakenCount,Dan Gohman
2009-02-18Use a sign-extend instead of a zero-extend when promoting aDan Gohman
2009-02-18Clarify the definition of "latch block" in a comment.Dan Gohman
2009-02-18Eliminate several more unnecessary intptr_t casts.Dan Gohman
2009-02-17The debugger sometimes lookup dynamically in the runtime to find ivar info of...Devang Patel
2009-02-17Emit debug info for bitfields.Devang Patel
2009-02-17Add a method to ScalarEvolution for telling it when a loop has beenDan Gohman
2009-02-17Move dumpPassStructure out of line.Dan Gohman
2009-02-17Tidy whitespace.Dan Gohman
2009-02-17Strengthen the "non-constant stride must dominate loop preheader" check.Evan Cheng
2009-02-14Unbreak the build on win32.Cedric Venet
2009-02-13Correct a comment: since AccessArguments is nowDuncan Sands
2009-02-12Teach IndVarSimplify to optimize code using the C "int" type forDan Gohman
2009-02-12Add a utility function to LoopInfo to return the exit blockDan Gohman
2009-02-07Simplify some code by using blocks_begin(), blocks_end(), andDan Gohman
2009-02-05Refactor my previous change to maintain the distinction between AliasAnalysis...Owen Anderson
2009-02-03Move isIdentifiedObject and isNoAliasCall into AliasAnalysis.cpp sinceDan Gohman
2009-01-30 Each input file is encoded as a separate compile unit in LLVM debuggingDevang Patel
2009-01-30Fix a post-RA scheduling dependency bug.Dan Gohman
2009-01-30Add dump() routines to help debug debug info :)Devang Patel
2009-01-28Fix PR3415 (infinite loop in EscapeAnalysis) byDuncan Sands
2009-01-26LLVM_SUPPORT_DEBUGINFO_H -> LLVM_ANALYSIS_DEBUGINFO_H since DebugInfo.h is un...Evan Cheng
2009-01-23Introduce two DWARF attribute extentions DW_AT_APPLE_optimized, DW_AT_APPLE_f...Devang Patel
2009-01-23Simplify the logic of getting hold of a PHI predecessor block.Gabor Greif
2009-01-22The operator<() and operator>() were reversing their tests. Have the test the...Bill Wendling
2009-01-21Encode member accessibility.Devang Patel
2009-01-20Appropriately mark fowrad decls.Devang Patel
2009-01-20Need only one set of debug info versions enum.Devang Patel
2009-01-20zap white spaces.Devang Patel
2009-01-20Enable debug info for composite types.Devang Patel
2009-01-19Verify debug info.Devang Patel
2009-01-19DebugInfo is a lightweight APIs and consumers are expected to use light objec...Devang Patel
2009-01-18BasicAliasAnalysis and FunctionAttrs were bothDuncan Sands
2009-01-17introduce typedef for complicated vector, and use it tooGabor Greif
2009-01-15Use lightweight DebugInfo objects directly.Devang Patel
2009-01-14Fix the time regression I introduced in 464.h264ref withDale Johannesen
2009-01-13Wind SCEV back in time, to Nov 18th. This 'fixes' PR3275, PR3294, PR3295,Nick Lewycky
2009-01-12Add classof() methods to support isa<> and other related facilities.Devang Patel
2009-01-05Extract source location info from DebugInfo.Devang Patel
2009-01-05Add classof() methods so that dwarf writer can decide what DIDescriptor is in...Devang Patel
2009-01-05Construct stuct field DIEs.Devang Patel
2009-01-05Construct enumerator DIE using DebugInfo.Devang Patel
2009-01-05Construct array/vector type DIEs using DebugInfo.Devang Patel
2009-01-05Now, getTag() is used by DwarfWriter.Devang Patel
2009-01-05Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman
2008-12-17Today the front-ends (llvm-gcc and clang) generate multiple llvm.dbg.compile_...Devang Patel
2008-12-16Add -print-dbginfo pass that prints LLVM IR with comments inserted to showTorok Edwin
2008-12-16Add utility functions to search for DbgStopPointInst corresponding to anTorok Edwin
2008-12-15Implement initial support for PHI translation in memdep. This means thatChris Lattner