]> granicus.if.org Git - clang/log
clang
16 years agoRefactored driver so that any action that is implemented using an
Ted Kremenek [Wed, 26 Sep 2007 18:39:29 +0000 (18:39 +0000)]
Refactored driver so that any action that is implemented using an
ASTConsumer can also be verified using the diagnostics checker.  From
the command line, users may activate diagnostic checking using the
"-verify" option.  For example, "clang -verify -warn-dead-stores"
checks if the warnings flagged by the dead store checker match those
in the comments.

Note that we still have the option "-parse-ast-check" for backwards
comptability with existing test cases.  This option is now equivalent to
"-parse-ast -verify".

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42362 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoThis patch inserts ivars declared in @implementation in its object and verifies
Fariborz Jahanian [Wed, 26 Sep 2007 18:27:25 +0000 (18:27 +0000)]
This patch inserts ivars declared in @implementation in its object and verifies
that they conform(in type, name and numbers) to those declared in @interface.
Test case highlights kind of checking we do here.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42360 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRemoved a few TODOs on things which are done.
Fariborz Jahanian [Wed, 26 Sep 2007 17:03:44 +0000 (17:03 +0000)]
Removed a few TODOs on things which are done.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42358 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoHandle (int)1.0e40 as an i-c-e.
Chris Lattner [Wed, 26 Sep 2007 00:47:26 +0000 (00:47 +0000)]
Handle (int)1.0e40 as an i-c-e.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42334 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUpdated VC++ build system.
Hartmut Kaiser [Tue, 25 Sep 2007 23:32:45 +0000 (23:32 +0000)]
Updated VC++ build system.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42330 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUpdated XCode project to reflect that DataflowValues.h and DataflowSolver.h have
Ted Kremenek [Tue, 25 Sep 2007 22:45:38 +0000 (22:45 +0000)]
Updated XCode project to reflect that DataflowValues.h and DataflowSolver.h have
moved to include/clang/Analysis/FlowSensitive.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42327 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMoved "DataflowSolver.h" to the "include/" subtree. Adjusted client
Ted Kremenek [Tue, 25 Sep 2007 21:00:24 +0000 (21:00 +0000)]
Moved "DataflowSolver.h" to the "include/" subtree.  Adjusted client
code that uses the solver to reflect the new location.

Created "FlowSensitive" subdirectory in include/clang/Analysis to hold
header files relating to flow-sensitive analyses.  Moved
"DataflowValues.h" into this subdirectory.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42320 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoPatch to make ObjcImplementationDecl derived from TypeDecl and supprt legacy
Fariborz Jahanian [Tue, 25 Sep 2007 21:00:20 +0000 (21:00 +0000)]
Patch to make ObjcImplementationDecl derived from TypeDecl and supprt legacy
objective-c code with no @interface declaration.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42319 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFixed broken English in comment.
Ted Kremenek [Tue, 25 Sep 2007 20:37:28 +0000 (20:37 +0000)]
Fixed broken English in comment.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42317 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoThis patch introduces a new class to keep track of class implementation info. It...
Fariborz Jahanian [Tue, 25 Sep 2007 18:38:09 +0000 (18:38 +0000)]
This patch introduces a new class to keep track of class implementation info. It also adds more
semantic checks for class and protocol declarations. Test cases are good indications of kind of
checking being done in this patch.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42311 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded "CheckASTConsumer", a function that generalizes
Ted Kremenek [Tue, 25 Sep 2007 18:37:20 +0000 (18:37 +0000)]
Added "CheckASTConsumer", a function that generalizes
"CheckDiagnostics" (used for -parse-ast-check) to check the
diagnostics of any ASTConsumer.

Reimplemented CheckDiagnostics to use CheckASTConsumer instead.

