tizen beta release
[framework/web/webkit-efl.git] / Source / JavaScriptCore / runtime / Heuristics.h
1 /*
2  * Copyright (C) 2011 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
24  */
25
26 #ifndef Heuristics_h
27 #define Heuristics_h
28
29 #include <stdint.h>
30
31 namespace JSC { namespace Heuristics {
32
33 extern unsigned maximumOptimizationCandidateInstructionCount;
34
35 extern unsigned maximumFunctionForCallInlineCandidateInstructionCount;
36 extern unsigned maximumFunctionForConstructInlineCandidateInstructionCount;
37
38 extern unsigned maximumInliningDepth; // Depth of inline stack, so 1 = no inlining, 2 = one level, etc.
39
40 extern int32_t executionCounterValueForOptimizeAfterWarmUp;
41 extern int32_t executionCounterValueForOptimizeAfterLongWarmUp;
42 extern int32_t executionCounterValueForDontOptimizeAnytimeSoon;
43 extern int32_t executionCounterValueForOptimizeSoon;
44 extern int32_t executionCounterValueForOptimizeNextInvocation;
45
46 extern int32_t executionCounterIncrementForLoop;
47 extern int32_t executionCounterIncrementForReturn;
48
49 extern unsigned desiredSpeculativeSuccessFailRatio;
50
51 extern unsigned likelyToTakeSlowCaseThreshold;
52 extern unsigned couldTakeSlowCaseThreshold;
53
54 extern unsigned largeFailCountThresholdBase;
55 extern unsigned largeFailCountThresholdBaseForLoop;
56
57 extern unsigned reoptimizationRetryCounterMax;
58 extern unsigned reoptimizationRetryCounterStep;
59
60 extern unsigned minimumOptimizationDelay;
61 extern unsigned maximumOptimizationDelay;
62 extern double desiredProfileLivenessRate;
63 extern double desiredProfileFullnessRate;
64
65 extern unsigned minimumNumberOfScansBetweenRebalance;
66 extern unsigned gcMarkStackSegmentSize;
67 extern unsigned minimumNumberOfCellsToKeep;
68 extern unsigned maximumNumberOfSharedSegments;
69 extern unsigned sharedStackWakeupThreshold;
70 extern unsigned numberOfGCMarkers;
71 extern unsigned opaqueRootMergeThreshold;
72
73 void initializeHeuristics();
74
75 } } // namespace JSC::Heuristics
76
77 #endif // Heuristics_h
78