1 // Copyright 2017 Google LLC
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include "hwcaps_for_testing.h"
16
17 #include <string.h>
18
19 #include "internal/string_view.h"
20
21 namespace cpu_features {
22
23 namespace {
24 static auto* const g_hardware_capabilities = new HardwareCapabilities();
25 static auto* const g_platform_types = new PlatformType();
26 } // namespace
27
SetHardwareCapabilities(uint32_t hwcaps,uint32_t hwcaps2)28 void SetHardwareCapabilities(uint32_t hwcaps, uint32_t hwcaps2) {
29 g_hardware_capabilities->hwcaps = hwcaps;
30 g_hardware_capabilities->hwcaps2 = hwcaps2;
31 }
32
CpuFeatures_GetHardwareCapabilities(void)33 HardwareCapabilities CpuFeatures_GetHardwareCapabilities(void) {
34 return *g_hardware_capabilities;
35 }
36
SetPlatformTypes(const char * platform,const char * base_platform)37 void SetPlatformTypes(const char* platform, const char* base_platform) {
38 CpuFeatures_StringView_CopyString(str(platform), g_platform_types->platform,
39 sizeof(g_platform_types->platform));
40 CpuFeatures_StringView_CopyString(str(base_platform),
41 g_platform_types->base_platform,
42 sizeof(g_platform_types->base_platform));
43 }
44
CpuFeatures_GetPlatformType(void)45 PlatformType CpuFeatures_GetPlatformType(void) { return *g_platform_types; }
46 } // namespace cpu_features
47