Change copyrights from Nokia to Digia
[profile/ivi/qtdeclarative.git] / tests / benchmarks / qml / holistic / data / jsImports / pragmaLib.js
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 // This JavaScript file is a single, large, imported script.
43 // It doesn't import any other scripts.
44 // It is a shared script, with data which should be shared.
45 .pragma library
46
47 var sharedValue = 9;
48
49 function testFunc() {
50     var retn = sharedValue;
51     sharedValue += 1; // increment the shared value
52     return retn;
53 }
54
55 function testFuncBig(seedValue) {
56     var retn = sharedValue;
57     var firstFactor = calculateFirstFactor(seedValue);
58     var secondFactor = calculateSecondFactor(seedValue);
59     var modificationTerm = calculateModificationTerm(seedValue);
60
61     // do some regexp matching
62     var someString = "This is a random string which we'll perform regular expression matching on to reduce considerably.  This is meant to be part of a complex javascript expression whose evaluation takes considerably longer than the creation cost of QScriptValue.";
63     var regexpPattern = new RegExp("is", "i");
64     var regexpOutputLength = 0;
65     var temp = regexpPattern.exec(someString);
66     while (temp == "is") {
67         regexpOutputLength += 4;
68         regexpOutputLength *= 2;
69         temp = regexpPattern.exec(someString);
70         if (regexpOutputLength > (seedValue * 3)) {
71             temp = "break";
72         }
73     }
74
75     // spin in a for loop for a while
76     var i = 0;
77     var j = 0;
78     var cumulativeTotal = 3;
79     for (i = 20; i > 1; i--) {
80         for (j = 31; j > 5; j--) {
81             var branchVariable = i + j;
82             if (branchVariable % 3 == 0) {
83                 cumulativeTotal -= secondFactor;
84             } else {
85                 cumulativeTotal += firstFactor;
86             }
87
88             if (cumulativeTotal > (seedValue * 50)) {
89                 break;
90             }
91         }
92     }
93     retn += (cumulativeTotal * 0.45);
94     retn *= (1 + (3.1415962 / seedValue));
95     retn /= 2.41497;
96     retn -= (seedValue * -1);
97     sharedValue += 1; // increment the shared value
98     return retn;
99 }
100
101 function calculateFirstFactor(seedValue) {
102     var firstFactor = (0.45 * (9.3 / 3.1) - 0.90);
103     firstFactor *= (1 + (0.00001 / seedValue));
104     return firstFactor;
105 }
106
107 function calculateSecondFactor(seedValue) {
108     var secondFactor = 0.78 * (6.3 / 2.1) - (0.39 * 4);
109     secondFactor *= (1 + (0.00001 / seedValue));
110     return secondFactor;
111 }
112
113 function calculateModificationTerm(seedValue) {
114     var modificationTerm = (12 + (9*7) - 54 + 16 - ((calculateFirstFactor(seedValue) * seedValue) / 3) + (4*calculateSecondFactor(seedValue) * seedValue * 1.33)) + (calculateSecondFactor(seedValue) * seedValue);
115     modificationTerm = modificationTerm + (33/2) + 19 - (9*2) - (61*3) + 177;
116     return modificationTerm;
117 }
118
119