- 8ffb159 Migrate DeclStmt over to using a DeclGroup instead of a pointer to a ScopedDecl*. by Ted Kremenek · 16 years ago
- 53061c8 Use DeclStmt::decl_iterator to walk a group of Decl*'s instead of using the ScopedDecl chain. by Ted Kremenek · 16 years ago
- 924d9a8 Reverse the RHSBlock of LogicalOp && and || by Zhongxing Xu · 16 years ago
- 610a09e Add CFG support for implicit-control flow for VLA size expressions within an SizeOfAlignOfTypeExpr. by Ted Kremenek · 16 years ago
- 00c0a30 Do not create CFGs for functions/methods using blocks (need to add control-flow). by Ted Kremenek · 16 years ago
- fcd06f7 Move VLA processing logic from LiveVariables to CFG construction. This way all dataflow analyses "see" the VLA size expressions. by Ted Kremenek · 16 years ago
- d452758 ProgramPoint now takes the space of two pointers instead of one. This change was by Ted Kremenek · 16 years ago
- a95d375 Patch by Csaba Hruska! by Ted Kremenek · 16 years ago
- e933450 Fix CFG construction bug: by Ted Kremenek · 16 years ago
- acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
- c7eb903 Cleanup some processing with DeclStmt, and gradually start using the internal BumpPtrAllocator to allocator more of CFG's data structures. by Ted Kremenek · 16 years ago
- ce1eb34 Always construct the BumpPtrAllocator used by CFG as an instance variable. by Ted Kremenek · 16 years ago
- a34ea07 Nico Weber: by Ted Kremenek · 16 years ago
- 54eec4c Fix one strict-aliasing warning. by Ted Kremenek · 16 years ago
- f494b57 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 16 years ago
- 9c2535a Added CFGBlock::hasBinaryBranchTerminator(). by Ted Kremenek · 16 years ago
- 274f433 Bug fix in CFG::getBlockEdgeImpl(): Use a BumpPtrAllocator to allocate by Ted Kremenek · 17 years ago
- 411cdee Added CFGBlock::getTerminatorCondition() to get the Expr* of the condition a block's terminator. by Ted Kremenek · 17 years ago
- a716d7a Bug fix in CFG construction: VisitCompoundStmt should return the last created block. by Ted Kremenek · 17 years ago
- bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from AST/CFG.cpp]
- 2677ea8 Small bug fix in CFG construction: the active block for LabelStmts comes by Ted Kremenek · 17 years ago
- 4102af9 Added bandaid support in CFG construction for ObjCForEachStmt and ObjCAtTryStmt: by Ted Kremenek · 17 years ago
- 87cf5ac Add some missing #includes for GCC mainline, patch by Shantonu Sen! by Chris Lattner · 17 years ago
- 243ee47 CallExprs are now no longer block-level expressions in the CFG by construction. by Ted Kremenek · 17 years ago
- ae2a98c Minor CFG optimization: don't create separate block-level expressions for DeclStmt initializers when the initializer is a literal. by Ted Kremenek · 17 years ago
- 0d99ecf Fixed edge-case in CFG construction where goto jumps would not always get by Ted Kremenek · 17 years ago
- 5482713 Bug fix in CFG construction: Properly register the loop head as the implicit by Ted Kremenek · 17 years ago
- a9d996d Fixed CFG construction bug that occurred when a condition for a loop spanned by Ted Kremenek · 17 years ago
- f4e15fc Do include ParenExpr in the CFG; only include their subexpression. by Ted Kremenek · 17 years ago
- d34066c Fixed bug in CFG construction when a CompoundStmt ended with a NullStmt. by Ted Kremenek · 17 years ago
- eef5a9a When creating the CFGBlocks for a switch statement, we now have the "default" by Ted Kremenek · 17 years ago
- 295222c Fixed bug in CFG construction when processing switch statements that contain no by Ted Kremenek · 17 years ago
- a292585 Added method "printTerminator" to CFGBlock so that external clients can by Ted Kremenek · 17 years ago
- 33d4aab Added back logic in patch r46361 (http://llvm.org/viewvc/llvm-project?rev=46361&view=rev) with the addition of by Ted Kremenek · 17 years ago
- e2dcd78 Reverting r46361 (http://llvm.org/viewvc/llvm-project?rev=46361&view=rev) until by Ted Kremenek · 17 years ago
- 7accba0 When adding assignment expressions to the set of block-level expressions, only by Ted Kremenek · 17 years ago
- 8694674 Modified the notion of "Block-level expressions" in CFGs to include Stmt*. This by Ted Kremenek · 17 years ago
- 83c01da Renamed ProgramEdge to ProgramPoint and changed subclasses of ProgramEdge by Ted Kremenek · 17 years ago
- 6fa9b88 Added VISIBILITY_HIDDEN to classes/structs in anonymous namespace. by Ted Kremenek · 17 years ago
- 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
- afe5433 Fixed successor order for CFG basic blocks when handling: x && y. The bug by Ted Kremenek · 17 years ago
- 7e3a89d Removed CFG.cpp's dependence on #including iostream. by Ted Kremenek · 17 years ago
- a651e0e CFG bug fix: for sizeof(expressions), don't expand the control-flow by Ted Kremenek · 17 years ago
- 9a8385d Fixed bug in CFG::PopulateBlkExprMap where the ordering by Ted Kremenek · 17 years ago
- ecc04c9 Fixed bug in CFG construction where we did not properly handle the GCC by Ted Kremenek · 17 years ago
- d660322 Fixed bug in WalkaST_VisitDeclSubExprs where we failed to properly check if by Ted Kremenek · 17 years ago
- 8f54c1f Refactored CFG construction code that processes DeclStmts to use StmtIterator. by Ted Kremenek · 17 years ago
- 7a9d9d7 Modified CFG pretty-printing to directly use the (reverse) body by Ted Kremenek · 17 years ago
- c266acd remove dead #include by Chris Lattner · 17 years ago
- 11e7218 Migrated LiveVariables and UninitializedVariables to now use the by Ted Kremenek · 17 years ago
- 63f5887 CFG objects now internally store a (lazily created) map from block-level by Ted Kremenek · 17 years ago
- d48ade6 Removed "hasImplicitControlFlow" from class CFG, and moved it to class Stmt by Ted Kremenek · 17 years ago
- 271f1a6 Fix some use of uninit variables issues, reported by Anton. by Chris Lattner · 17 years ago
- 322f58d Fixed two bugs in CFG construction: by Ted Kremenek · 17 years ago
- 94b3316 When building CFGs we now (unconditionally) add an empty CFGBlock to the CFG by Ted Kremenek · 17 years ago
- 3860c11 Fixed unterminated string issue. by Hartmut Kaiser · 17 years ago
- 0012351 make var in anon namespace static. Use \n instead of std::endl. by Chris Lattner · 17 years ago
- f874c13 fix warning. by Chris Lattner · 17 years ago
- 6bfce24 Fixed a problem VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
- bd250b4 Fixed two problems VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
- 155383b Added static method "CFG::hasImplicitControlFlow". by Ted Kremenek · 17 years ago
- f50ec10 Fixed bug where ternary expressions and GCC-style conditional expressions by Ted Kremenek · 17 years ago
- 9438252 Moved tracking of CFG block IDs into the CFG class. by Ted Kremenek · 17 years ago
- 60266e8 Fixed missing '(' and ')' characters in (CFG) pretty-printing of by Ted Kremenek · 17 years ago
- aeddbf6 Added better pretty printing in CFGs for __builtin_choose_expr by Ted Kremenek · 17 years ago
- 1c29bba Further cleanups in CFG printing for comma expressions, statement expressions, and indirect gotos. by Ted Kremenek · 17 years ago
- 805e9a8 Cleanups for printing the terminators of CFGBlocks for "?", "||", and "&&" operators. by Ted Kremenek · 17 years ago
- 42a509f Added "PrinterHelper" interface (include/AST/PrinterHelper) that can by Ted Kremenek · 17 years ago
- 49a436d Added support for __builtin_choose_expr (ChooseExpr) in CFGs. by Ted Kremenek · 17 years ago
- 535bb20 Minor cleanups to pretty-printing for loops in CFGs. by Ted Kremenek · 17 years ago
- 29ccaa1 Fixed a bug in constructing CFG blocks for case statement fall-through by Ted Kremenek · 17 years ago
- af603f7 Fixed bug in CFG construction where we failed to handle loop bodies with by Ted Kremenek · 17 years ago
- 16e4dc8 Fixed bug in CFG construction involving use of labels and "empty" by Ted Kremenek · 17 years ago
- b6f7b72 Fixed bug where the CFG would fail to build when an 'if' statement had by Ted Kremenek · 17 years ago
- 9cffe73 Added an (optional) explicit "Label" statement to CFGBlock. If a by Ted Kremenek · 17 years ago
- 7dba860 Added GraphTraits to source-level CFGs (CFG and CFGBlock) to allow by Ted Kremenek · 17 years ago
- 19bb356 Added support for indirect-gotos (GCC extension) in source-level CFGs. by Ted Kremenek · 17 years ago
- 15c27a8 Added support for GCC-style statement expressions in source-level CFGs. by Ted Kremenek · 17 years ago
- b49e1aa Added support for comma expressions and DeclStmts which may have by Ted Kremenek · 17 years ago
- 7926f7c Removed special-casing in CFG construction for ParenExprs. by Ted Kremenek · 17 years ago
- 0b1d9b7 Added support for short-circuit '&&' and '||' operators in source-level CFGs. by Ted Kremenek · 17 years ago
- 9da2fb7 Implemented support for ternary "?" operators in source-level CFGs. by Ted Kremenek · 17 years ago
- 49af7cb Changes to CFGBuilder: by Ted Kremenek · 17 years ago
- d4fdee3 No functionality change. Moved visitor methods for CFGBuilder out-of-line by Ted Kremenek · 17 years ago
- befef2f moved CFGBuilder into an anonymous namespace by Ted Kremenek · 17 years ago
- b5c13b0 Added support for switch, default, and case statements in source-level CFGs. by Ted Kremenek · 17 years ago
- 989d52d For gotos, breaks, and continues where we cannot find a target successor by Ted Kremenek · 17 years ago
- f752fcf Added support for do..while loops in CFG construction. by Ted Kremenek · 17 years ago
- 026473c Renamed "CFG::BuildCFG" to "CFG::buildCFG" to have more consistent capitalization. by Ted Kremenek · 17 years ago
- 31dcd3c Fixed bugs in source-level CFG construction for "for" and "while" loops by Ted Kremenek · 17 years ago
- 8a29471 Added support for "break" statements in source-level ASTs. by Ted Kremenek · 17 years ago
- bf15b27 Added support for "continue" statements in source-level CFGs by Ted Kremenek · 17 years ago
- 2bac4ea Added preliminary support for while loops within source-level CFGs. by Ted Kremenek · 17 years ago
- e8ee26b Added CFG support for: for loops by Ted Kremenek · 17 years ago
- 4a2b8a1 Changed data structure recording the CFG blocks that need to be backpatched by Ted Kremenek · 17 years ago
- 0cebe3e Added CFG support for gotos and labels. by Ted Kremenek · 17 years ago
- c310e93 Converted CFGBuilder to use StmtVisitor instead of doing a switch by Ted Kremenek · 17 years ago
- fddd518 Added CFG infrastructure (CFG.cpp and CFG.h) for clang ASTs. by Ted Kremenek · 17 years ago