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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chrome_gpu_util.h"
#include "base/command_line.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/histogram.h"
#include "base/version.h"
#if defined(OS_WIN)
#include "base/win/windows_version.h"
#endif
#include "chrome/common/chrome_switches.h"
#include "chrome/common/chrome_version_info.h"
#include "content/public/browser/gpu_data_manager.h"
#include "content/public/common/content_constants.h"
#include "content/public/common/content_switches.h"
using content::GpuDataManager;
namespace gpu_util {
bool ShouldRunStage3DFieldTrial() {
#if !defined(OS_WIN)
return false;
#else
if (base::win::GetVersion() >= base::win::VERSION_VISTA)
return false;
return true;
#endif
}
void InitializeStage3DFieldTrial() {
if (!ShouldRunStage3DFieldTrial()) {
base::FieldTrial* trial =
base::FieldTrialList::Find(content::kStage3DFieldTrialName);
if (trial)
trial->Disable();
return;
}
const base::FieldTrial::Probability kDivisor = 1000;
scoped_refptr<base::FieldTrial> trial(
base::FieldTrialList::FactoryGetFieldTrial(
content::kStage3DFieldTrialName, kDivisor,
content::kStage3DFieldTrialEnabledName, 2013, 3, 1, NULL));
// Produce the same result on every run of this client.
trial->UseOneTimeRandomization();
// Kill-switch, so disabled unless we get info from server.
int blacklisted_group = trial->AppendGroup(
content::kStage3DFieldTrialBlacklistedName, kDivisor);
bool enabled = (trial->group() != blacklisted_group);
UMA_HISTOGRAM_BOOLEAN("GPU.Stage3DFieldTrial", enabled);
}
void DisableCompositingFieldTrial() {
base::FieldTrial* trial =
base::FieldTrialList::Find(content::kGpuCompositingFieldTrialName);
if (trial)
trial->Disable();
}
bool ShouldRunCompositingFieldTrial() {
// Enable the field trial only on desktop OS's.
#if !(defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX))
return false;
#endif
#if defined(OS_WIN)
// Don't run the trial on Windows XP.
if (base::win::GetVersion() < base::win::VERSION_VISTA)
return false;
#endif
// The performance of accelerated compositing is too low with software
// rendering.
if (content::GpuDataManager::GetInstance()->ShouldUseSoftwareRendering())
return false;
// Don't activate the field trial if force-compositing-mode has been
// explicitly disabled from the command line.
if (CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableForceCompositingMode))
return false;
return true;
}
// Note: The compositing field trial may be created at startup time via the
// Finch framework. In that case, all the Groups and probability values are
// set before this function is called and any Field Trial setup calls
// made here are simply ignored.
// Early outs from this function intended to bypass activation of the field
// trial must call DisableCompositingFieldTrial() before returning.
void InitializeCompositingFieldTrial() {
// Early out in configurations that should not run the compositing
// field trial.
if (!ShouldRunCompositingFieldTrial()) {
DisableCompositingFieldTrial();
return;
}
const base::FieldTrial::Probability kDivisor = 3;
scoped_refptr<base::FieldTrial> trial(
base::FieldTrialList::FactoryGetFieldTrial(
content::kGpuCompositingFieldTrialName, kDivisor,
"disable", 2012, 12, 31, NULL));
// Produce the same result on every run of this client.
trial->UseOneTimeRandomization();
base::FieldTrial::Probability force_compositing_mode_probability = 0;
base::FieldTrial::Probability threaded_compositing_probability = 0;
chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
if (channel == chrome::VersionInfo::CHANNEL_STABLE ||
channel == chrome::VersionInfo::CHANNEL_BETA) {
// Stable and Beta channels: Non-threaded force-compositing-mode on by
// default (mac and windows only).
#if defined(OS_WIN) || defined(OS_MACOSX)
force_compositing_mode_probability = 3;
#endif
} else if (channel == chrome::VersionInfo::CHANNEL_DEV ||
channel == chrome::VersionInfo::CHANNEL_CANARY) {
// Dev and Canary channels: force-compositing-mode and
// threaded-compositing on with 1/3 probability each.
force_compositing_mode_probability = 1;
#if defined(OS_MACOSX) || defined(OS_LINUX)
// Threaded compositing mode isn't feature complete on mac or linux yet:
// http://crbug.com/133602 for mac
// http://crbug.com/140866 for linux
threaded_compositing_probability = 0;
#else
if (!CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableThreadedCompositing))
threaded_compositing_probability = 1;
#endif
}
int force_compositing_group = trial->AppendGroup(
content::kGpuCompositingFieldTrialForceCompositingEnabledName,
force_compositing_mode_probability);
int thread_group = trial->AppendGroup(
content::kGpuCompositingFieldTrialThreadEnabledName,
threaded_compositing_probability);
bool force_compositing = (trial->group() == force_compositing_group);
bool thread = (trial->group() == thread_group);
UMA_HISTOGRAM_BOOLEAN("GPU.InForceCompositingModeFieldTrial",
force_compositing);
UMA_HISTOGRAM_BOOLEAN("GPU.InCompositorThreadFieldTrial", thread);
}
} // namespace gpu_util;
|