Merge branch 'master' into qtquick2
[profile/ivi/qtdeclarative.git] / tests / benchmarks / declarative / holistic / data / jsImports / mlbsi.js
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 // This JavaScript file is a single, small, imported script.
43 // It imports many other (non-nested) single, small, scripts.
44
45 .import "mlbsi1.js" as Mlbsi1
46 .import "mlbsi2.js" as Mlbsi2
47 .import "mlbsi3.js" as Mlbsi3
48 .import "mlbsi4.js" as Mlbsi4
49 .import "mlbsi5.js" as Mlbsi5
50 .import "mlbsi6.js" as Mlbsi6
51 .import "mlbsi7.js" as Mlbsi7
52 .import "mlbsi8.js" as Mlbsi8
53 .import "mlbsi9.js" as Mlbsi9
54 .import "mlbsi10.js" as Mlbsi10
55 .import "mlbsi11.js" as Mlbsi11
56 .import "mlbsi12.js" as Mlbsi12
57 .import "mlbsi13.js" as Mlbsi13
58 .import "mlbsi14.js" as Mlbsi14
59 .import "mlbsi15.js" as Mlbsi15
60
61 function testFunc(seedValue) {
62     var firstFactor = calculateFirstFactor(seedValue);
63     var secondFactor = calculateSecondFactor(seedValue);
64     var modificationTerm = calculateModificationTerm(seedValue);
65
66     // do some regexp matching
67     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.";
68     var regexpPattern = new RegExp("is", "i");
69     var regexpOutputLength = 0;
70     var temp = regexpPattern.exec(someString);
71     while (temp == "is") {
72         regexpOutputLength += 4;
73         regexpOutputLength *= 2;
74         temp = regexpPattern.exec(someString);
75         if (regexpOutputLength > (seedValue * 3)) {
76             temp = "break";
77         }
78     }
79
80     // spin in a for loop for a while
81     var i = 0;
82     var j = 0;
83     var cumulativeTotal = 3;
84     for (i = 20; i > 1; i--) {
85         for (j = 31; j > 5; j--) {
86             var branchVariable = i + j;
87             if (branchVariable % 3 == 0) {
88                 cumulativeTotal -= secondFactor;
89             } else {
90                 cumulativeTotal += firstFactor;
91             }
92
93             if (cumulativeTotal > (seedValue * 50)) {
94                 break;
95             }
96         }
97     }
98     var retn = cumulativeTotal * 0.53;
99     retn += Mlbsi1.testFunc(seedValue);
100     retn += Mlbsi2.testFunc(seedValue);
101     retn += Mlbsi3.testFunc(seedValue);
102     retn += Mlbsi4.testFunc(seedValue);
103     retn += Mlbsi5.testFunc(seedValue);
104     retn += Mlbsi6.testFunc(retn);
105     retn += Mlbsi7.testFunc(seedValue);
106     retn += Mlbsi8.testFunc(seedValue);
107     retn += Mlbsi9.testFunc(retn);
108     retn += Mlbsi10.testFunc(seedValue);
109     retn += Mlbsi11.testFunc(seedValue);
110     retn += Mlbsi12.testFunc(seedValue);
111     retn += Mlbsi13.testFunc(seedValue);
112     retn += Mlbsi14.testFunc(seedValue);
113     retn += Mlbsi15.testFunc(seedValue);
114     return retn;
115 }
116
117 function calculateFirstFactor(seedValue) {
118     var firstFactor = (0.45 * (9.3 / 3.1) - 0.90);
119     firstFactor *= (1 + (0.000017 / seedValue));
120     return firstFactor;
121 }
122
123 function calculateSecondFactor(seedValue) {
124     var secondFactor = 0.78 * (6.3 / 2.1) - (0.39 * 4);
125     secondFactor *= (1 + (0.000017 / seedValue));
126     return secondFactor;
127 }
128
129 function calculateModificationTerm(seedValue) {
130     var modificationTerm = (12 + (9*7) - 54 + 16 - ((calculateFirstFactor(seedValue) * seedValue) / 3) + (4*calculateSecondFactor(seedValue) * seedValue * 1.33)) + (calculateSecondFactor(seedValue) * seedValue);
131     modificationTerm = modificationTerm + (33/2) + 19 - (9*2) - (61*3) + 177;
132     return modificationTerm;
133 }