Added driver option -warn-dead-stores-check, which checks the
diagnostics generated by the DeadStores checker.  This is implemented
using CheckASTConsumer.111

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42310 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoChanged command line options "-check-dead-stores" and
Ted Kremenek [Tue, 25 Sep 2007 18:05:45 +0000 (18:05 +0000)]
Changed command line options "-check-dead-stores" and
"-check-uninit-values" to "-warn-dead-stores" and
"-warn-uninit-values"

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42307 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoComment formatting changes. No real content changes.
Ted Kremenek [Tue, 25 Sep 2007 17:53:38 +0000 (17:53 +0000)]
Comment formatting changes.  No real content changes.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42305 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMinor comment changes.
Ted Kremenek [Tue, 25 Sep 2007 17:51:05 +0000 (17:51 +0000)]
Minor comment changes.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42304 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRemoved "EverKilled" class in DeadStores checker; it is no longer used.
Ted Kremenek [Tue, 25 Sep 2007 17:47:04 +0000 (17:47 +0000)]
Removed "EverKilled" class in DeadStores checker; it is no longer used.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42301 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUpdated VC++ build system
Hartmut Kaiser [Tue, 25 Sep 2007 13:08:03 +0000 (13:08 +0000)]
Updated VC++ build system

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42295 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFurther refactored DataflowSolver. Now most code for the solver is shared
Ted Kremenek [Tue, 25 Sep 2007 04:31:27 +0000 (04:31 +0000)]
Further refactored DataflowSolver.  Now most code for the solver is shared
between forward and backward analyses, with trait classes being used
to implement the key differences in operations/functionality.

Converted the LiveVariables analysis to use the generic DataflowSolver.  This,
along with removing some extra functionality that was not needed, reduced
the code for LiveVariables by over half.

Modified Driver code to handle the updated interface to LiveVariables.

Modified the DeadStores checker to handle the update interface to
LiveVariables.

Updated DataflowValues (generic ADT to store dataflow values) to also
store values for blocks.  This is used by DeadStores.  Updated some comments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42293 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded extra "constness" to parameter.
Ted Kremenek [Tue, 25 Sep 2007 04:30:51 +0000 (04:30 +0000)]
Added extra "constness" to parameter.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42292 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agouse the right rounding mode.
Chris Lattner [Tue, 25 Sep 2007 04:29:44 +0000 (04:29 +0000)]
use the right rounding mode.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42291 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded PersistentMap, an ADT that implements a map data structure that
Ted Kremenek [Tue, 25 Sep 2007 04:26:20 +0000 (04:26 +0000)]
Added PersistentMap, an ADT that implements a map data structure that
is persistent.  Adds/removals to a PersistentMap do not result in
a map being modified, but a new map being created.  This will be useful
for path-sensitive analyses.

The current implementation mainly makes copies to implement this
functionality.  If the map turns out to be extensively used, this
implementation will be replaced with a more efficient one that uses
data sharing (see comments in PersistentMap.h for more information).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42290 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded smart pointer class "IntrusiveSPtr" that handles reference
Ted Kremenek [Mon, 24 Sep 2007 06:10:20 +0000 (06:10 +0000)]
Added smart pointer class "IntrusiveSPtr" that handles reference
counted objects that maintain their own internal reference count.
This smart pointer implementation is compatible with LLVM-style
down-casting (see in llvm: include/llvm/Support/Casting.h).

Implemented "RefCounted", a base class that objects that wish to be
managed using IntrusiveSPtrs can subclass.

Reference counted objects are being targeted for use in path-sensitive
dataflow analyses where managing many live objects becomes difficult.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42260 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoIf we see an invalid #ifdef directive, enter a conditional compilation region
Chris Lattner [Mon, 24 Sep 2007 05:14:57 +0000 (05:14 +0000)]
If we see an invalid #ifdef  directive, enter a conditional compilation region
so that we don't emit an error on the #endif.  Suggestion by Neil.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42258 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFix for 64-bit systems.
Chris Lattner [Sun, 23 Sep 2007 23:53:07 +0000 (23:53 +0000)]
Fix for 64-bit systems.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42253 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFixed VC++ bitfield to unsigned/signed sign propagation issue.
Hartmut Kaiser [Sun, 23 Sep 2007 23:39:51 +0000 (23:39 +0000)]
Fixed VC++ bitfield to unsigned/signed sign propagation issue.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42252 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUse the APFloat routines to evaluate FP immediates as
Chris Lattner [Sat, 22 Sep 2007 19:04:13 +0000 (19:04 +0000)]
Use the APFloat routines to evaluate FP immediates as
integer constant expressions.  The only questionable
thing is that we now reject:

