crashpad/snapshot/x86/cpuid_reader.h
Mark Mentovai 0bc3826129 mac-arm64: Allow target_cpu = "mac_universal" to create universal builds
When building for macOS and configured with target_cpu =
"mac_universal", bi-architecture x86_64/arm64 output will be produced.

mac_universal is, so far, a “Crashpad special” that will only work with
mini_chromium and the standalone Crashpad build, and not the in-Chromium
build. It exists to support Keystone, which intends to ship as
x86_64/arm64 universal.

Includes:

Update mini_chromium to e0008f2714a76c7f2a3854fa75774427a886d6b9

e0008f2714a7 mac-arm64: Allow target_cpu = "mac_universal" to create
             universal builds

Bug: crashpad:345
Change-Id: I5ff2dce5ffae58186e33757aa94587f8eca20b99
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/2387410
Commit-Queue: Mark Mentovai <mark@chromium.org>
Reviewed-by: Robert Sesek <rsesek@chromium.org>
2020-09-04 04:02:56 +00:00

75 lines
2.0 KiB
C++

// Copyright 2017 The Crashpad Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef CRASHPAD_SNAPSHOT_X86_CPUID_READER_H_
#define CRASHPAD_SNAPSHOT_X86_CPUID_READER_H_
#include <stdint.h>
#include <string>
#include "build/build_config.h"
#if defined(ARCH_CPU_X86_FAMILY)
namespace crashpad {
namespace internal {
//! \brief Reads x86-family CPU information by calling `cpuid`.
class CpuidReader {
public:
CpuidReader();
~CpuidReader();
//! \see SystemSnapshot::CPURevision
uint32_t Revision() const;
//! \see SystemSnapshot::CPUVendor
std::string Vendor() const { return vendor_; }
//! \see SystemSnapshot::CPUX86Signature
uint32_t Signature() const { return signature_; }
//! \see SystemSnapshot::CPUX86Features
uint64_t Features() const { return features_; }
//! \see SystemSnapshot::CPUX86ExtendedFeatures
uint64_t ExtendedFeatures() const { return extended_features_; }
//! \see SystemSnapshot::CPUX86Leaf7Features
uint32_t Leaf7Features() const;
//! \see SystemSnapshot::NXEnabled
bool NXEnabled() const { return (ExtendedFeatures() & (1 << 20)) != 0; }
//! \see SystemSnapshot::CPUX86SupportsDAZ
bool SupportsDAZ() const;
private:
void Cpuid(uint32_t cpuinfo[4], uint32_t leaf) const;
uint64_t features_;
uint64_t extended_features_;
std::string vendor_;
uint32_t max_leaf_;
uint32_t signature_;
};
} // namespace internal
} // namespace crashpad
#endif // ARCH_CPU_X86_FAMILY
#endif // CRASHPAD_SNAPSHOT_X86_CPUID_READER_H_