blob: a8086a03ae5c39b9bc15e374a24728ef688db2d8 [file] [log] [blame]
Guillaume Chatelet3cc8f312020-10-12 08:55:20 +00001// Copyright 2017 Google LLC
Guillaume Chatelet439d3712018-02-01 10:03:09 +01002//
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
Guillaume Chatelet22a53622020-09-23 11:52:20 +020015#include "hwcaps_for_testing.h"
16
Rashmica Guptac45e32f2018-05-02 14:30:25 +100017#include <string.h>
18
Rashmica Guptac45e32f2018-05-02 14:30:25 +100019#include "internal/string_view.h"
Guillaume Chatelet439d3712018-02-01 10:03:09 +010020
21namespace cpu_features {
22
23namespace {
24static auto* const g_hardware_capabilities = new HardwareCapabilities();
Rashmica Guptac45e32f2018-05-02 14:30:25 +100025static auto* const g_platform_types = new PlatformType();
Guillaume Chatelet439d3712018-02-01 10:03:09 +010026} // namespace
27
28void SetHardwareCapabilities(uint32_t hwcaps, uint32_t hwcaps2) {
29 g_hardware_capabilities->hwcaps = hwcaps;
30 g_hardware_capabilities->hwcaps2 = hwcaps2;
31}
32
Arvid Gerstmannfd483902018-05-03 17:07:07 +020033HardwareCapabilities CpuFeatures_GetHardwareCapabilities(void) {
Guillaume Chatelet439d3712018-02-01 10:03:09 +010034 return *g_hardware_capabilities;
35}
36
Rashmica Guptac45e32f2018-05-02 14:30:25 +100037void 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
45PlatformType CpuFeatures_GetPlatformType(void) { return *g_platform_types; }
Guillaume Chatelet439d3712018-02-01 10:03:09 +010046} // namespace cpu_features