summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/attn/test/attntest.C
blob: b3ec212c2ca9e716e02833add9cd725590554d74 (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 $                           */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2012,2014              */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* 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