2017-07-20 10:51:08 -07:00
|
|
|
// 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.
|
|
|
|
|
2018-04-12 14:16:10 -07:00
|
|
|
#ifndef CRASHPAD_SNAPSHOT_LINUX_CPU_CONTEXT_LINUX_H_
|
|
|
|
#define CRASHPAD_SNAPSHOT_LINUX_CPU_CONTEXT_LINUX_H_
|
2017-07-20 10:51:08 -07:00
|
|
|
|
|
|
|
#include "build/build_config.h"
|
|
|
|
#include "snapshot/cpu_context.h"
|
2017-08-01 19:05:06 -07:00
|
|
|
#include "snapshot/linux/signal_context.h"
|
2017-07-20 10:51:08 -07:00
|
|
|
#include "util/linux/thread_info.h"
|
|
|
|
|
|
|
|
namespace crashpad {
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
#if defined(ARCH_CPU_X86_FAMILY) || DOXYGEN
|
|
|
|
|
2017-08-01 19:05:06 -07:00
|
|
|
//! \{
|
2017-07-20 10:51:08 -07:00
|
|
|
//! \brief Initializes a CPUContextX86 structure from native context structures
|
|
|
|
//! on Linux.
|
|
|
|
//!
|
|
|
|
//! \param[in] thread_context The native thread context.
|
|
|
|
//! \param[in] float_context The native float context.
|
|
|
|
//! \param[out] context The CPUContextX86 structure to initialize.
|
|
|
|
void InitializeCPUContextX86(const ThreadContext::t32_t& thread_context,
|
|
|
|
const FloatContext::f32_t& float_context,
|
|
|
|
CPUContextX86* context);
|
|
|
|
|
2017-08-01 19:05:06 -07:00
|
|
|
void InitializeCPUContextX86(const SignalThreadContext32& thread_context,
|
|
|
|
const SignalFloatContext32& float_context,
|
|
|
|
CPUContextX86* context);
|
|
|
|
//! \}
|
|
|
|
|
|
|
|
//! \brief Initializes GPR and debug state in a CPUContextX86 from a native
|
|
|
|
//! signal context structure on Linux.
|
|
|
|
//!
|
2018-04-09 11:50:13 -07:00
|
|
|
//! Floating point state and debug registers are initialized to zero.
|
2017-08-01 19:05:06 -07:00
|
|
|
//!
|
|
|
|
//! \param[in] thread_context The native thread context.
|
|
|
|
//! \param[out] context The CPUContextX86 structure to initialize.
|
|
|
|
void InitializeCPUContextX86_NoFloatingPoint(
|
|
|
|
const SignalThreadContext32& thread_context,
|
|
|
|
CPUContextX86* context);
|
|
|
|
|
2017-12-19 12:03:54 -08:00
|
|
|
//! \{
|
2017-07-20 10:51:08 -07:00
|
|
|
//! \brief Initializes a CPUContextX86_64 structure from native context
|
|
|
|
//! structures on Linux.
|
|
|
|
//!
|
|
|
|
//! \param[in] thread_context The native thread context.
|
|
|
|
//! \param[in] float_context The native float context.
|
|
|
|
//! \param[out] context The CPUContextX86_64 structure to initialize.
|
|
|
|
void InitializeCPUContextX86_64(const ThreadContext::t64_t& thread_context,
|
|
|
|
const FloatContext::f64_t& float_context,
|
|
|
|
CPUContextX86_64* context);
|
2017-08-01 19:05:06 -07:00
|
|
|
|
|
|
|
void InitializeCPUContextX86_64(const SignalThreadContext64& thread_context,
|
|
|
|
const SignalFloatContext64& float_context,
|
|
|
|
CPUContextX86_64* context);
|
|
|
|
//! \}
|
2018-01-23 14:14:06 -08:00
|
|
|
|
2018-04-09 11:50:13 -07:00
|
|
|
//! \brief Initializes GPR and debug state in a CPUContextX86_64 from a native
|
|
|
|
//! signal context structure on Linux.
|
|
|
|
//!
|
|
|
|
//! Floating point state and debug registers are initialized to zero.
|
|
|
|
//!
|
|
|
|
//! \param[in] thread_context The native thread context.
|
|
|
|
//! \param[out] context The CPUContextX86_64 structure to initialize.
|
|
|
|
void InitializeCPUContextX86_64_NoFloatingPoint(
|
|
|
|
const SignalThreadContext64& thread_context,
|
|
|
|
CPUContextX86_64* context);
|
|
|
|
|
2017-07-20 10:51:08 -07:00
|
|
|
#endif // ARCH_CPU_X86_FAMILY || DOXYGEN
|
|
|
|
|
2018-01-23 14:14:06 -08:00
|
|
|
#if defined(ARCH_CPU_ARM_FAMILY) || DOXYGEN
|
|
|
|
|
|
|
|
//! \brief Initializes a CPUContextARM structure from native context structures
|
|
|
|
//! on Linux.
|
|
|
|
//!
|
|
|
|
//! \param[in] thread_context The native thread context.
|
|
|
|
//! \param[in] float_context The native float context.
|
|
|
|
//! \param[out] context The CPUContextARM structure to initialize.
|
|
|
|
void InitializeCPUContextARM(const ThreadContext::t32_t& thread_context,
|
|
|
|
const FloatContext::f32_t& float_context,
|
|
|
|
CPUContextARM* context);
|
|
|
|
|
|
|
|
//! \brief Initializes GPR state in a CPUContextARM from a native signal context
|
|
|
|
//! structure on Linux.
|
|
|
|
//!
|
2018-04-09 11:50:13 -07:00
|
|
|
//! Floating point state is initialized to zero.
|
2018-01-23 14:14:06 -08:00
|
|
|
//!
|
|
|
|
//! \param[in] thread_context The native thread context.
|
|
|
|
//! \param[out] context The CPUContextARM structure to initialize.
|
|
|
|
void InitializeCPUContextARM_NoFloatingPoint(
|
|
|
|
const SignalThreadContext32& thread_context,
|
|
|
|
CPUContextARM* context);
|
|
|
|
|
|
|
|
//! \brief Initializes a CPUContextARM64 structure from native context
|
|
|
|
//! structures on Linux.
|
|
|
|
//!
|
|
|
|
//! \param[in] thread_context The native thread context.
|
|
|
|
//! \param[in] float_context The native float context.
|
|
|
|
//! \param[out] context The CPUContextARM64 structure to initialize.
|
|
|
|
void InitializeCPUContextARM64(const ThreadContext::t64_t& thread_context,
|
|
|
|
const FloatContext::f64_t& float_context,
|
|
|
|
CPUContextARM64* context);
|
|
|
|
|
|
|
|
//! \brief Initializes GPR state in a CPUContextARM64 from a native context
|
|
|
|
//! structure on Linux.
|
|
|
|
//!
|
2018-04-09 11:50:13 -07:00
|
|
|
//! Floating point state is initialized to zero.
|
2018-01-23 14:14:06 -08:00
|
|
|
//!
|
|
|
|
//! \param[in] thread_context The native thread context.
|
|
|
|
//! \param[out] context The CPUContextARM64 structure to initialize.
|
|
|
|
void InitializeCPUContextARM64_NoFloatingPoint(
|
|
|
|
const ThreadContext::t64_t& thread_context,
|
|
|
|
CPUContextARM64* context);
|
|
|
|
|
|
|
|
//! \brief Initializes FPSIMD state in a CPUContextARM64 from a native fpsimd
|
|
|
|
//! signal context structure on Linux.
|
|
|
|
//!
|
|
|
|
//! General purpose registers are not initialized.
|
|
|
|
//!
|
2018-01-24 10:12:00 -08:00
|
|
|
//! \param[in] float_context The native fpsimd context.
|
2018-01-23 14:14:06 -08:00
|
|
|
//! \param[out] context The CPUContextARM64 structure to initialize.
|
|
|
|
void InitializeCPUContextARM64_OnlyFPSIMD(
|
|
|
|
const SignalFPSIMDContext& float_context,
|
|
|
|
CPUContextARM64* context);
|
|
|
|
|
|
|
|
#endif // ARCH_CPU_ARM_FAMILY || DOXYGEN
|
|
|
|
|
2017-07-20 10:51:08 -07:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace crashpad
|
|
|
|
|
2018-04-12 14:16:10 -07:00
|
|
|
#endif // CRASHPAD_SNAPSHOT_LINUX_CPU_CONTEXT_LINUX_H_
|