void foo() {
  switch (1) {
  case (int)1.0e10000:
    ;
  }
}

with:

t.c:5:13: error: case label does not reduce to an integer constant
  case (int)1.0e10000:
       ~~~~~^~~~~~~~~

GCC accepts this, emitting the pedwarn:
t.c:5: warning: floating constant exceeds range of 'double'

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42238 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoadd comments.
Chris Lattner [Sat, 22 Sep 2007 18:48:32 +0000 (18:48 +0000)]
add comments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42237 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agofurther apfloat'ize the front-end, allowing codegen to pass
Chris Lattner [Sat, 22 Sep 2007 18:47:25 +0000 (18:47 +0000)]
further apfloat'ize the front-end, allowing codegen to pass
APFloat straight through to LLVM now.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42236 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agowork around bugs and missing features in apfloat.
Chris Lattner [Sat, 22 Sep 2007 18:38:30 +0000 (18:38 +0000)]
work around bugs and missing features in apfloat.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42235 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUse APFloat for the representation of FP immediates, ask the target
Chris Lattner [Sat, 22 Sep 2007 18:29:59 +0000 (18:29 +0000)]
Use APFloat for the representation of FP immediates, ask the target
for *which* apfloat to use for a particular type.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42234 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoThis patch adds to new things to clang:
Fariborz Jahanian [Sat, 22 Sep 2007 00:01:35 +0000 (00:01 +0000)]
This patch adds to new things to clang:
1. Handles saving and checking on protocols used in an @interface declaration
2. Checks and saves class's super class.
3. Adds semantic check to category declarations.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42218 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMake case sorting deterministic by not depending on pointer
Chris Lattner [Fri, 21 Sep 2007 18:15:22 +0000 (18:15 +0000)]
Make case sorting deterministic by not depending on pointer
values.  Patch mostly by Gabor Greif for PR1682.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42203 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoThis patch instantiates objects for forward protocols and in general handles use of
Fariborz Jahanian [Fri, 21 Sep 2007 15:40:54 +0000 (15:40 +0000)]
This patch instantiates objects for forward protocols and in general handles use of
protocols referenced in @protocol declarations.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42191 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUpdated VC++ project files
Hartmut Kaiser [Thu, 20 Sep 2007 21:54:10 +0000 (21:54 +0000)]
Updated VC++ project files

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42177 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUpdated XCode project with locations of "Analysis" visitor header files.
Ted Kremenek [Thu, 20 Sep 2007 21:47:32 +0000 (21:47 +0000)]
Updated XCode project with locations of "Analysis" visitor header files.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42176 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUpdated header file inlcude to new location of
Ted Kremenek [Thu, 20 Sep 2007 21:42:55 +0000 (21:42 +0000)]
Updated header file inlcude to new location of
Analysis/Visitors/*Visitors.h files.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42175 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRenamed "include/clang/Analysis/CFGVisitors" "<snip>/Analysis/Visitors".
Ted Kremenek [Thu, 20 Sep 2007 21:42:03 +0000 (21:42 +0000)]
Renamed "include/clang/Analysis/CFGVisitors" "<snip>/Analysis/Visitors".

"Visitors" is more general than "CFGVisitors", as we aren't just using
visitation useful for CFG analysis.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42174 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMoved include/clang/Analysis/*Visitor.h to include/clang/Analysis/CFGVisitors.
Ted Kremenek [Thu, 20 Sep 2007 21:40:36 +0000 (21:40 +0000)]
Moved include/clang/Analysis/*Visitor.h to include/clang/Analysis/CFGVisitors.

We had enough visitors that it was cluttering the Analysis directory.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42173 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoHandle forward declaration of classes and prevent re-instantiation of
Fariborz Jahanian [Thu, 20 Sep 2007 20:26:44 +0000 (20:26 +0000)]
Handle forward declaration of classes and prevent re-instantiation of
ObjcInterfaceClass Objects.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42172 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMatch to do some semantic analysis on objective-c class decl.
Fariborz Jahanian [Thu, 20 Sep 2007 17:54:07 +0000 (17:54 +0000)]
Match to do some semantic analysis on objective-c class decl.
1. Detect used of undeclared/forward declared super class.
2. Detect duplicate definition of a class.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42168 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUpdated VC++ project files.
Hartmut Kaiser [Thu, 20 Sep 2007 13:35:09 +0000 (13:35 +0000)]
Updated VC++ project files.
Disambiguated a variable.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42161 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded support to clang driver to view ASTs using GraphViz. This
Ted Kremenek [Wed, 19 Sep 2007 21:29:43 +0000 (21:29 +0000)]
Added support to clang driver to view ASTs using GraphViz.  This
functionality is still preliminary.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42152 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMoved GraphTraits<Stmt*> to StmtGraphTraits.h. This allows consumers of Stmt.h not...
Ted Kremenek [Wed, 19 Sep 2007 21:21:39 +0000 (21:21 +0000)]
Moved GraphTraits<Stmt*> to StmtGraphTraits.h.  This allows consumers of Stmt.h not to have to pay the cost
of parsing the GraphTraits templates if they don't need that functionality.

Defined nodes_iterator for GraphTraits<Stmt*> to be based on llvm::df_iterator.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42150 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoPatch to parse objective-c's @try-statement and @throw-statement.
Fariborz Jahanian [Wed, 19 Sep 2007 19:14:32 +0000 (19:14 +0000)]
Patch to parse objective-c's @try-statement and @throw-statement.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42148 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded GraphTraits template specialization for Stmt* to treat ASTs like graphs.
Ted Kremenek [Wed, 19 Sep 2007 18:18:40 +0000 (18:18 +0000)]
Added GraphTraits template specialization for Stmt* to treat ASTs like graphs.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42146 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMore refactoring: decl and expr regisitration now uses CFGRecStmtDeclVisitor.
Ted Kremenek [Wed, 19 Sep 2007 18:00:03 +0000 (18:00 +0000)]
More refactoring: decl and expr regisitration now uses CFGRecStmtDeclVisitor.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42145 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded two new visitors that extend CFGStmtVisitor: CFGRecStmtVisitor and CFGRecStmtDe...
Ted Kremenek [Wed, 19 Sep 2007 17:59:28 +0000 (17:59 +0000)]
Added two new visitors that extend CFGStmtVisitor: CFGRecStmtVisitor and CFGRecStmtDeclVisitor.
The extended functionality of these visitors is that they automatically visit all statements in
an AST (no explicit recursion is required from subclasses), and the for the latter, decls are visited
as well.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42144 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRemove SelectorTable/SelectorInfo, simply store all selectors in the central Identifi...
Steve Naroff [Wed, 19 Sep 2007 16:18:46 +0000 (16:18 +0000)]
Remove SelectorTable/SelectorInfo, simply store all selectors in the central IdentifierTable.

Rationale:

We currently have a separate table to unique ObjC selectors. Since I don't need all the instance data in IdentifierInfo, I thought this would save space (and make more sense conceptually).

It turns out the cost of having duplicate entries for unary selectors (i.e. names without colons) outweighs the cost difference between the IdentifierInfo & SelectorInfo structures. Here is the data:

Two tables:

*** Selector/Identifier Stats:
# Selectors/Identifiers: 51635
Bytes allocated:         1999824

One table:

*** Identifier Table Stats:
# Identifiers:   49500
Bytes allocated: 1990316

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42139 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRemove #include of config.h, it is no longer needed.
Steve Naroff [Wed, 19 Sep 2007 03:01:22 +0000 (03:01 +0000)]
Remove #include of config.h, it is no longer needed.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42126 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRemove alloca import...
Steve Naroff [Tue, 18 Sep 2007 23:56:42 +0000 (23:56 +0000)]
Remove alloca import...

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42117 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoProgress on message expressions...
Steve Naroff [Tue, 18 Sep 2007 23:55:05 +0000 (23:55 +0000)]
Progress on message expressions...

- Add ObjcMessageExpr AST node and associated constructors.
- Add SourceLocation's to ActOnKeywordMessage/ActOnUnaryMessage API.
- Instantiate message expressions...
- Replace alloca usage with SmallString.

Next step, installing a correct type, among other tweaks...

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42116 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoDataflowSolver now acccepts an "_Equal" template parameter that allows the user
Ted Kremenek [Tue, 18 Sep 2007 23:40:51 +0000 (23:40 +0000)]
DataflowSolver now acccepts an "_Equal" template parameter that allows the user
to specify how two dataflow values should be compared for equality.  The default
is to use std::equal_to.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42115 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFixed bug where getBitRef would incorrectly grab the bit from the
Ted Kremenek [Tue, 18 Sep 2007 23:30:45 +0000 (23:30 +0000)]
Fixed bug where getBitRef would incorrectly grab the bit from the
wrong bitvector.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42114 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoChanged solver to use "==" operator when comparing dataflow values
Ted Kremenek [Tue, 18 Sep 2007 23:30:21 +0000 (23:30 +0000)]
Changed solver to use "==" operator when comparing dataflow values
rather than a special "equal" method defined in the class for the
value.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42113 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMinor performance fix in transfer function logic. Previously we
Ted Kremenek [Tue, 18 Sep 2007 21:47:41 +0000 (21:47 +0000)]
Minor performance fix in transfer function logic. Previously we
called VisitStmt, but VisitChildren is more direct and creates less
boilerplate logic.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42110 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMore refactoring and code reduction.
Ted Kremenek [Tue, 18 Sep 2007 21:43:18 +0000 (21:43 +0000)]
More refactoring and code reduction.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42109 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdd overloaded versions of DataflowSolver::runOnBlock to simplify
Ted Kremenek [Tue, 18 Sep 2007 21:08:21 +0000 (21:08 +0000)]
Add overloaded versions of DataflowSolver::runOnBlock to simplify
invocation of the solver.

UninitializedValues checker now uses CFG::runOnAllBlocks to query the
computed dataflow values (tighter code).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42107 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded member template CFG::VisitBlockStmts to provide a succinct way
Ted Kremenek [Tue, 18 Sep 2007 20:59:00 +0000 (20:59 +0000)]
Added member template CFG::VisitBlockStmts to provide a succinct way
of visiting all block-level statements in a CFG.

Tightened implementation of UninitializedValues.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42106 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdditional comments and cosmetic cleanups.
Ted Kremenek [Tue, 18 Sep 2007 20:44:03 +0000 (20:44 +0000)]
Additional comments and cosmetic cleanups.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42105 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoPatch for object creation and handling of category declarations.
Fariborz Jahanian [Tue, 18 Sep 2007 20:26:58 +0000 (20:26 +0000)]
Patch for object creation and handling of category declarations.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42104 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMoved TransferFunction object within DataflowSolver to be a instance
Ted Kremenek [Tue, 18 Sep 2007 18:17:19 +0000 (18:17 +0000)]
Moved TransferFunction object within DataflowSolver to be a instance
variable instead of a temporary.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42102 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoModified DataFlowValues and DataflowSolver to associate dataflow value
Ted Kremenek [Tue, 18 Sep 2007 18:02:44 +0000 (18:02 +0000)]
Modified DataFlowValues and DataflowSolver to associate dataflow value
with CFG *edges* instead of blocks.  This will fascilitate dataflow
analyses that are sensitive to block terminators, and also simplifies
some reasoning.

Updated UninitializedValues to comply to this new interface.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42099 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded type "CFG::Edge" to encapsulate the notion of directed-edges
Ted Kremenek [Tue, 18 Sep 2007 18:01:15 +0000 (18:01 +0000)]
Added type "CFG::Edge" to encapsulate the notion of directed-edges
within source-level CFGs.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42098 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoalloca.h doesn't exist on Windows.
Hartmut Kaiser [Tue, 18 Sep 2007 12:16:59 +0000 (12:16 +0000)]
alloca.h doesn't exist on Windows.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42089 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoalloca.h is needed on Solaris
Gabor Greif [Tue, 18 Sep 2007 11:01:25 +0000 (11:01 +0000)]
alloca.h is needed on Solaris

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42088 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUses more description name for method implementation kind argument.
Fariborz Jahanian [Tue, 18 Sep 2007 00:25:23 +0000 (00:25 +0000)]
Uses more description name for method implementation kind argument.
Moves such argument as the last argument and uses defaul value.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42073 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUpdated VC++ project files after file rename.
Hartmut Kaiser [Mon, 17 Sep 2007 23:33:12 +0000 (23:33 +0000)]
Updated VC++ project files after file rename.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42072 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoPatch to remove ObjcProtoMethodDecl and use ObjcMethodDecl
Fariborz Jahanian [Mon, 17 Sep 2007 22:36:42 +0000 (22:36 +0000)]
Patch to remove ObjcProtoMethodDecl and use ObjcMethodDecl
instead for @protocol method decls.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42070 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoBug fix to merging of data flow values (merge incorrectly made values
Ted Kremenek [Mon, 17 Sep 2007 21:59:08 +0000 (21:59 +0000)]
Bug fix to merging of data flow values (merge incorrectly made values
too "conservative").

Several revisions to UninitializedValues checker after testing.  We
now appear to be working correctly (probably some bugs still, but main
functionality appears to be there).  Implemented careful emitting of
warnings so that we wouldn't get a cascade of warnings for simply not
defining a single variable and using it everywhere.  This way the
warnings point closer to the root cause rather than "symptoms" from
using values derived from uninitialized variables.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42067 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdd a comment and remove unused constructors.
Steve Naroff [Mon, 17 Sep 2007 21:26:50 +0000 (21:26 +0000)]
Add a comment and remove unused constructors.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42063 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMade driver flag --check-uninit-values more self-explanatory.
Ted Kremenek [Mon, 17 Sep 2007 21:21:20 +0000 (21:21 +0000)]
Made driver flag --check-uninit-values more self-explanatory.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42062 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFixed a VC++ issue related to bitmasks. As it turns out the compiler fills the unused...
Hartmut Kaiser [Mon, 17 Sep 2007 21:11:08 +0000 (21:11 +0000)]
Fixed a VC++ issue related to bitmasks. As it turns out the compiler fills the unused bits of the word a bitmask is stored in with '1' (or randomly, I can't tell, I've seen '1' so far only), which creates wrong results in certain cases.

Please review.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42061 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoPatch to add objective-c's @protocl type declaration.
Fariborz Jahanian [Mon, 17 Sep 2007 21:07:36 +0000 (21:07 +0000)]
Patch to add objective-c's @protocl type declaration.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42060 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFinish defining Action API for message expressions.
Steve Naroff [Mon, 17 Sep 2007 21:01:15 +0000 (21:01 +0000)]
Finish defining Action API for message expressions.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42059 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRe-added UninitializedValues.cpp to the XCode project because the file was renamed.
Ted Kremenek [Mon, 17 Sep 2007 20:52:52 +0000 (20:52 +0000)]
Re-added UninitializedValues.cpp to the XCode project because the file was renamed.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42057 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRenamed file due to mispelling.
Ted Kremenek [Mon, 17 Sep 2007 20:50:02 +0000 (20:50 +0000)]
Renamed file due to mispelling.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42056 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoUninitialuzedValues now only tracks BlockVarDecls; obviating false positives with
Ted Kremenek [Mon, 17 Sep 2007 20:49:30 +0000 (20:49 +0000)]
UninitialuzedValues now only tracks BlockVarDecls; obviating false positives with
globals and function parameters.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42055 91177308-0d34-0410-b5e6-96231b3b80d8

16 years ago- Refactored ObjcKeywordInfo into ObjcKeywordInfo, ObjcKeywordDecl, and ObjcKeywordMe...
Steve Naroff [Mon, 17 Sep 2007 20:25:27 +0000 (20:25 +0000)]
- Refactored ObjcKeywordInfo into ObjcKeywordInfo, ObjcKeywordDecl, and ObjcKeywordMessage.
- Removed helper ObjcGetSelectorInfo(), moving the code directly into ObjcBuildMethodDeclaration().
- Many refinements to ParseObjCMessageExpression().
- Add ActOnMessageExpression().

Next step, finish the message actions and (finally) create/instantiate an ObjcMessageExpr AST.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42050 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoMore progress on UnitializedValues checker. We now have preliminary support
Ted Kremenek [Mon, 17 Sep 2007 19:59:27 +0000 (19:59 +0000)]
More progress on UnitializedValues checker.  We now have preliminary support
for reporting errors and running the checker.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42046 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoSplit tracking of unitialized values for Decls and CFGBlock-level expressions.
Ted Kremenek [Mon, 17 Sep 2007 18:31:23 +0000 (18:31 +0000)]
Split tracking of unitialized values for Decls and CFGBlock-level expressions.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42041 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRemoved "ObserverTy" from core DataflowValues types. The observer
Ted Kremenek [Mon, 17 Sep 2007 17:14:52 +0000 (17:14 +0000)]
Removed "ObserverTy" from core DataflowValues types.  The observer
mechanism can be implemented simply by affixing the Observer to an
analysis meta data, so it doesn't need to be a required type.  This
also permits analyses not to implement an Observer if it doesn't make
sense.

Changed "DataflowValues::MetaDataTy" to
"DataflowValues::AnalysisDataTy" to reflect that the type
enscapsulated the data associated with analyzing a given CFG.

Changed CFGStmtVisitor::BlockStmt_VisitImplicitControlFlowStmt(Stmt*)
to ...VisitImplicitControlFlowExpr(Expr*).  The type narrowing is more
precise and more useful to clients.

Added CFGStmtVisitor::BlockStmt_VisitExpr to reflect the visitation of
expressions at the block statement level.  This captures all implicit
control-flow statements as well as other expressions that are hoisted
to the block level (such as conditions for terminators and function
calls).  This is especially useful for dataflow analysis.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42034 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRemoved check for NULL CFG. Bad CFGs will fire an assertion failure
Ted Kremenek [Mon, 17 Sep 2007 17:10:02 +0000 (17:10 +0000)]
Removed check for NULL CFG.  Bad CFGs will fire an assertion failure
in the CFG builder logic.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42033 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoWhen building CFGs we now (unconditionally) add an empty CFGBlock to the CFG
Ted Kremenek [Mon, 17 Sep 2007 16:18:02 +0000 (16:18 +0000)]
When building CFGs we now (unconditionally) add an empty CFGBlock to the CFG
to serve as the entry block.  An empty entry block (just as with an
empty exit block, which we already have) simplifies building analyses on top
of CFGs with very little extra overhead.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42031 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdded ASTConsumer.h to XCode project.
Ted Kremenek [Mon, 17 Sep 2007 16:09:32 +0000 (16:09 +0000)]
Added ASTConsumer.h to XCode project.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42030 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFix a few 80 column violations.
Steve Naroff [Mon, 17 Sep 2007 15:07:43 +0000 (15:07 +0000)]
Fix a few 80 column violations.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42028 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdd const to debug hook...
Steve Naroff [Mon, 17 Sep 2007 14:49:06 +0000 (14:49 +0000)]
Add const to debug hook...

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42025 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoAdd support for ObjC keyword selectors.
Steve Naroff [Mon, 17 Sep 2007 14:16:13 +0000 (14:16 +0000)]
Add support for ObjC keyword selectors.

- Add SelectorInfo/SelectorTable classes, modeled after IdentifierInfo/IdentifierTable.
- Add SelectorTable instance to ASTContext, created lazily through ASTContext::getSelectorInfo().
- Add SelectorInfo slot to ObjcMethodDecl.
- Add helper function to derive a SelectorInfo from ObjcKeywordInfo.

Misc: Got the Decl stats stuff up and running again...it was missing support for ObjC AST's.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42023 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFixed unterminated string issue.
Hartmut Kaiser [Mon, 17 Sep 2007 12:29:55 +0000 (12:29 +0000)]
Fixed unterminated string issue.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42022 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agomake var in anon namespace static. Use \n instead of std::endl.
Chris Lattner [Mon, 17 Sep 2007 06:16:32 +0000 (06:16 +0000)]
make var in anon namespace static.  Use \n instead of std::endl.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42020 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoSilenced a VC++ warning.
Hartmut Kaiser [Sun, 16 Sep 2007 21:35:35 +0000 (21:35 +0000)]
Silenced a VC++ warning.
Updated VC++ project files.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42015 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoremove some obsolete interfaces.
Chris Lattner [Sun, 16 Sep 2007 19:47:56 +0000 (19:47 +0000)]
remove some obsolete interfaces.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42014 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoswitch the llvm emitter to ASTConsumer interface.
Chris Lattner [Sun, 16 Sep 2007 19:46:59 +0000 (19:46 +0000)]
switch the llvm emitter to ASTConsumer interface.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42013 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFrom Justin Handville:
Chris Lattner [Sun, 16 Sep 2007 19:27:16 +0000 (19:27 +0000)]
From Justin Handville:

"The ExpectedStr search was starting at the end of the comment string.
This patch starts the search at the beginning of the comment string.
After applying this patch, clang -parse-ast-check on negative test
case source files worked as expected."

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42012 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFix html problem, patch by Justin Handville
Chris Lattner [Sun, 16 Sep 2007 19:25:23 +0000 (19:25 +0000)]
Fix html problem, patch by Justin Handville

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42011 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agofix some warnings, patch by Justin Handville
Chris Lattner [Sun, 16 Sep 2007 19:23:47 +0000 (19:23 +0000)]
fix some warnings, patch by Justin Handville

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42010 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agodecl counting isn't implemented yet for objc. -stats probably crashes for it.
Chris Lattner [Sun, 16 Sep 2007 19:23:04 +0000 (19:23 +0000)]
decl counting isn't implemented yet for objc.  -stats probably crashes for it.
Patch by Justin Handville

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42009 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFix a GCC warning, patch by Justin Handville
Chris Lattner [Sun, 16 Sep 2007 19:12:45 +0000 (19:12 +0000)]
Fix a GCC warning, patch by Justin Handville

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42007 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agofix warning.
Chris Lattner [Sun, 16 Sep 2007 19:11:53 +0000 (19:11 +0000)]
fix warning.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42006 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoFixes/tweaks that prevent "defaults-i.m" from compiling.
Steve Naroff [Sun, 16 Sep 2007 16:16:00 +0000 (16:16 +0000)]
Fixes/tweaks that prevent "defaults-i.m" from compiling.

- Allow classnames as the receiver (removing a FIXME from ParseObjCMessageExpression).
- Added a FIXME to ParseObjCMessageExpression()...we need to return a message expr AST node!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42001 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRename statement actions (from Parse-prefix to ActOn-prefix).
Steve Naroff [Sun, 16 Sep 2007 14:56:35 +0000 (14:56 +0000)]
Rename statement actions (from Parse-prefix to ActOn-prefix).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42000 91177308-0d34-0410-b5e6-96231b3b80d8

16 years agoRename expression actions (from Parse-prefix to ActOn-prefix).
Steve Naroff [Sun, 16 Sep 2007 03:34:24 +0000 (03:34 +0000)]
Rename expression actions (from Parse-prefix to ActOn-prefix).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41997 91177308-0d34-0410-b5e6-96231b3b80d8