Changeset 1d2314f


Ignore:
Timestamp:
Jun 19, 2020, 8:48:12 AM (4 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
8d321f9
Parents:
109c916 (diff), 8fc6e92a (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:
examples
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • examples/hashtable.cfa

    r109c916 r1d2314f  
    2323};
    2424
    25 forall( otype K, dtype tN, dtype tE | $dlistable(tN, tE) | hkey(K, tN) | { void defaultResumptionHandler(ht_fill_limit_crossed &); } ) {
     25forall( otype K, dtype tN, dtype tE | $dlistable(tN, tE) | hkey(K, tN) ) {
    2626
    2727    struct hashtable {
     
    3333        float ff_next_warn_up;
    3434
    35         void (*__stashed_defaultResumptionHandler) (ht_fill_limit_crossed &);
     35        void (*defaultResumptionHandler) (ht_fill_limit_crossed &);
    3636    };
    3737
    3838    void ?{}( hashtable(K, tN, tE) & this ) = void;
    39 //    void ?{}( hashtable(K, tN, tE) & this, size_t, dlist(tN, tE)* ) = void;
     39}
     40
     41forall( otype K, dtype tN, dtype tE | $dlistable(tN, tE) | hkey(K, tN) | { void defaultResumptionHandler(ht_fill_limit_crossed &); } ) {
    4042
    4143    void ?{}( hashtable(K, tN, tE) & this, size_t n_buckets, dlist(tN, tE) *buckets ) {
     
    4749        this.ff_next_warn_up = 0.5;
    4850
    49         this.__stashed_defaultResumptionHandler = defaultResumptionHandler;
     51        this.defaultResumptionHandler = defaultResumptionHandler;
    5052
    5153        for ( i; n_buckets ) {
     
    7981
    8082    void check_ff_warning( hashtable(K, tN, tE) & this ) with (this) {
    81         void (*defaultResumptionHandler) (ht_fill_limit_crossed &) = __stashed_defaultResumptionHandler;
    8283        if (fill_frac(this) > ff_next_warn_up) {
    8384            throwResume (ht_fill_limit_crossed){};
Note: See TracChangeset for help on using the changeset viewer.