//===-- ARMBuildAttributes.h - ARM Build Attributes -------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file contains enumerations and support routines for ARM build attributes // as defined in ARM ABI addenda document (ABI release 2.08). // // ELF for the ARM Architecture r2.09 - November 30, 2012 // // http://infocenter.arm.com/help/topic/com.arm.doc.ihi0044e/IHI0044E_aaelf.pdf // //===----------------------------------------------------------------------===// #ifndef LLVM_SUPPORT_ARMBUILDATTRIBUTES_H #define LLVM_SUPPORT_ARMBUILDATTRIBUTES_H #include "llvm/Support/ELFAttributes.h" namespace llvm { namespace ARMBuildAttrs { const TagNameMap &getARMAttributeTags(); enum SpecialAttr { … }; enum AttrType : unsigned { … }; // Legal Values for CPU_arch, (=6), uleb128 enum CPUArch { … }; enum CPUArchProfile { … }; // The following have a lot of common use cases enum { … }; } // namespace ARMBuildAttrs } // namespace llvm #endif