Skip to content
  1. Feb 18, 2009
  2. Feb 17, 2009
    • Chris Lattner's avatar
      emit: · 709322b8
      Chris Lattner authored
      t.c:4:9: error: invalid type 'short *' to __real operator
                               __tg_choose (__real__(z), C##f(z), (C)(z), C##l(z)), 
                                            ^
      instead of:
      t.c:4:9: error: invalid type 'short *' to __real or __imag operator
                               __tg_choose (__real__(z), C##f(z), (C)(z), C##l(z)),
                                            ^
      
      fixing a fixme.  It would be even fancier to get the spelling of the token, but I
      don't care *that* much :)
      
      llvm-svn: 64759
      709322b8
    • Chris Lattner's avatar
      Make PragmaPackStack be a private class in SemaAttr and make its · 31180bbf
      Chris Lattner authored
      instance in Sema be a pimpl.
      
      llvm-svn: 64718
      31180bbf
    • Douglas Gregor's avatar
      Added ClassTemplateSpecializationDecl, which is a subclass of · 264ec4f2
      Douglas Gregor authored
      CXXRecordDecl that is used to represent class template
      specializations. These are canonical declarations that can refer to
      either an actual class template specialization in the code, e.g.,
      
        template<> class vector<bool> { };
      
      or to a template instantiation. However, neither of these features is
      actually implemented yet, so really we're just using (and uniqing) the
      declarations to make sure that, e.g., A<int> is a different type from
      A<float>. Note that we carefully distinguish between what the user
      wrote in the source code (e.g., "A<FLOAT>") and the semantic entity it
      represents (e.g., "A<float, int>"); the former is in the sugared Type,
      the latter is an actual Decl.
      
      llvm-svn: 64716
      264ec4f2
    • Chris Lattner's avatar
      copying and assignment of sema seem unwise :) · 01c3d238
      Chris Lattner authored
      llvm-svn: 64712
      01c3d238
  3. Feb 16, 2009
    • Douglas Gregor's avatar
      Adopt a more principled approach to invalid declarations: · 75a45ba2
      Douglas Gregor authored
        - If a declaration is an invalid redeclaration of an existing name,
          complain about the invalid redeclaration then avoid adding it to
          the AST (we can still parse the definition or initializer, if any).
        - If the declaration is invalid but there is no prior declaration
          with that name, introduce the invalid declaration into the AST
          (for later error recovery).
        - If the declaration is an invalid redeclaration of a builtin that
          starts with __builtin_, we produce an error and drop the
          redeclaration. If it is an invalid redeclaration of a library
          builtin (e.g., malloc, printf), warn (don't error!) and drop the
          redeclaration.
      
      If a user attempts to define a builtin, produce an error and (if it's
      a library builtin like malloc) suggest -ffreestanding.
      
      This addresses <rdar://problem/6097585> and PR2892. However, PR3588 is
      still going to cause some problems when builtins are redeclared
      without a prototype.
      
      llvm-svn: 64639
      75a45ba2
  4. Feb 15, 2009
    • Chris Lattner's avatar
      Refactor the deprecated and unavailable checks into a new · 4bf74fdd
      Chris Lattner authored
      DiagnoseUseOfDeprecatedDecl method.  This ensures that they
      are treated consistently.  This gets us 'unavailable' support
      on a few new types of decls, and makes sure we consistently
      silence deprecated when the caller is also deprecated.
      
      llvm-svn: 64612
      4bf74fdd
  5. Feb 14, 2009
    • Douglas Gregor's avatar
      Add hook to add attributes to function declarations that we know · e711f705
      Douglas Gregor authored
      about, whether they are builtins or not. Use this to add the
      appropriate "format" attribute to NSLog, NSLogv, asprintf, and
      vasprintf, and to translate builtin attributes (from Builtins.def)
      into actual attributes on the function declaration.
      
      Use the "printf" format attribute on function declarations to
      determine whether we should do format string checking, rather than
      looking at an ad hoc list of builtins and "known" function names.
      
      Be a bit more careful about when we consider a function a "builtin" in
      C++.
      
      llvm-svn: 64561
      e711f705
    • Anders Carlsson's avatar
    • Douglas Gregor's avatar
      Make it possible for builtins to expression FILE* arguments, so that · 538c3d84
      Douglas Gregor authored
      we can define builtins such as fprintf, vfprintf, and
      __builtin___fprintf_chk. Give a nice error message when we need to
      implicitly declare a function like fprintf.
      
      llvm-svn: 64526
      538c3d84
    • Douglas Gregor's avatar
      Extend builtin "attribute" syntax to include a notation for · ac5d4c5f
      Douglas Gregor authored
      printf-like functions, both builtin functions and those in the
      C library. The function-call checker now queries this attribute do
      determine if we have a printf-like function, rather than scanning
      through the list of "known functions IDs". However, there are 5
      functions they are not yet "builtins", so the function-call checker
      handles them specifically still:
      
        - fprintf and vfprintf: the builtins mechanism cannot (yet)
          express FILE* arguments, so these can't be encoded.
        - NSLog: the builtins mechanism cannot (yet) express NSString*
          arguments, so this (and NSLogv) can't be encoded.
        - asprintf and vasprintf: these aren't part of the C99 standard
          library, so we really shouldn't be defining them as builtins in
          the general case (and we don't seem to have the machinery to make
          them builtins only on certain targets and depending on whether
          extensions are enabled).
      
      llvm-svn: 64512
      ac5d4c5f
    • Douglas Gregor's avatar
      Implicitly declare certain C library functions (malloc, strcpy, memmove, · b9063fc1
      Douglas Gregor authored
      etc.) when we perform name lookup on them. This ensures that we
      produce the correct signature for these functions, which has two
      practical impacts:
      
        1) When we're supporting the "implicit function declaration" feature
        of C99, these functions will be implicitly declared with the right
        signature rather than as a function returning "int" with no
        prototype. See PR3541 for the reason why this is important (hint:
        GCC always predeclares these functions).
       
        2) If users attempt to redeclare one of these library functions with
        an incompatible signature, we produce a hard error.
      
      This patch does a little bit of work to give reasonable error
      messages. For example, when we hit case #1 we complain that we're
      implicitly declaring this function with a specific signature, and then
      we give a note that asks the user to include the appropriate header
      (e.g., "please include <stdlib.h> or explicitly declare 'malloc'"). In
      case #2, we show the type of the implicit builtin that was incorrectly
      declared, so the user can see the problem. We could do better here:
      for example, when displaying this latter error message we say
      something like:
      
        'strcpy' was implicitly declared here with type 'char *(char *, char
        const *)'
      
      but we should really print out a fake code line showing the
      declaration, like this:
      
        'strcpy' was implicitly declared here as:
      
          char *strcpy(char *, char const *)
      
      This would also be good for printing built-in candidates with C++
      operator overloading.
      
      The set of C library functions supported by this patch includes all
      functions from the C99 specification's <stdlib.h> and <string.h> that
      (a) are predefined by GCC and (b) have signatures that could cause
      codegen issues if they are treated as functions with no prototype
      returning and int. Future work could extend this set of functions to
      other C library functions that we know about.
      
      llvm-svn: 64504
      b9063fc1
  6. Feb 12, 2009
    • Douglas Gregor's avatar
      Introduce _Complex conversions into the function overloading · 78ca74d8
      Douglas Gregor authored
      system. Since C99 doesn't have overloading and C++ doesn't have
      _Complex, there is no specification for    this. Here's what I think
      makes sense.
      
      Complex conversions come in several flavors:
      
        - Complex promotions:  a complex -> complex   conversion where the
          underlying real-type conversion is a floating-point promotion. GCC
          seems to call this a promotion, EDG does something else. This is
          given "promotion" rank for determining the best viable function.
        - Complex conversions: a complex -> complex conversion that is
          not a complex promotion. This is given "conversion" rank for
          determining the best viable   function.
        - Complex-real conversions: a real -> complex or complex -> real
          conversion. This is given "conversion" rank for determining the
          best viable function.
      
      These rules are the same for C99 (when using the "overloadable"
      attribute) and C++. However, there is one difference in the handling
      of floating-point promotions: in C99, float -> long double and double
      -> long double are considered promotions (so we give them "promotion" 
      rank), while C++ considers these conversions ("conversion" rank).
      
      llvm-svn: 64343
      78ca74d8
  7. Feb 11, 2009
  8. Feb 10, 2009
  9. Feb 09, 2009
    • Douglas Gregor's avatar
      Eliminate TemplateArg so that we only have a single kind of · 67b556a0
      Douglas Gregor authored
      representation for template arguments. Also simplifies the interface
      for ActOnClassTemplateSpecialization and eliminates some annoying
      allocations of TemplateArgs.
      
      My attempt at smart pointers for template arguments lists is
      relatively lame. We can improve it once we're sure that we have the
      right representation for template arguments.
      
      llvm-svn: 64154
      67b556a0
    • Douglas Gregor's avatar
      Start processing template-ids as types when the template-name refers · 8bf4205c
      Douglas Gregor authored
      to a class template. For example, the template-id 'vector<int>' now
      has a nice, sugary type in the type system. What we can do now:
      
        - Parse template-ids like 'vector<int>' (where 'vector' names a
          class template) and form proper types for them in the type system.
        - Parse icky template-ids like 'A<5>' and 'A<(5 > 0)>' properly,
          using (sadly) a bool in the parser to tell it whether '>' should
          be treated as an operator or not.
      
      This is a baby-step, with major problems and limitations:
        - There are currently two ways that we handle template arguments
        (whether they are types or expressions). These will be merged, and,
        most likely, TemplateArg will disappear.
        - We don't have any notion of the declaration of class template
        specializations or of template instantiations, so all template-ids
        are fancy names for 'int' :)
      
      llvm-svn: 64153
      8bf4205c
    • Sebastian Redl's avatar
      Update new expression to make use of Declarator::getSourceRange(). · 1df2bbe7
      Sebastian Redl authored
      References are not objects; implement this in Type::isObjectType().
      
      llvm-svn: 64152
      1df2bbe7
    • Douglas Gregor's avatar
      Make Sema::getTypeName return the opaque pointer of a QualType rather · 9817f4a7
      Douglas Gregor authored
      than a Decl, which gives us some more flexibility to express the
      results with the type system. There are no clients using this
      flexibility yet, but it's meant to be able to describe qualified names
      as written in the source (e.g., "foo::type") or template-ids that name
      a class template specialization (e.g., "std::vector<INT>").
      
      DeclSpec's TST_typedef has become TST_typename, to reflect its use to
      describe types found by name (that may or may not be typedefs). The
      type representation of a DeclSpec with TST_typename is an opaque
      QualType pointer. All users of TST_typedef, both direct and indirect,
      have been updated for these changes.
      
      llvm-svn: 64141
      9817f4a7
  10. Feb 07, 2009
    • Sebastian Redl's avatar
      Move CheckPointerToMemberOperands to SemaExprCXX.cpp · 5822f08c
      Sebastian Redl authored
      llvm-svn: 64029
      5822f08c
    • Ted Kremenek's avatar
      Overhaul of Stmt allocation: · 5a201951
      Ted Kremenek authored
      - Made allocation of Stmt objects using vanilla new/delete a *compiler
        error* by making this new/delete "protected" within class Stmt.
      - Now the only way to allocate Stmt objects is by using the new
        operator that takes ASTContext& as an argument.  This ensures that
        all Stmt nodes are allocated from the same (pool) allocator.
      - Naturally, these two changes required that *all* creation sites for
        AST nodes use new (ASTContext&).  This is a large patch, but the
        majority of the changes are just this mechanical adjustment.
      - The above changes also mean that AST nodes can no longer be
        deallocated using 'delete'.  Instead, one most do
        StmtObject->Destroy(ASTContext&) or do
        ASTContextObject.Deallocate(StmtObject) (the latter not running the
        'Destroy' method).
      
      Along the way I also...
      - Made CompoundStmt allocate its array of Stmt* using the allocator in
        ASTContext (previously it used std::vector).  There are a whole
        bunch of other Stmt classes that need to be similarly changed to
        ensure that all memory allocated for ASTs comes from the allocator
        in ASTContext.
      - Added a new smart pointer ExprOwningPtr to Sema.h.  This replaces
        the uses of llvm::OwningPtr within Sema, as llvm::OwningPtr used
        'delete' to free memory instead of a Stmt's 'Destroy' method.
      
      Big thanks to Doug Gregor for helping with the acrobatics of making
      'new/delete' private and the new smart pointer ExprOwningPtr!
      
      llvm-svn: 63997
      5a201951
    • Sebastian Redl's avatar
      Implement dereferencing of pointers-to-member. · 112a9766
      Sebastian Redl authored
      llvm-svn: 63983
      112a9766
  11. Feb 06, 2009
    • Douglas Gregor's avatar
      Semantic checking for class template declarations and · cd72ba97
      Douglas Gregor authored
      redeclarations. For example, checks that a class template
      redeclaration has the same template parameters as previous
      declarations.
      
      Detangled class-template checking from ActOnTag, whose logic was
      getting rather convoluted because it tried to handle C, C++, and C++
      template semantics in one shot.
      
      Made some inroads toward eliminating extraneous "declaration does not
      declare anything" errors by adding an "error" type specifier.
      
      llvm-svn: 63973
      cd72ba97
  12. Feb 05, 2009
  13. Feb 04, 2009
  14. Feb 03, 2009
Loading