- Mar 30, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: Implement ++/-- typechecking for pre/post unary expressions. This includes: - added isLvalue, isModifiableLvalue (on TypeRef, Type, and RecordType). - added isRealType, isRealFloatingType, isComplexType. - hacked Diag to take a TypeRef (I was sick of writing the 2 line "setup":-) In addition, this will likely lead to less bugs...I already had written code that was doing a getAsString on "Type" (which is wrong...since it doesn't include any qualifiers). - Changed UnaryOperator to take a TypeRef...pass it the right stuff. - Removed redundant ternary expressions in several predicates. - A couple diagnostics. llvm-svn: 39369
-
- Mar 28, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: Finish up Sema::ParseArraySubscriptExpr. This involved: - adding a couple predicates to Type.h (isObjectType, isDerivedType). - added a diagnostic for subscripting non-object types (e.g. void (*)()). - pass the correct result type...a minor detail:-) - added some spec references to Type.h llvm-svn: 39368
-
- Mar 27, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: Make an error diagnosic a bit more expression (in Sema::GetTypeForDeclarator) llvm-svn: 39367
-
Steve Naroff authored
Submitted by: Reviewed by: Finish up fixes to Sema::GetTypeForDeclarator(). The typechecking should now conform to the standard. llvm-svn: 39366
-
Steve Naroff authored
Submitted by: Reviewed by: Fix a couple bugs in Sema::GetTypeForDeclarator(). Need to disallow: - void arrayOfFunctions[3]() - void arrayOfVoids[3] Need to talk to Chris about the return value... llvm-svn: 39365
-
Steve Naroff authored
Submitted by: Reviewed by: Finish up Sema::ParseMemberReferenceExpr. This involved: - added a getMember() function to RecordDecl. - added stronger typing for "Members" (from Decl->FieldDecl). - added a dignostic for members not found. - changed MemberExpr to install the correct TypeRef. - In general, simplified and cleaned up the routing. llvm-svn: 39364
-
- Mar 26, 2007
-
-
Chris Lattner authored
llvm-svn: 39363
-
Chris Lattner authored
llvm-svn: 39362
-
- Mar 23, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: Type Checking...round 2. This checkin "breaks" parsing carbon.h. I imagine that this will be true for the next week or so. Nevertheless, this round of changes includes the following: - Hacked various Expr classes to pass the appropriate TypeRef. Still have a few more classes to touch. - Implement type checking for ParseArraySubscriptExpr and ParseMemberReferenceExpr. - Added a debug hook to derive the class name for Stmt/Expr nodes. Currently a linear search...could easily optimize if important. - Changed the name of TaggedType->TagType. Now we have TagType and TagDecl (which are easier to remember). - Fixed a bug in StringLiteral conversion I did a couple weeks ago. hadError was not initialized (oops). - changed Sema::Diag to return true. This streamlines the type checking code considerably. - Added many diagnositics. This should be it! llvm-svn: 39361
-
- Mar 21, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: Implement type checking. First round of changes are: - Added predicates to Type. - Added predicates to BinExpr. - Added Check hooks that model the categories for Binary ops. - Added TypeRef to Expr. Will lazily eval subclasses... - Misc bug fixes/cleanups. llvm-svn: 39360
-
- Mar 19, 2007
-
-
Chris Lattner authored
llvm-svn: 39359
-
- Mar 16, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: Down to 0 warning/errors for Carbon.h. Also made a couple trivial name changes... llvm-svn: 39358
-
Steve Naroff authored
Submitted by: Reviewed by: carbon.h looking good! Only 1 warning left...no parse errors! This fixes 3 bugs... - A couple tricky bugs with type canonicalization. Nested typedef's weren't being handled properly. For example, the following didn't work: typdef int __darwin_pid_t; typedef __darwin_pid_t pid_t; int getpgid(pid_t); int getpgid(int); - The storage class wasn't being preserved. As a result, Sema was complaining about the following: extern char *foo; char *foo; - various built-ins weren't registered...resulting in spurious warnings. llvm-svn: 39357
-
- Mar 14, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: This is a "small" checkin. #include_next wasn't working properly on Leopard. This is because the driver has some hard coded paths that don't work on Leopard. The real fix is to derive them, however I don't think we need to solve this now. At this point, anyone working on clang should be able to use Leopard. This fix removed 11 errors processing "carbon.h". The bug that bubbles up to the top is in MergeFunctionDecl(). As part of digging into this part of Sema, I rearranged some methods (and changed the visibility). llvm-svn: 39356
-
Steve Naroff authored
Submitted by: Reviewed by: Added size expression to ArrayType. This was needed to implement Type::isIncompleteType(). At the moment, there is no support for determining if we have a constant expression (which won't be too difficult now that we have support for literal parsing/ast's). Nevertheless, the parser will allow "struct foo { int a[b]; }" (which is illegal). There is still significant work to fully analyze array types. The good news is "carbon.h" goes from 288 bogus errors down to 26! llvm-svn: 39355
-
- Mar 13, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: Move string literal parsing from Sema=>LiteralSupport. This consolidates all the quirky parsing code within the Lexer subsystem (yeah!). This simplifies Sema and (more importantly) allows future parsers (i.e. subclasses of Action) to benefit from this code. llvm-svn: 39354
-
Steve Naroff authored
Submitted by: Reviewed by: Misc. cleanup/polish of NumericLiteralParser and it's two clients, the C preprocessor and AST builder... llvm-svn: 39353
-
Steve Naroff authored
Submitted by: Reviewed by: -Converted the preprocessor to use NumericLiteralParser. -Several minor changes to LiteralSupport interface/implementation. -Added an error diagnostic for floating point usage in pp expr's. llvm-svn: 39352
-
- Mar 10, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: Moved numeric literal support from SemaExpr.cpp to LiteralSupport.[h,cpp] in Lex. This will allow it to be used by both Sema and Preprocessor (and should be the last major refactoring of this sub-system).. Over time, it will be reused by anyone implementing an actions module (i.e. any subclass of llvm::clang::Action. Minor changes to IntegerLiteral in Expr.h. More to come... llvm-svn: 39351
-
- Mar 07, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: Refactored ParseNumericConstant using SkipDigits and friends. This cleaned up the code and removed many "breaks". In the process, I found several bugs that needed to be fixed (proof that this refactoring had real value, not simply aesthetics). Also simplified error handling logic and removed an unused error condition from Diagnostics.def. llvm-svn: 39350
-
- Mar 06, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: More code to parse numeric constants. This checkin includes: - Feedback from Chris. - Support for parsing floating point constants. - Moved the code to "Sema". Changed API in Action. - More/better error diagnostics. At this point, the parsing support should be largely complete. Next step is to work on filling in sensible values (in IntegerLiteral/FloatLiteral). llvm-svn: 39349
-
- Mar 03, 2007
-
-
Steve Naroff authored
Submitted by: Reviewed by: First phase of parsing IntegerConstants. At the moment, all processing is done in the Parser, not Sema. If necessary, this is easy to move. Next steps: - Convert well for strings to actual values (need to look @ APInt.h) - Design the API between the Parser and Sema. Sema shouldn't have to be concerned with any parsing issues... llvm-svn: 39348
-
Chris Lattner authored
llvm-svn: 39347
-
- Feb 28, 2007
-
-
Steve Naroff authored
Go back to having the clang driver create ASTContext explicitly, passing it to Sema/ASTStreamer (separating the lifetime of ASTContext from the lifetime of Sema). One day it might be useful to consider creating a context object implicitly if one isn't provided (using default arguments in Sema's constructor). At this point, adding this convenience isn't necessary. llvm-svn: 39346
-
Steve Naroff authored
the prerocessor will be available via ASTContext). - Removed the public data member "PP" in ASTContext. - Changed ASTContext's contructor to take TargetInfo/IdentifierTable explicitly. - Implicitly create an ASTContext in Sema's constructor. This simplifies the clients job (and makes ASTContext more private). --As a side effect, added a "PrintStats" hook to Sema. To support this level of encapsulation, ASTContext is always dynamically allocated (by Sema). Previously, ASTContext was being allocated on the stack. I don't believe this should be a performance issue (since ASTContext is fairly course grain and tied to the lifetime of Sema currently). llvm-svn: 39345
-
- Feb 27, 2007
-
-
Steve Naroff authored
This set of changes includes: - convert ExprCXX.h and add to the Xcode project file. -- required adding CXXBoolLiteralExpr to StmtNodes.def. -- required adding visitor support (decl/defn). - make the class codes in StmtNodes.def explicit (to enable range checking). -- this required changing all clients of the STMT macro. - declare the instance data const. llvm-svn: 39344
-
- Feb 26, 2007
-
-
Steve Naroff authored
- adding enum constants & instance data to Stmt. - adding classof() functions to all Stmt's. - modifying contructors to pass the appropriate enum as an arg. Also tightened up a couple "void *" declarations/casts for arrays. llvm-svn: 39343
-
- Feb 22, 2007
-
-
Steve Naroff authored
clang still compiled/linked/ran properly...simply a confusing name regression. From now on I'll make sure I run "cvs diff" before committing any changes! llvm-svn: 39342
-
- Feb 21, 2007
-
-
Steve Naroff authored
rename FloatingConstant->FloatingLiteral rename StringExpr->StringLiteral llvm-svn: 39341
-
- Feb 13, 2007
-
-
Bill Wendling authored
llvm-svn: 39340
-
Bill Wendling authored
llvm-svn: 39339
-
Bill Wendling authored
llvm-svn: 39338
-
- Feb 11, 2007
-
-
Chris Lattner authored
llvm-svn: 39337
-
Chris Lattner authored
llvm-svn: 39336
-
Chris Lattner authored
llvm-svn: 39335
-
- Feb 08, 2007
-
-
Chris Lattner authored
llvm-svn: 39334
-
Chris Lattner authored
llvm-svn: 39333
-
- Jan 31, 2007
-
-
Chris Lattner authored
llvm-svn: 39332
-
- Jan 30, 2007
-
-
Chris Lattner authored
llvm-svn: 39331
-
Chris Lattner authored
llvm-svn: 39330
-