forked from cornelisnetworks/opa-psm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psm_mq_internal.h
525 lines (461 loc) · 14.7 KB
/
psm_mq_internal.h
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
/*
This file is provided under a dual BSD/GPLv2 license. When using or
redistributing this file, you may do so under either license.
GPL LICENSE SUMMARY
Copyright(c) 2015 Intel Corporation.
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
Contact Information:
Intel Corporation, www.intel.com
BSD LICENSE
Copyright(c) 2015 Intel Corporation.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of Intel Corporation nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/* Copyright (c) 2003-2015 Intel Corporation. All rights reserved. */
#ifndef MQ_INT_H
#define MQ_INT_H
/* Ugh. smmintrin.h eventually includes mm_malloc.h, which calls malloc */
#ifdef malloc
#undef malloc
#endif
#ifdef free
#undef free
#endif
#include <smmintrin.h>
#include "psm_user.h"
#if 0
typedef psm2_error_t(*psm_mq_unexpected_callback_fn_t)
(psm2_mq_t mq, uint16_t mode, psm2_epaddr_t epaddr,
uint64_t tag, uint32_t send_msglen, const void *payload,
uint32_t paylen);
#endif
#define NUM_HASH_BUCKETS 64
#define HASH_THRESHOLD 65
#define NUM_HASH_CONFIGS 3
#define NUM_MQ_SUBLISTS (NUM_HASH_CONFIGS + 1)
#define REMOVE_ENTRY 1
enum psm2_mq_tag_pattern {
PSM2_TAG_SRC = 0,
PSM2_TAG_ANYSRC,
PSM2_ANYTAG_SRC,
PSM2_ANYTAG_ANYSRC,
};
struct psm2_mq {
psm2_ep_t ep; /**> ep back pointer */
mpool_t sreq_pool;
mpool_t rreq_pool;
struct mqq unexpected_htab[NUM_HASH_CONFIGS][NUM_HASH_BUCKETS];
struct mqq expected_htab[NUM_HASH_CONFIGS][NUM_HASH_BUCKETS];
/*psm_mq_unexpected_callback_fn_t unexpected_callback; */
struct mqq expected_q; /**> Preposted (expected) queue */
struct mqq unexpected_q; /**> Unexpected queue */
struct mqq completed_q; /**> Completed queue */
struct mqq outoforder_q; /**> OutofOrder queue */
STAILQ_HEAD(, psm2_mq_req) eager_q; /**> eager request queue */
uint32_t hfi_thresh_rv;
uint32_t shm_thresh_rv;
uint32_t hfi_window_rv;
int memmode;
uint64_t timestamp;
psm2_mq_stats_t stats; /**> MQ stats, accumulated by each PTL */
int print_stats;
int nohash_fastpath;
unsigned unexpected_hash_len;
unsigned unexpected_list_len;
unsigned expected_hash_len;
unsigned expected_list_len;
};
#define MQ_HFI_THRESH_TINY 8
#define MQ_HFI_THRESH_EGR_SDMA_XEON 34000
#define MQ_HFI_THRESH_EGR_SDMA_PHI2 200000
#define MQ_HFI_THRESH_EGR_SDMA_SQ_XEON 8192
#define MQ_HFI_THRESH_EGR_SDMA_SQ_PHI2 65536
#define MQE_TYPE_IS_SEND(type) ((type) & MQE_TYPE_SEND)
#define MQE_TYPE_IS_RECV(type) ((type) & MQE_TYPE_RECV)
#define MQE_TYPE_SEND 0x1000
#define MQE_TYPE_RECV 0x2000
#define MQE_TYPE_FLAGMASK 0x0fff
#define MQE_TYPE_WAITING 0x0001
#define MQE_TYPE_WAITING_PEER 0x0004
#define MQE_TYPE_EAGER_QUEUE 0x0008
#define MQ_STATE_COMPLETE 0
#define MQ_STATE_POSTED 1
#define MQ_STATE_MATCHED 2
#define MQ_STATE_UNEXP 3
#define MQ_STATE_UNEXP_RV 4
#define MQ_STATE_FREE 5
/*
* These must match the ips protocol message opcode.
*/
#define MQ_MSG_TINY 0xc1
#define MQ_MSG_SHORT 0xc2
#define MQ_MSG_EAGER 0xc3
#define MQ_MSG_LONGRTS 0xc4
/*
* Descriptor allocation limits.
* The 'LIMITS' predefines fill in a psmi_rlimits_mpool structure
*/
#define MQ_SENDREQ_LIMITS { \
.env = "PSM2_MQ_SENDREQS_MAX", \
.descr = "Max num of isend requests in flight", \
.env_level = PSMI_ENVVAR_LEVEL_USER, \
.minval = 1, \
.maxval = ~0, \
.mode[PSMI_MEMMODE_NORMAL] = { 1024, 1048576 }, \
.mode[PSMI_MEMMODE_MINIMAL] = { 1024, 65536 }, \
.mode[PSMI_MEMMODE_LARGE] = { 8192, 16777216 } \
}
#define MQ_RECVREQ_LIMITS { \
.env = "PSM2_MQ_RECVREQS_MAX", \
.descr = "Max num of irecv requests in flight", \
.env_level = PSMI_ENVVAR_LEVEL_USER, \
.minval = 1, \
.maxval = ~0, \
.mode[PSMI_MEMMODE_NORMAL] = { 1024, 1048576 }, \
.mode[PSMI_MEMMODE_MINIMAL] = { 1024, 65536 }, \
.mode[PSMI_MEMMODE_LARGE] = { 8192, 16777216 } \
}
typedef psm2_error_t(*mq_rts_callback_fn_t) (psm2_mq_req_t req, int was_posted);
typedef psm2_error_t(*mq_testwait_callback_fn_t) (psm2_mq_req_t *req);
/* receive mq_req, the default */
struct psm2_mq_req {
struct {
psm2_mq_req_t next[NUM_MQ_SUBLISTS];
psm2_mq_req_t prev[NUM_MQ_SUBLISTS];
STAILQ_ENTRY(psm2_mq_req) nextq; /* used for eager only */
};
struct mqq *q[NUM_MQ_SUBLISTS];
uint64_t timestamp;
uint32_t state;
uint32_t type;
psm2_mq_t mq;
/* Tag matching vars */
psm2_epaddr_t peer;
psm2_mq_tag_t tag;
psm2_mq_tag_t tagsel; /* used for receives */
/* Some PTLs want to get notified when there's a test/wait event */
mq_testwait_callback_fn_t testwait_callback;
/* Buffer attached to request. May be a system buffer for unexpected
* messages or a user buffer when an expected message */
uint8_t *buf;
uint32_t buf_len;
uint32_t error_code;
uint16_t msg_seqnum; /* msg seq num for mctxt */
uint32_t recv_msglen; /* Message length we are ready to receive */
uint32_t send_msglen; /* Message length from sender */
uint32_t recv_msgoff; /* Message offset into buf */
union {
uint32_t send_msgoff; /* Bytes received so far.. can be larger than buf_len */
uint32_t recv_msgposted;
};
uint32_t rts_reqidx_peer;
/* Used for request to send messages */
void *context; /* user context associated to sends or receives */
/* Used to keep track of unexpected rendezvous */
mq_rts_callback_fn_t rts_callback;
psm2_epaddr_t rts_peer;
uintptr_t rts_sbuf;
/* PTLs get to store their own per-request data. MQ manages the allocation
* by allocating psm2_mq_req so that ptl_req_data has enough space for all
* possible PTLs.
*/
union {
void *ptl_req_ptr; /* when used by ptl as pointer */
uint8_t ptl_req_data[0]; /* when used by ptl for "inline" data */
};
};
PSMI_ALWAYS_INLINE(
unsigned
hash_64(uint64_t a))
{
return _mm_crc32_u64(0, a);
}
PSMI_ALWAYS_INLINE(
unsigned
hash_32(uint32_t a))
{
return _mm_crc32_u32(0, a);
}
void psmi_mq_mtucpy(void *vdest, const void *vsrc, uint32_t nchars);
#if defined(__x86_64__)
void psmi_mq_mtucpy_safe(void *vdest, const void *vsrc, uint32_t nchars);
#else
#define psmi_mq_mtucpy_safe psmi_mq_mtucpy
#endif
/*
* Optimize for 0-8 byte case, but also handle others.
*/
PSMI_ALWAYS_INLINE(
void
mq_copy_tiny(uint32_t *dest, uint32_t *src, uint8_t len))
{
switch (len) {
case 8:
*dest++ = *src++;
case 4:
*dest++ = *src++;
case 0:
return;
case 7:
case 6:
case 5:
*dest++ = *src++;
len -= 4;
case 3:
case 2:
case 1:
break;
default: /* greater than 8 */
psmi_mq_mtucpy(dest, src, len);
return;
}
uint8_t *dest1 = (uint8_t *) dest;
uint8_t *src1 = (uint8_t *) src;
switch (len) {
case 3:
*dest1++ = *src1++;
case 2:
*dest1++ = *src1++;
case 1:
*dest1++ = *src1++;
}
}
/* Typedef describing a function to populate a psm2_mq_status(2)_t given a
* matched request. The purpose of this typedef is to avoid duplicating
* code to handle both PSM v1 and v2 status objects. Outer routines pass in
* either mq_status_copy or mq_status2_copy and the inner routine calls that
* provided routine to fill in the correct status type.
*/
typedef void (*psmi_mq_status_copy_t) (psm2_mq_req_t req, void *status);
/*
* Given an req with buffer ubuf of length ubuf_len,
* fill in the req's status and return the amount of bytes the request
* can receive.
*
* The function sets status truncation errors. Basically what MPI_Status does.
*/
PSMI_ALWAYS_INLINE(
void
mq_status_copy(psm2_mq_req_t req, psm2_mq_status_t *status))
{
status->msg_tag = *((uint64_t *) req->tag.tag);
status->msg_length = req->send_msglen;
status->nbytes = req->recv_msglen;
status->error_code = req->error_code;
status->context = req->context;
}
PSMI_ALWAYS_INLINE(
void
mq_status2_copy(psm2_mq_req_t req, psm2_mq_status2_t *status))
{
status->msg_peer = req->peer;
status->msg_tag = req->tag;
status->msg_length = req->send_msglen;
status->nbytes = req->recv_msglen;
status->error_code = req->error_code;
status->context = req->context;
}
PSMI_ALWAYS_INLINE(
uint32_t
mq_set_msglen(psm2_mq_req_t req, uint32_t recvlen, uint32_t sendlen))
{
req->send_msglen = sendlen;
if (recvlen < sendlen) {
req->recv_msglen = recvlen;
req->error_code = PSM2_MQ_TRUNCATION;
return recvlen;
} else {
req->recv_msglen = sendlen;
req->error_code = PSM2_OK;
return sendlen;
}
}
PSMI_ALWAYS_INLINE(
int
min_timestamp_4(psm2_mq_req_t *match))
{
uint64_t oldest = -1;
int which = -1, i;
for (i = 0; i < 4; i++) {
if (match[i] && (match[i]->timestamp < oldest)) {
oldest = match[i]->timestamp;
which = i;
}
}
return which;
}
#ifndef PSM_DEBUG
/*! Append to Queue */
PSMI_ALWAYS_INLINE(void mq_qq_append(struct mqq *q, psm2_mq_req_t req))
{
req->next[PSM2_ANYTAG_ANYSRC] = NULL;
req->prev[PSM2_ANYTAG_ANYSRC] = q->last;
if (q->last)
q->last->next[PSM2_ANYTAG_ANYSRC] = req;
else
q->first = req;
q->last = req;
req->q[PSM2_ANYTAG_ANYSRC] = q;
}
#else
#define mq_qq_append(qq, req) \
do { \
(req)->next[PSM2_ANYTAG_ANYSRC] = NULL; \
(req)->prev[PSM2_ANYTAG_ANYSRC] = (qq)->last; \
if ((qq)->last) \
(qq)->last->next[PSM2_ANYTAG_ANYSRC] = (req); \
else \
(qq)->first = (req); \
(qq)->last = (req); \
(req)->q[PSM2_ANYTAG_ANYSRC] = (qq); \
if (qq == &(req)->mq->completed_q) \
_HFI_VDBG("Moving (req)=%p to completed queue on %s, %d\n", \
(req), __FILE__, __LINE__); \
} while (0)
#endif
PSMI_ALWAYS_INLINE(
void mq_qq_append_which(struct mqq q[NUM_HASH_CONFIGS][NUM_HASH_BUCKETS],
int table, int bucket, psm2_mq_req_t req))
{
req->next[table] = NULL;
req->prev[table] = q[table][bucket].last;
if (q[table][bucket].last)
q[table][bucket].last->next[table] = req;
else
q[table][bucket].first = req;
q[table][bucket].last = req;
req->q[table] = &q[table][bucket];
}
PSMI_ALWAYS_INLINE(void mq_qq_remove(struct mqq *q, psm2_mq_req_t req))
{
if (req->next[PSM2_ANYTAG_ANYSRC] != NULL)
req->next[PSM2_ANYTAG_ANYSRC]->prev[PSM2_ANYTAG_ANYSRC] =
req->prev[PSM2_ANYTAG_ANYSRC];
else
q->last = req->prev[PSM2_ANYTAG_ANYSRC];
if (req->prev[PSM2_ANYTAG_ANYSRC])
req->prev[PSM2_ANYTAG_ANYSRC]->next[PSM2_ANYTAG_ANYSRC] =
req->next[PSM2_ANYTAG_ANYSRC];
else
q->first = req->next[PSM2_ANYTAG_ANYSRC];
}
PSMI_ALWAYS_INLINE(void mq_qq_remove_which(psm2_mq_req_t req, int table))
{
struct mqq *q = req->q[table];
req->q[table] = NULL;
if (req->next[table] != NULL)
req->next[table]->prev[table] = req->prev[table];
else
q->last = req->prev[table];
if (req->prev[table])
req->prev[table]->next[table] = req->next[table];
else
q->first = req->next[table];
}
psm2_error_t psmi_mq_req_init(psm2_mq_t mq);
psm2_error_t psmi_mq_req_fini(psm2_mq_t mq);
psm2_mq_req_t psmi_mq_req_alloc(psm2_mq_t mq, uint32_t type);
#define psmi_mq_req_free(req) psmi_mpool_put(req)
/*
* Main receive progress engine, for shmops and hfi, in mq.c
*/
psm2_error_t psmi_mq_malloc(psm2_mq_t *mqo);
psm2_error_t psmi_mq_initialize_defaults(psm2_mq_t mq);
psm2_error_t psmi_mq_free(psm2_mq_t mq);
/* Three functions that handle all MQ stuff */
#define MQ_RET_MATCH_OK 0
#define MQ_RET_UNEXP_OK 1
#define MQ_RET_UNEXP_NO_RESOURCES 2
#define MQ_RET_DATA_OK 3
#define MQ_RET_DATA_OUT_OF_ORDER 4
void psmi_mq_handle_rts_complete(psm2_mq_req_t req);
int psmi_mq_handle_data(psm2_mq_t mq, psm2_mq_req_t req,
uint32_t offset, const void *payload, uint32_t paylen);
int psmi_mq_handle_rts(psm2_mq_t mq, psm2_epaddr_t src, psm2_mq_tag_t *tag,
uint32_t msglen, const void *payload, uint32_t paylen,
int msgorder, mq_rts_callback_fn_t cb,
psm2_mq_req_t *req_o);
int psmi_mq_handle_envelope(psm2_mq_t mq, psm2_epaddr_t src, psm2_mq_tag_t *tag,
uint32_t msglen, uint32_t offset,
const void *payload, uint32_t paylen, int msgorder,
uint32_t opcode, psm2_mq_req_t *req_o);
int psmi_mq_handle_outoforder(psm2_mq_t mq, psm2_mq_req_t req);
void psmi_mq_stats_register(psm2_mq_t mq, mpspawn_stats_add_fn add_fn);
void psmi_mq_fastpath_disable(psm2_mq_t mq);
void psmi_mq_fastpath_try_reenable(psm2_mq_t mq);
PSMI_ALWAYS_INLINE(
psm2_mq_req_t
mq_ooo_match(struct mqq *q, void *msgctl, uint16_t msg_seqnum))
{
psm2_mq_req_t *curp;
psm2_mq_req_t cur;
for (curp = &q->first; (cur = *curp) != NULL; curp = &cur->next[PSM2_ANYTAG_ANYSRC]) {
if (cur->ptl_req_ptr == msgctl && cur->msg_seqnum == msg_seqnum) {
/* match! */
mq_qq_remove(q, cur);
return cur;
}
}
return NULL; /* no match */
}
PSMI_ALWAYS_INLINE(
psm2_mq_req_t
mq_eager_match(psm2_mq_t mq, void *peer, uint16_t msg_seqnum))
{
psm2_mq_req_t cur;
cur = STAILQ_FIRST(&mq->eager_q);
while (cur) {
if (cur->ptl_req_ptr == peer && cur->msg_seqnum == msg_seqnum)
return cur;
cur = STAILQ_NEXT(cur, nextq);
}
return NULL; /* no match */
}
#if 0
/* Not exposed in public psm, but may extend parts of PSM 2.1 to support
* this feature before 2.3 */
psm_mq_unexpected_callback_fn_t
psmi_mq_register_unexpected_callback(psm2_mq_t mq,
psm_mq_unexpected_callback_fn_t fn);
#endif
PSMI_ALWAYS_INLINE(void psmi_mq_stats_rts_account(psm2_mq_req_t req))
{
psm2_mq_t mq = req->mq;
if (MQE_TYPE_IS_SEND(req->type)) {
mq->stats.tx_num++;
mq->stats.tx_rndv_num++;
mq->stats.tx_rndv_bytes += req->send_msglen;
} else {
mq->stats.rx_user_num++;
mq->stats.rx_user_bytes += req->recv_msglen;
}
return;
}
#endif