Ignore:
Timestamp:
May 13, 2021, 3:49:30 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
aff7e86, c457dc41
Parents:
8cd5434 (diff), 69914cbc (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
tests/zombies/linked-list-perf
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • tests/zombies/linked-list-perf/experiment.koad

    r8cd5434 re2f601f  
    4949#elif defined IMPL_CFA_MIKE_OLD
    5050
     51        #include "mike-old.hfa"
     52        struct S {
     53                int f[64]; // FIXME: make "is volatile" consistent; given bug #TBD
     54                DLISTED_MGD_IMPL_IN(S)
     55        };
     56        DLISTED_MGD_IMPL_OUT(S)
     57
     58#elif defined IMPL_CFA_MIKE_POC
     59
     60        #include "mike-proto-list.hfa"
     61        struct S {
     62                int f[64]; // FIXME: make "is volatile" consistent; given bug #TBD
     63                inline dlink(S);
     64        };
     65        P9_EMBEDDED( S, dlink(S) )
     66
     67#elif defined IMPL_CFA_MIKE_NEW
     68
    5169        #include <containers/list.hfa>
    52         struct S {
    53                 int f[64]; // FIXME: make "is volatile" consistent; given bug #TBD
    54                 DLISTED_MGD_IMPL_IN(S)
    55         };
    56         DLISTED_MGD_IMPL_OUT(S)
    57 
    58 #elif defined IMPL_CFA_MIKE_POC
    59 
    60         #include "mike-proto-list.hfa"
    61         struct S {
    62                 int f[64]; // FIXME: make "is volatile" consistent; given bug #TBD
    63                 inline dlink(S);
    64         };
    65         P9_EMBEDDED( S, dlink(S) )
    66 
    67 #elif defined IMPL_CFA_MIKE_NEW
    68 
    69         #include <containers/list2.hfa>
    7070        struct S {
    7171                int f[64]; // FIXME: make "is volatile" consistent; given bug #TBD
Note: See TracChangeset for help on using the changeset viewer.