OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 133 matching lines...) Loading... |
144 break; | 144 break; |
145 case VFP3: | 145 case VFP3: |
146 search_string = "vfpv3"; | 146 search_string = "vfpv3"; |
147 break; | 147 break; |
148 case ARMv7: | 148 case ARMv7: |
149 search_string = "ARMv7"; | 149 search_string = "ARMv7"; |
150 break; | 150 break; |
151 case SUDIV: | 151 case SUDIV: |
152 search_string = "idiva"; | 152 search_string = "idiva"; |
153 break; | 153 break; |
| 154 case VFP32DREGS: |
| 155 search_string = "vfpv3"; |
| 156 break; |
154 default: | 157 default: |
155 UNREACHABLE(); | 158 UNREACHABLE(); |
156 } | 159 } |
157 | 160 |
| 161 if (feature == VFP32DREGS) { |
| 162 return CPUInfoContainsString("vfpv3") && !CPUInfoContainsString("d16"); |
| 163 } |
| 164 |
158 if (CPUInfoContainsString(search_string)) { | 165 if (CPUInfoContainsString(search_string)) { |
159 return true; | 166 return true; |
160 } | 167 } |
161 | 168 |
162 if (feature == VFP3) { | 169 if (feature == VFP3) { |
163 // Some old kernels will report vfp not vfpv3. Here we make a last attempt | 170 // Some old kernels will report vfp not vfpv3. Here we make a last attempt |
164 // to detect vfpv3 by checking for vfp *and* neon, since neon is only | 171 // to detect vfpv3 by checking for vfp *and* neon, since neon is only |
165 // available on architectures with vfpv3. | 172 // available on architectures with vfpv3. |
166 // Checking neon on its own is not enough as it is possible to have neon | 173 // Checking neon on its own is not enough as it is possible to have neon |
167 // without vfp. | 174 // without vfp. |
(...skipping 1106 matching lines...) Loading... |
1274 | 1281 |
1275 | 1282 |
1276 void Sampler::Stop() { | 1283 void Sampler::Stop() { |
1277 ASSERT(IsActive()); | 1284 ASSERT(IsActive()); |
1278 SignalSender::RemoveActiveSampler(this); | 1285 SignalSender::RemoveActiveSampler(this); |
1279 SetActive(false); | 1286 SetActive(false); |
1280 } | 1287 } |
1281 | 1288 |
1282 | 1289 |
1283 } } // namespace v8::internal | 1290 } } // namespace v8::internal |
OLD | NEW |