Changeset 69914cbc for tests/zombies/linked-list-perf
- Timestamp:
- May 12, 2021, 4:30:27 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- e2f601f
- Parents:
- 67b421c
- Location:
- tests/zombies/linked-list-perf
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/zombies/linked-list-perf/experiment.koad
r67b421c r69914cbc 49 49 #elif defined IMPL_CFA_MIKE_OLD 50 50 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 51 69 #include <containers/list.hfa> 52 struct S {53 int f[64]; // FIXME: make "is volatile" consistent; given bug #TBD54 DLISTED_MGD_IMPL_IN(S)55 };56 DLISTED_MGD_IMPL_OUT(S)57 58 #elif defined IMPL_CFA_MIKE_POC59 60 #include "mike-proto-list.hfa"61 struct S {62 int f[64]; // FIXME: make "is volatile" consistent; given bug #TBD63 inline dlink(S);64 };65 P9_EMBEDDED( S, dlink(S) )66 67 #elif defined IMPL_CFA_MIKE_NEW68 69 #include <containers/list2.hfa>70 70 struct S { 71 71 int f[64]; // FIXME: make "is volatile" consistent; given bug #TBD
Note: See TracChangeset
for help on using the changeset viewer.