1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 16:21:07 -08:00

Fixing up mps_rank_* to the new interface as a step towards reviving the old test suite.

Copied from Perforce
 Change: 182174
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2013-05-24 19:21:29 +01:00
parent f4b445d1b5
commit fd8912c287
240 changed files with 760 additions and 760 deletions

View file

@ -27,7 +27,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -23,7 +23,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(NULL, space,
MPS_RANK_AMBIG, 0, a, sizeof a),
mps_rank_ambig(), 0, a, sizeof a),
"root create");
}

View file

@ -23,7 +23,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(UNALIGNED, space,
MPS_RANK_AMBIG, 0, a, sizeof a),
mps_rank_ambig(), 0, a, sizeof a),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, NULL,
MPS_RANK_AMBIG, 0, a, sizeof a),
mps_rank_ambig(), 0, a, sizeof a),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, UNALIGNED,
MPS_RANK_AMBIG, 0, a, sizeof a),
mps_rank_ambig(), 0, a, sizeof a),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, space,
HIGHBIT_INT+MPS_RANK_AMBIG, 0, a, sizeof a),
HIGHBIT_INT+mps_rank_ambig(), 0, a, sizeof a),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, space,
MPS_RANK_AMBIG, MPS_RM_MIN-1, a, sizeof a),
mps_rank_ambig(), MPS_RM_MIN-1, a, sizeof a),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, space,
MPS_RANK_AMBIG, MPS_RM_MAX+1, a, sizeof a),
mps_rank_ambig(), MPS_RM_MAX+1, a, sizeof a),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, space,
MPS_RANK_AMBIG, HIGHBIT_INT, a, sizeof a),
mps_rank_ambig(), HIGHBIT_INT, a, sizeof a),
"root create");
}

View file

@ -27,7 +27,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, space,
MPS_RANK_AMBIG, 0, NULL, sizeof a),
mps_rank_ambig(), 0, NULL, sizeof a),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, space,
MPS_RANK_AMBIG, 0, UNALIGNED, sizeof a),
mps_rank_ambig(), 0, UNALIGNED, sizeof a),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, space,
MPS_RANK_AMBIG, 0, a, (size_t) 0),
mps_rank_ambig(), 0, a, (size_t) 0),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, space,
MPS_RANK_AMBIG, 0, a, (size_t) 31),
mps_rank_ambig(), 0, a, (size_t) 31),
"root create");
}

View file

@ -24,7 +24,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_table(&root, space,
MPS_RANK_AMBIG, 0, a, (size_t) -32),
mps_rank_ambig(), 0, a, (size_t) -32),
"root create");
}

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(NULL, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_fmt(NULL, space, mps_rank_ambig(), 0,
fmtscan, a, &a[32]),
"root create");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(UNALIGNED, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_fmt(UNALIGNED, space, mps_rank_ambig(), 0,
fmtscan, a, &a[32]),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, NULL, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_fmt(&root, NULL, mps_rank_ambig(), 0,
fmtscan, a, &a[32]),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, UNALIGNED, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_fmt(&root, UNALIGNED, mps_rank_ambig(), 0,
fmtscan, a, &a[32]),
"root create");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, space, MPS_RANK_AMBIG+HIGHBIT_INT, 0,
cdie(mps_root_create_fmt(&root, space, mps_rank_ambig()+HIGHBIT_INT, 0,
fmtscan, a, &a[32]),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, space, MPS_RANK_AMBIG, MPS_RM_MIN-1,
cdie(mps_root_create_fmt(&root, space, mps_rank_ambig(), MPS_RM_MIN-1,
fmtscan, a, &a[32]),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, space, MPS_RANK_AMBIG, MPS_RM_MAX+1,
cdie(mps_root_create_fmt(&root, space, mps_rank_ambig(), MPS_RM_MAX+1,
fmtscan, a, &a[32]),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, space, MPS_RANK_AMBIG, HIGHBIT_INT,
cdie(mps_root_create_fmt(&root, space, mps_rank_ambig(), HIGHBIT_INT,
fmtscan, a, &a[32]),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_fmt(&root, space, mps_rank_ambig(), 0,
fmtscan, NULL, &a[32]),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_fmt(&root, space, mps_rank_ambig(), 0,
fmtscan, UNALIGNED, &a[32]),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_fmt(&root, space, mps_rank_ambig(), 0,
fmtscan, a, NULL),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_fmt(&root, space, mps_rank_ambig(), 0,
fmtscan, a, (mps_addr_t)(((char *)(&a[0]))+1)),
"root create");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_fmt(&root, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_fmt(&root, space, mps_rank_ambig(), 0,
fmtscan, &a[10], &a[0]),
"root create");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -21,7 +21,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(NULL, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_reg(NULL, space, mps_rank_ambig(), 0,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -21,7 +21,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(UNALIGNED, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_reg(UNALIGNED, space, mps_rank_ambig(), 0,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, NULL, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_reg(&root, NULL, mps_rank_ambig(), 0,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, UNALIGNED, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_reg(&root, UNALIGNED, mps_rank_ambig(), 0,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG-1, 0,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig()-1, 0,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG+1, 0,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig()+1, 0,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG+HIGHBIT_INT,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig()+HIGHBIT_INT,
0,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig(),
MPS_RM_MIN-1,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig(),
MPS_RM_MAX+1,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig(),
HIGHBIT_INT,
thread, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig(), 0,
NULL, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig(), 0,
UNALIGNED, mps_stack_scan_ambig, stackpointer, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig(), 0,
thread, mps_stack_scan_ambig, NULL, 0),
"root create");

View file

@ -22,7 +22,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create_reg(&root, space, mps_rank_ambig(), 0,
thread, mps_stack_scan_ambig, UNALIGNED, 0),
"root create");

View file

@ -451,7 +451,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -466,7 +466,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
a = allocone(ap, 100);

View file

@ -451,7 +451,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -466,7 +466,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
a = allocone(ap, 100);

View file

@ -451,7 +451,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -466,7 +466,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
a = allocone(ap, 100);

View file

@ -452,7 +452,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -467,7 +467,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
a = allocone(ap, 100);

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -451,7 +451,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -466,7 +466,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
a = allocone(ap, 100);

View file

@ -452,7 +452,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -467,7 +467,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
a = allocone(ap, 100);

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
cdie(

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -26,7 +26,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -43,7 +43,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(NULL, pool, MPS_RANK_EXACT),
mps_ap_create(NULL, pool, mps_rank_exact()),
"create ap");
}

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -43,7 +43,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(UNALIGNED, pool, MPS_RANK_EXACT),
mps_ap_create(UNALIGNED, pool, mps_rank_exact()),
"create ap");
}

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -44,7 +44,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, NULL, MPS_RANK_EXACT),
mps_ap_create(&ap, NULL, mps_rank_exact()),
"create ap");
}

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -44,7 +44,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, UNALIGNED, MPS_RANK_EXACT),
mps_ap_create(&ap, UNALIGNED, mps_rank_exact()),
"create ap");
}

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -26,7 +26,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -44,7 +44,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT+HIGHBIT_INT),
mps_ap_create(&ap, pool, mps_rank_exact()+HIGHBIT_INT),
"create ap");
}

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -44,7 +44,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
mps_ap_destroy(NULL);

