summaryrefslogtreecommitdiff
path: root/compiler/GHC/Builtin/bytearray-ops.txt.pp
blob: 6ed9028c6bd5838298fca5c7a793d411db65bf5a (plain)
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551

------------------------------------
-- ByteArray# operations
------------------------------------


-- Do not edit. This file is generated by utils/genprimopcode/gen_bytearray_ops.py.
-- To regenerate run,
--
--      python3 utils/genprimops/gen_bytearray_ops.py > compiler/GHC/Builtin/bytearray-ops.txt.pp


------------------------------------
-- aligned index operations
------------------------------------

primop IndexByteArrayOp_Char "indexCharArray#" GenPrimOp
   ByteArray# -> Int# -> Char#
   {Read a 8-bit character; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_WideChar "indexWideCharArray#" GenPrimOp
   ByteArray# -> Int# -> Char#
   {Read a 32-bit character; offset in 4-byte words.}
   with can_fail = True

primop IndexByteArrayOp_Int "indexIntArray#" GenPrimOp
   ByteArray# -> Int# -> Int#
   {Read a word-sized integer; offset in machine words.}
   with can_fail = True

primop IndexByteArrayOp_Word "indexWordArray#" GenPrimOp
   ByteArray# -> Int# -> Word#
   {Read a word-sized unsigned integer; offset in machine words.}
   with can_fail = True

primop IndexByteArrayOp_Addr "indexAddrArray#" GenPrimOp
   ByteArray# -> Int# -> Addr#
   {Read a machine address; offset in machine words.}
   with can_fail = True

primop IndexByteArrayOp_Float "indexFloatArray#" GenPrimOp
   ByteArray# -> Int# -> Float#
   {Read a single-precision floating-point value; offset in 4-byte words.}
   with can_fail = True

primop IndexByteArrayOp_Double "indexDoubleArray#" GenPrimOp
   ByteArray# -> Int# -> Double#
   {Read a double-precision floating-point value; offset in 8-byte words.}
   with can_fail = True

primop IndexByteArrayOp_StablePtr "indexStablePtrArray#" GenPrimOp
   ByteArray# -> Int# -> StablePtr# a
   {Read a {\tt StablePtr#} value; offset in machine words.}
   with can_fail = True

primop IndexByteArrayOp_Int8 "indexInt8Array#" GenPrimOp
   ByteArray# -> Int# -> Int8#
   {Read a 8-bit signed integer; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Int16 "indexInt16Array#" GenPrimOp
   ByteArray# -> Int# -> Int16#
   {Read a 16-bit signed integer; offset in 2-byte words.}
   with can_fail = True

primop IndexByteArrayOp_Int32 "indexInt32Array#" GenPrimOp
   ByteArray# -> Int# -> Int32#
   {Read a 32-bit signed integer; offset in 4-byte words.}
   with can_fail = True

primop IndexByteArrayOp_Int64 "indexInt64Array#" GenPrimOp
   ByteArray# -> Int# -> INT64
   {Read a 64-bit signed integer; offset in 8-byte words.}
   with can_fail = True

primop IndexByteArrayOp_Word8 "indexWord8Array#" GenPrimOp
   ByteArray# -> Int# -> Word8#
   {Read a 8-bit unsigned integer; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word16 "indexWord16Array#" GenPrimOp
   ByteArray# -> Int# -> Word16#
   {Read a 16-bit unsigned integer; offset in 2-byte words.}
   with can_fail = True

primop IndexByteArrayOp_Word32 "indexWord32Array#" GenPrimOp
   ByteArray# -> Int# -> Word32#
   {Read a 32-bit unsigned integer; offset in 4-byte words.}
   with can_fail = True

primop IndexByteArrayOp_Word64 "indexWord64Array#" GenPrimOp
   ByteArray# -> Int# -> WORD64
   {Read a 64-bit unsigned integer; offset in 8-byte words.}
   with can_fail = True


------------------------------------
-- unaligned index operations
------------------------------------

primop IndexByteArrayOp_Word8AsChar "indexWord8ArrayAsChar#" GenPrimOp
   ByteArray# -> Int# -> Char#
   {Read a 8-bit character; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsWideChar "indexWord8ArrayAsWideChar#" GenPrimOp
   ByteArray# -> Int# -> Char#
   {Read a 32-bit character; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsInt "indexWord8ArrayAsInt#" GenPrimOp
   ByteArray# -> Int# -> Int#
   {Read a word-sized integer; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsWord "indexWord8ArrayAsWord#" GenPrimOp
   ByteArray# -> Int# -> Word#
   {Read a word-sized unsigned integer; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsAddr "indexWord8ArrayAsAddr#" GenPrimOp
   ByteArray# -> Int# -> Addr#
   {Read a machine address; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsFloat "indexWord8ArrayAsFloat#" GenPrimOp
   ByteArray# -> Int# -> Float#
   {Read a single-precision floating-point value; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsDouble "indexWord8ArrayAsDouble#" GenPrimOp
   ByteArray# -> Int# -> Double#
   {Read a double-precision floating-point value; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsStablePtr "indexWord8ArrayAsStablePtr#" GenPrimOp
   ByteArray# -> Int# -> StablePtr# a
   {Read a {\tt StablePtr#} value; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsInt16 "indexWord8ArrayAsInt16#" GenPrimOp
   ByteArray# -> Int# -> Int16#
   {Read a 16-bit signed integer; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsInt32 "indexWord8ArrayAsInt32#" GenPrimOp
   ByteArray# -> Int# -> Int32#
   {Read a 32-bit signed integer; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsInt64 "indexWord8ArrayAsInt64#" GenPrimOp
   ByteArray# -> Int# -> INT64
   {Read a 64-bit signed integer; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsWord16 "indexWord8ArrayAsWord16#" GenPrimOp
   ByteArray# -> Int# -> Word16#
   {Read a 16-bit unsigned integer; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsWord32 "indexWord8ArrayAsWord32#" GenPrimOp
   ByteArray# -> Int# -> Word32#
   {Read a 32-bit unsigned integer; offset in bytes.}
   with can_fail = True

primop IndexByteArrayOp_Word8AsWord64 "indexWord8ArrayAsWord64#" GenPrimOp
   ByteArray# -> Int# -> WORD64
   {Read a 64-bit unsigned integer; offset in bytes.}
   with can_fail = True


------------------------------------
-- aligned read operations
------------------------------------

primop ReadByteArrayOp_Char "readCharArray#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Char# #)
   {Read a 8-bit character; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_WideChar "readWideCharArray#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Char# #)
   {Read a 32-bit character; offset in 4-byte words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Int "readIntArray#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Int# #)
   {Read a word-sized integer; offset in machine words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word "readWordArray#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Word# #)
   {Read a word-sized unsigned integer; offset in machine words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Addr "readAddrArray#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Addr# #)
   {Read a machine address; offset in machine words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Float "readFloatArray#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Float# #)
   {Read a single-precision floating-point value; offset in 4-byte words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Double "readDoubleArray#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Double# #)
   {Read a double-precision floating-point value; offset in 8-byte words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_StablePtr "readStablePtrArray#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, StablePtr# a #)
   {Read a {\tt StablePtr#} value; offset in machine words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Int8 "readInt8Array#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Int8# #)
   {Read a 8-bit signed integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Int16 "readInt16Array#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Int16# #)
   {Read a 16-bit signed integer; offset in 2-byte words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Int32 "readInt32Array#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Int32# #)
   {Read a 32-bit signed integer; offset in 4-byte words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Int64 "readInt64Array#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, INT64 #)
   {Read a 64-bit signed integer; offset in 8-byte words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8 "readWord8Array#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Word8# #)
   {Read a 8-bit unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word16 "readWord16Array#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Word16# #)
   {Read a 16-bit unsigned integer; offset in 2-byte words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word32 "readWord32Array#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Word32# #)
   {Read a 32-bit unsigned integer; offset in 4-byte words.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word64 "readWord64Array#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, WORD64 #)
   {Read a 64-bit unsigned integer; offset in 8-byte words.}
   with has_side_effects = True
        can_fail = True


------------------------------------
-- unaligned read operations
------------------------------------

primop ReadByteArrayOp_Word8AsChar "readWord8ArrayAsChar#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Char# #)
   {Read a 8-bit character; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsWideChar "readWord8ArrayAsWideChar#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Char# #)
   {Read a 32-bit character; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsInt "readWord8ArrayAsInt#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Int# #)
   {Read a word-sized integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsWord "readWord8ArrayAsWord#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Word# #)
   {Read a word-sized unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsAddr "readWord8ArrayAsAddr#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Addr# #)
   {Read a machine address; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsFloat "readWord8ArrayAsFloat#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Float# #)
   {Read a single-precision floating-point value; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsDouble "readWord8ArrayAsDouble#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Double# #)
   {Read a double-precision floating-point value; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsStablePtr "readWord8ArrayAsStablePtr#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, StablePtr# a #)
   {Read a {\tt StablePtr#} value; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsInt16 "readWord8ArrayAsInt16#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Int16# #)
   {Read a 16-bit signed integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsInt32 "readWord8ArrayAsInt32#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Int32# #)
   {Read a 32-bit signed integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsInt64 "readWord8ArrayAsInt64#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, INT64 #)
   {Read a 64-bit signed integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsWord16 "readWord8ArrayAsWord16#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Word16# #)
   {Read a 16-bit unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsWord32 "readWord8ArrayAsWord32#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, Word32# #)
   {Read a 32-bit unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop ReadByteArrayOp_Word8AsWord64 "readWord8ArrayAsWord64#" GenPrimOp
   MutableByteArray# s -> Int# -> State# s -> (# State# s, WORD64 #)
   {Read a 64-bit unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True


------------------------------------
-- aligned write operations
------------------------------------

primop WriteByteArrayOp_Char "writeCharArray#" GenPrimOp
   MutableByteArray# s -> Int# -> Char# -> State# s -> State# s
   {Write a 8-bit character; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_WideChar "writeWideCharArray#" GenPrimOp
   MutableByteArray# s -> Int# -> Char# -> State# s -> State# s
   {Write a 32-bit character; offset in 4-byte words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Int "writeIntArray#" GenPrimOp
   MutableByteArray# s -> Int# -> Int# -> State# s -> State# s
   {Write a word-sized integer; offset in machine words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word "writeWordArray#" GenPrimOp
   MutableByteArray# s -> Int# -> Word# -> State# s -> State# s
   {Write a word-sized unsigned integer; offset in machine words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Addr "writeAddrArray#" GenPrimOp
   MutableByteArray# s -> Int# -> Addr# -> State# s -> State# s
   {Write a machine address; offset in machine words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Float "writeFloatArray#" GenPrimOp
   MutableByteArray# s -> Int# -> Float# -> State# s -> State# s
   {Write a single-precision floating-point value; offset in 4-byte words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Double "writeDoubleArray#" GenPrimOp
   MutableByteArray# s -> Int# -> Double# -> State# s -> State# s
   {Write a double-precision floating-point value; offset in 8-byte words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_StablePtr "writeStablePtrArray#" GenPrimOp
   MutableByteArray# s -> Int# -> StablePtr# a -> State# s -> State# s
   {Write a {\tt StablePtr#} value; offset in machine words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Int8 "writeInt8Array#" GenPrimOp
   MutableByteArray# s -> Int# -> Int8# -> State# s -> State# s
   {Write a 8-bit signed integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Int16 "writeInt16Array#" GenPrimOp
   MutableByteArray# s -> Int# -> Int16# -> State# s -> State# s
   {Write a 16-bit signed integer; offset in 2-byte words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Int32 "writeInt32Array#" GenPrimOp
   MutableByteArray# s -> Int# -> Int32# -> State# s -> State# s
   {Write a 32-bit signed integer; offset in 4-byte words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Int64 "writeInt64Array#" GenPrimOp
   MutableByteArray# s -> Int# -> INT64 -> State# s -> State# s
   {Write a 64-bit signed integer; offset in 8-byte words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8 "writeWord8Array#" GenPrimOp
   MutableByteArray# s -> Int# -> Word8# -> State# s -> State# s
   {Write a 8-bit unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word16 "writeWord16Array#" GenPrimOp
   MutableByteArray# s -> Int# -> Word16# -> State# s -> State# s
   {Write a 16-bit unsigned integer; offset in 2-byte words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word32 "writeWord32Array#" GenPrimOp
   MutableByteArray# s -> Int# -> Word32# -> State# s -> State# s
   {Write a 32-bit unsigned integer; offset in 4-byte words.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word64 "writeWord64Array#" GenPrimOp
   MutableByteArray# s -> Int# -> WORD64 -> State# s -> State# s
   {Write a 64-bit unsigned integer; offset in 8-byte words.}
   with has_side_effects = True
        can_fail = True


------------------------------------
-- unaligned write operations
------------------------------------

primop WriteByteArrayOp_Word8AsChar "writeWord8ArrayAsChar#" GenPrimOp
   MutableByteArray# s -> Int# -> Char# -> State# s -> State# s
   {Write a 8-bit character; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsWideChar "writeWord8ArrayAsWideChar#" GenPrimOp
   MutableByteArray# s -> Int# -> Char# -> State# s -> State# s
   {Write a 32-bit character; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsInt "writeWord8ArrayAsInt#" GenPrimOp
   MutableByteArray# s -> Int# -> Int# -> State# s -> State# s
   {Write a word-sized integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsWord "writeWord8ArrayAsWord#" GenPrimOp
   MutableByteArray# s -> Int# -> Word# -> State# s -> State# s
   {Write a word-sized unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsAddr "writeWord8ArrayAsAddr#" GenPrimOp
   MutableByteArray# s -> Int# -> Addr# -> State# s -> State# s
   {Write a machine address; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsFloat "writeWord8ArrayAsFloat#" GenPrimOp
   MutableByteArray# s -> Int# -> Float# -> State# s -> State# s
   {Write a single-precision floating-point value; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsDouble "writeWord8ArrayAsDouble#" GenPrimOp
   MutableByteArray# s -> Int# -> Double# -> State# s -> State# s
   {Write a double-precision floating-point value; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsStablePtr "writeWord8ArrayAsStablePtr#" GenPrimOp
   MutableByteArray# s -> Int# -> StablePtr# a -> State# s -> State# s
   {Write a {\tt StablePtr#} value; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsInt16 "writeWord8ArrayAsInt16#" GenPrimOp
   MutableByteArray# s -> Int# -> Int16# -> State# s -> State# s
   {Write a 16-bit signed integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsInt32 "writeWord8ArrayAsInt32#" GenPrimOp
   MutableByteArray# s -> Int# -> Int32# -> State# s -> State# s
   {Write a 32-bit signed integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsInt64 "writeWord8ArrayAsInt64#" GenPrimOp
   MutableByteArray# s -> Int# -> INT64 -> State# s -> State# s
   {Write a 64-bit signed integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsWord16 "writeWord8ArrayAsWord16#" GenPrimOp
   MutableByteArray# s -> Int# -> Word16# -> State# s -> State# s
   {Write a 16-bit unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsWord32 "writeWord8ArrayAsWord32#" GenPrimOp
   MutableByteArray# s -> Int# -> Word32# -> State# s -> State# s
   {Write a 32-bit unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True

primop WriteByteArrayOp_Word8AsWord64 "writeWord8ArrayAsWord64#" GenPrimOp
   MutableByteArray# s -> Int# -> WORD64 -> State# s -> State# s
   {Write a 64-bit unsigned integer; offset in bytes.}
   with has_side_effects = True
        can_fail = True