summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/attn/test/attntest.C
blob: 0572c42f8c413c351da64bc1d6f3690572f47b2b (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/diag/attn/test/attntest.C $                           */
/*                                                                        */
/* IBM CONFIDENTIAL                                                       */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2012,2013              */
/*                                                                        */
/* p1                                                                     */
/*                                                                        */
/* Object Code Only (OCO) source materials                                */
/* Licensed Internal Code Source Materials                                */
/* IBM HostBoot Licensed Internal Code                                    */
/*                                                                        */
/* The source code for this program is not published or otherwise         */
/* divested of its trade secrets, irrespective of what has been           */
/* deposited with the U.S. Copyright Office.                              */
/*                                                                        */
/* Origin: 30                                                             */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
/**
 * @file attntest.C
 *
 * @brief HBATTN test utility function definitions.
 */

#include <arch/ppc.H>
#include <algorithm>
#include "attntest.H"
#include "../attntrace.H"
#include "../attntarget.H"

using namespace std;
using namespace PRDF;
using namespace TARGETING;

namespace ATTN
{

uint64_t randint(uint64_t i_min, uint64_t i_max)
{
    static bool setup = false;
    static uint64_t seed = 0;

    if(!setup)
    {
        uint64_t hapSeed = generate_random();

        if(!hapSeed)
        {
            ATTN_DBG("falling back to timebase seed for PRNG");
        }
        else
        {
            ATTN_DBG("hapseed: %d", hapSeed);
        }

        seed = hapSeed ? hapSeed : getTB() + 1;

        setup = true;
    }

    uint64_t lo, hi;

    seed = seed * seed;
    lo = (seed & 0x0000ffffffff0000ull) >> 16;
    hi = (seed & 0x000000000000ffffull) << 32;
    hi |= (seed & 0xffff000000000000ull);
    seed = (lo | hi) + 2;

    static const uint64_t randMax = 0xfffffffffffffffe;
    uint64_t min = i_min, max = i_max;

    if(i_min > i_max)
    {
        swap(min, max);
    }

    if(max > randMax)
    {
        max = randMax;
    }

    return ((lo | hi) % (max +1 - min)) + min;
}

ATTENTION_VALUE_TYPE getRandomAttentionType()
{
    ATTENTION_VALUE_TYPE a;

    switch (randint(1, 3))
    {
        case 2:
            a = RECOVERABLE;
            break;
        case 3:
        default:
            a = SPECIAL;
            break;
    };

    return a;
}
}
OpenPOWER on IntegriCloud