2 * Copyright 2015, Michael Neuling, IBM Corp.
3 * Licensed under GPLv2.
4 * Original: Michael Neuling 19/7/2013
5 * Edited: Rashmica Gupta 01/12/2015
7 * Do some transactions, see if the tar is corrupted.
8 * If the transaction is aborted, the TAR should be rolled back to the
9 * checkpointed value before the transaction began. The value written to
10 * TAR in suspended mode should only remain in TAR if the transaction
22 int num_loops
= 10000;
30 for (i
= 0; i
< num_loops
; i
++)
35 "mtspr %[tar], 7;" /* tar = 1 */
38 "li 4, 0x7000;" /* Loop lots, to use time */
39 "2:;" /* Start loop */
41 "mtspr %[tar], 7;" /* tar = 2 */
44 "mtspr %[tar], 7;" /* tar = 3 */
51 /* Transaction sucess! TAR should be 3 */
53 "ori %[res], 7, 4;" // res = 3|4 = 7
56 /* Abort handler. TAR should be rolled back to 1 */
59 "ori %[res], 7, 8;" // res = 1|8 = 9
64 : "memory", "r0", "r4", "r7");
66 /* If result is anything else other than 7 or 9, the tar
67 * value must have been corrupted. */
68 if ((result
!= 7) && (result
!= 9))
74 int main(int argc
, char *argv
[])
76 /* A low number of iterations (eg 100) can cause a false pass */
78 if (strcmp(argv
[1], "-h") == 0) {
79 printf("Syntax:\n\t%s [<num loops>]\n",
83 num_loops
= atoi(argv
[1]);
87 printf("Starting, %d loops\n", num_loops
);
89 return test_harness(test_tar
, "tm_tar");