1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
//Provides: caml_domain_dls
//Version: >= 5
var caml_domain_dls = [0];
//Provides: caml_domain_dls_set
//Requires: caml_domain_dls
//Version: >= 5
function caml_domain_dls_set(a) {
caml_domain_dls = a;
}
//Provides: caml_domain_dls_compare_and_set
//Requires: caml_domain_dls
//Version: >= 5.2
function caml_domain_dls_compare_and_set(old, n) {
if (caml_domain_dls !== old) return 0;
caml_domain_dls = n;
return 1;
}
//Provides: caml_domain_dls_get
//Requires: caml_domain_dls
//Version: >= 5
function caml_domain_dls_get(_unit) {
return caml_domain_dls;
}
//Provides: caml_atomic_load
//Version: >= 5
function caml_atomic_load(ref) {
return ref[1];
}
//Provides: caml_atomic_load_field
//Version: >= 5.4
function caml_atomic_load_field(b, i) {
return b[i + 1];
}
//Provides: caml_atomic_cas
//Version: >= 5
function caml_atomic_cas(ref, o, n) {
if (ref[1] === o) {
ref[1] = n;
return 1;
}
return 0;
}
//Provides: caml_atomic_cas_field
//Version: >= 5.4
function caml_atomic_cas_field(b, i, o, n) {
if (b[i + 1] === o) {
b[i + 1] = n;
return 1;
}
return 0;
}
//Provides: caml_atomic_fetch_add
//Version: >= 5
function caml_atomic_fetch_add(ref, i) {
var old = ref[1];
ref[1] += i;
return old;
}
//Provides: caml_atomic_fetch_add_field
//Version: >= 5.4
function caml_atomic_fetch_add_field(b, i, n) {
var old = b[i + 1];
b[i + 1] += n;
return old;
}
//Provides: caml_atomic_exchange
//Version: >= 5
function caml_atomic_exchange(ref, v) {
var r = ref[1];
ref[1] = v;
return r;
}
//Provides: caml_atomic_exchange_field
//Version: >= 5.4
function caml_atomic_exchange_field(b, i, v) {
var r = b[i + 1];
b[i + 1] = v;
return r;
}
//Provides: caml_atomic_make_contended
//Version: >= 5.2
function caml_atomic_make_contended(a) {
return [0, a];
}
//Provides: caml_ml_domain_unique_token
//Version: >= 5.0, < 5.2
var caml_ml_domain_unique_token_ = [0];
function caml_ml_domain_unique_token(_unit) {
return caml_ml_domain_unique_token_;
}
//Provides: caml_recommended_domain_count
//Version: >= 5
function caml_recommended_domain_count(_unit) {
return 1;
}
//Provides: caml_ml_domain_index
//Requires: caml_domain_id
//Version: >= 5.03
function caml_ml_domain_index(_unit) {
return caml_domain_id;
}
//Provides: caml_domain_id
//Version: >= 5
var caml_domain_id = 0;
//Provides: caml_domain_spawn
//Requires: caml_ml_mutex_unlock
//Requires: caml_domain_id
//Requires: caml_callback
//Version: >= 5.2
var caml_domain_latest_idx = 1;
function caml_domain_spawn(f, term_sync) {
var id = caml_domain_latest_idx++;
var old = caml_domain_id;
caml_domain_id = id;
var res = caml_callback(f, [0]);
caml_domain_id = old;
caml_ml_mutex_unlock(term_sync[2]);
//TODO: fix exn case
term_sync[1] = [0, [0, res]];
return id;
}
//Provides: caml_domain_spawn
//Requires: caml_ml_mutex_unlock
//Requires: caml_domain_id
//Requires: caml_callback
//Version: >= 5.0, < 5.2
var caml_domain_latest_idx = 1;
function caml_domain_spawn(f, mutex) {
var id = caml_domain_latest_idx++;
var old = caml_domain_id;
caml_domain_id = id;
var _res = caml_callback(f, [0]);
caml_domain_id = old;
caml_ml_mutex_unlock(mutex);
return id;
}
//Provides: caml_ml_domain_id
//Requires: caml_domain_id
//Version: >= 5.0
function caml_ml_domain_id(_unit) {
return caml_domain_id;
}
//Provides: caml_ml_domain_cpu_relax
//Version: >= 5
function caml_ml_domain_cpu_relax(_unit) {
return 0;
}
|