Skip to content
Snippets Groups Projects
  1. Sep 09, 2013
  2. Sep 27, 2010
  3. Feb 02, 2010
    • Douglas Gregor's avatar
      Implement promotion for enumeration types. · aa74a1e4
      Douglas Gregor authored
      WHAT!?!
      
      It turns out that Type::isPromotableIntegerType() was not considering
      enumeration types to be promotable, so we would never do the
      promotion despite having properly computed the promotion type when the
      enum was defined. Various operations on values of enum type just
      "worked" because we could still compute the integer rank of an enum
      type; the oddity, however, is that operations such as "add an enum and
      an unsigned" would often have an enum result type (!). The bug
      actually showed up as a spurious -Wformat diagnostic
      (<rdar://problem/7595366>), but in theory it could cause miscompiles.
      
      In this commit:
        - Enum types with a promotion type of "int" or "unsigned int" are
        promotable.
        - Tweaked the computation of promotable types for enums
        - For all of the ABIs, treat enum types the same way as their
        underlying types (*not* their promotion types) for argument passing
        and return values
        - Extend the ABI tester with support for enumeration types
      
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95117 91177308-0d34-0410-b5e6-96231b3b80d8
      aa74a1e4
    • Douglas Gregor's avatar
      Include <stdlib.h>, so that we're sure to get atoi. · c6277a0a
      Douglas Gregor authored
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95095 91177308-0d34-0410-b5e6-96231b3b80d8
      c6277a0a
  4. Aug 16, 2009
  5. Jul 25, 2009
  6. Jul 10, 2009
  7. May 26, 2009
  8. May 25, 2009
  9. May 09, 2009
  10. May 08, 2009
  11. Mar 02, 2009
  12. Feb 22, 2009
  13. Feb 18, 2009
  14. Jan 29, 2009
  15. Jan 28, 2009
  16. Jan 26, 2009
  17. Jan 24, 2009
  18. Jan 15, 2009
    • Daniel Dunbar's avatar
      Add utils/ABITest, my ABI test generation tool. · a83fb864
      Daniel Dunbar authored
       - Mostly written as an entertaining exercise in enumerating large or
         (countably, naturally) infinite sets. But hey, its useful too!
      
       - Idea is to number all C-types so that the N-th type can quickly be
         computed, with a good deal of flexibility about what types to
         include, and taking some care so that the (N+1)-th type is
         interestingly different from the N-th type. For example, using the
         default generator, the 1,000,000-th function type is:
      --
      typedef _Complex int T0;
      typedef char T1 __attribute__ ((vector_size (4)));
      typedef int T2 __attribute__ ((vector_size (4)));
      T2 fn1000000(T0 arg0, signed long long arg1, T1 arg2, T0 arg3);
      --
         and the 1,000,001-th type is:
      --
      typedef _Complex char T0;
      typedef _Complex char T2;
      typedef struct T1 { T2 field0; T2 field1; T2 field2; } T1;
      typedef struct T3 {  } T3;
      unsigned short fn1000001(T0 arg0, T1 arg1, T3 arg2);
      --
      
         Computing the 10^1600-th type takes a little less than 1s. :)
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62253 91177308-0d34-0410-b5e6-96231b3b80d8
      a83fb864
Loading