View file

@ -29,7 +29,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -44,7 +44,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
mps_ap_destroy(UNALIGNED);

View file

@ -32,7 +32,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -47,7 +47,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
cdie(

View file

@ -32,7 +32,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -47,7 +47,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
cdie(

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
cdie(

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
cdie(

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
cdie(

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
cdie(

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
cdie(

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
do{

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
do{

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
do{

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
do{

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
do{

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
do{

View file

@ -33,7 +33,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");
@ -48,7 +48,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
do{

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -28,7 +28,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(
mps_root_create_reg(&root, space, MPS_RANK_AMBIG, 0, thread,
mps_root_create_reg(&root, space, mps_rank_ambig(), 0, thread,
mps_stack_scan_ambig, stackpointer, 0),
"create root");

View file

@ -26,7 +26,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create(NULL, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create(NULL, space, mps_rank_ambig(), 0,
rootscan, NULL, 0),
"root create");

View file

@ -26,7 +26,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create(UNALIGNED, space, MPS_RANK_AMBIG, 0,
cdie(mps_root_create(UNALIGNED, space, mps_rank_ambig(), 0,
rootscan, NULL, 0),
"root create");

View file

@ -27,7 +27,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create(&root, NULL, MPS_RANK_AMBIG, 0,
cdie(mps_root_create(&root, NULL, mps_rank_ambig(), 0,
rootscan, NULL, 0),
"root create");

View file

@ -27,7 +27,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create(&root, UNALIGNED, MPS_RANK_AMBIG, 0,
cdie(mps_root_create(&root, UNALIGNED, mps_rank_ambig(), 0,
rootscan, NULL, 0),
"root create");

View file

@ -27,7 +27,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create(&root, space, MPS_RANK_AMBIG+HIGHBIT_INT, 0,
cdie(mps_root_create(&root, space, mps_rank_ambig()+HIGHBIT_INT, 0,
rootscan, NULL, 0),
"root create");

View file

@ -27,7 +27,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create(&root, space, MPS_RANK_AMBIG, MPS_RM_MIN-1,
cdie(mps_root_create(&root, space, mps_rank_ambig(), MPS_RM_MIN-1,
rootscan, NULL, 0),
"root create");

View file

@ -27,7 +27,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create(&root, space, MPS_RANK_AMBIG, MPS_RM_MAX+1,
cdie(mps_root_create(&root, space, mps_rank_ambig(), MPS_RM_MAX+1,
rootscan, NULL, 0),
"root create");

View file

@ -27,7 +27,7 @@ static void test(void)
cdie(mps_thread_reg(&thread, space), "register thread");
cdie(mps_root_create(&root, space, MPS_RANK_AMBIG, HIGHBIT_INT,
cdie(mps_root_create(&root, space, mps_rank_ambig(), HIGHBIT_INT,
rootscan, NULL, 0),
"root create");

View file

@ -49,7 +49,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
/*

View file

@ -51,7 +51,7 @@ static void test(void)
*/
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
mps_ap_destroy(ap);

View file

@ -52,7 +52,7 @@ static void test(void)
comment("Destroyed pool.");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
mps_ap_destroy(ap);

View file

@ -50,7 +50,7 @@ static void test(void)
/*
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
*/

View file

@ -49,7 +49,7 @@ static void test(void)
"create pool");
cdie(
mps_ap_create(&ap, pool, MPS_RANK_EXACT),
mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
mps_ap_destroy(ap);

View file

@ -32,7 +32,7 @@ static void test(void)
extendBy, avgSize, maxSize),
"create pool");
cdie(mps_ap_create(&ap, pool, MPS_RANK_EXACT),
cdie(mps_ap_create(&ap, pool, mps_rank_exact()),
"create ap");
mps_pool_destroy(pool);

Some files were not shown because too many files have changed in this diff Show more